Skip to content

Commit 7e9e6ce

Browse files
Merge pull request #139 from DIG-Network/release/v0.0.1-alpha.154
Release/v0.0.1 alpha.154
2 parents 617131d + e93ff31 commit 7e9e6ce

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [0.0.1-alpha.154](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.153...v0.0.1-alpha.154) (2024-10-06)
6+
7+
8+
### Features
9+
10+
* support hostnames in publicip env ([2db0ae5](https://github.com/DIG-Network/dig-chia-sdk/commit/2db0ae5b5f36a8a1bad4e805cc0753d71b915508))
11+
512
### [0.0.1-alpha.153](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.152...v0.0.1-alpha.153) (2024-10-06)
613

714

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dignetwork/dig-sdk",
3-
"version": "0.0.1-alpha.153",
3+
"version": "0.0.1-alpha.154",
44
"description": "",
55
"type": "commonjs",
66
"main": "./dist/index.js",

src/utils/Environment.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class Environment {
6565
// Static getter for PUBLIC_IP (valid IP)
6666
static get PUBLIC_IP(): string | undefined {
6767
const value = process.env["PUBLIC_IP"];
68-
return value && this.isValidHostnameOrIp(value) ? value : undefined;
68+
return value;
6969
}
7070

7171
// Static getter for DISK_SPACE_LIMIT_BYTES (number, optional)

0 commit comments

Comments
 (0)