postchain-client 2.1.3 → 2.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/built/cjs/index.js +55 -24
- package/built/cjs/index.js.map +1 -1
- package/built/esm/index.js +55 -24
- package/built/esm/index.js.map +1 -1
- package/built/src/ICCF/IccfProofTxMaterialBuilder.js +4 -0
- package/built/src/ICCF/IccfProofTxMaterialBuilder.js.map +1 -1
- package/built/src/blockchainClient/errors.d.ts +3 -0
- package/built/src/blockchainClient/errors.js +7 -1
- package/built/src/blockchainClient/errors.js.map +1 -1
- package/built/src/blockchainClient/types.d.ts +4 -0
- package/built/src/blockchainClient/utils.d.ts +3 -1
- package/built/src/blockchainClient/utils.js +44 -23
- package/built/src/blockchainClient/utils.js.map +1 -1
- package/built/test/unit/ICCF/iccfProofMaterialBuilder.test.js +19 -0
- package/built/test/unit/ICCF/iccfProofMaterialBuilder.test.js.map +1 -1
- package/built/test/unit/blockchainClient/util.test.js +53 -0
- package/built/test/unit/blockchainClient/util.test.js.map +1 -1
- package/built/umd/index.js +55 -24
- package/built/umd/index.js.map +1 -1
- package/changelog.md +4 -1
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
Version 2.1.
|
|
1
|
+
Version 2.1.4
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
@@ -16,6 +16,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
16
16
|
|
|
17
17
|
### Changed
|
|
18
18
|
|
|
19
|
+
- Added an optional, backward-compatible node URL filtering feature through `blockedNodeUrlSubstrings` and `nodeUrlFilter`. Existing behavior is unchanged unless filters are explicitly configured.
|
|
20
|
+
- Migration note: existing users do nothing. Opt-in users can configure URL filtering to exclude specific node URLs from direct pools, directory pools, and discovered pools.
|
|
21
|
+
|
|
19
22
|
## [2.1.1]
|
|
20
23
|
|
|
21
24
|
### Fixed
|