chia-agent 16.1.5 → 16.1.6
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/CHANGELOG.md +15 -0
- package/README.md +3 -3
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [16.1.6]
|
|
4
|
+
### Security
|
|
5
|
+
- Hardened the supply chain against compromised dependency releases
|
|
6
|
+
- All dependencies and devDependencies are now pinned to exact versions
|
|
7
|
+
- Added `minimumReleaseAge: 10080` (7 days) pnpm setting so newly published package versions
|
|
8
|
+
are not installed until they have aged, mitigating hijacked-release attacks
|
|
9
|
+
- GitHub Actions are now pinned to full commit SHAs
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Confirmed compatibility with [`chia-blockchain@2.5.6`](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.6)
|
|
13
|
+
- chia-blockchain 2.5.6 does not introduce any RPC/Websocket API changes.
|
|
14
|
+
The only protocol-level change (`NewSignagePointHarvester2`) is a farmer-harvester internal network message
|
|
15
|
+
which is not part of the API surface covered by chia-agent.
|
|
16
|
+
|
|
3
17
|
## [16.1.5]
|
|
4
18
|
### Fixed
|
|
5
19
|
- Added missing `create_block_generator` to the Full Node RPC API
|
|
@@ -1940,6 +1954,7 @@ daemon.sendMessage(destination, get_block_record_by_height_command, data);
|
|
|
1940
1954
|
Initial release.
|
|
1941
1955
|
|
|
1942
1956
|
<!-- [Unreleased]: https://github.com/Chia-Mine/chia-agent/compare/v0.0.1...v0.0.2 -->
|
|
1957
|
+
[16.1.6]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.5...v16.1.6
|
|
1943
1958
|
[16.1.5]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.4...v16.1.5
|
|
1944
1959
|
[16.1.4]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.3...v16.1.4
|
|
1945
1960
|
[16.1.3]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.2...v16.1.3
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
[](https://badge.fury.io/js/chia-agent) [](https://opensource.org/licenses/MIT)
|
|
3
3
|
|
|
4
4
|
chia rpc/websocket client library for NodeJS.
|
|
5
|
-
Supports all RPC/Websocket API available at `2.5.
|
|
5
|
+
Supports all RPC/Websocket API available at `2.5.6` of [`chia-blockchain`](https://github.com/Chia-Network/chia-blockchain/).
|
|
6
6
|
\(If you need previous version, search for the corresponding release [here](https://github.com/Chia-Mine/chia-agent/releases)\)
|
|
7
7
|
|
|
8
8
|
you can develop your own nodejs script with `chia-agent` to:
|
|
@@ -22,8 +22,8 @@ yarn add chia-agent
|
|
|
22
22
|
|
|
23
23
|
## Compatibility
|
|
24
24
|
This code is compatible with:
|
|
25
|
-
- [`
|
|
26
|
-
- [Diff to the main branch of chia-blockchain](https://github.com/Chia-Network/chia-blockchain/compare/
|
|
25
|
+
- [`f546dfca6d68ec4b5df9b11a1ebcb56b32094e66`](https://github.com/Chia-Network/chia-blockchain/tree/f546dfca6d68ec4b5df9b11a1ebcb56b32094e66) of [chia-blockchain 2.5.6](https://github.com/Chia-Network/chia-blockchain)
|
|
26
|
+
- [Diff to the main branch of chia-blockchain](https://github.com/Chia-Network/chia-blockchain/compare/f546dfca6d68ec4b5df9b11a1ebcb56b32094e66...main)
|
|
27
27
|
- [`061bd6e192ceb90e3bb81ceff1fc69d674626eb7`](https://github.com/Chia-Network/chia_rs/tree/061bd6e192ceb90e3bb81ceff1fc69d674626eb7) of [chia_rs 0.27.0](https://github.com/Chia-Network/chia_rs)
|
|
28
28
|
- [Diff to the main branch of chia_rs](https://github.com/Chia-Network/chia_rs/compare/061bd6e192ceb90e3bb81ceff1fc69d674626eb7...main)
|
|
29
29
|
- [`ef49150171cc243b09c0e5d5cb27f2249ffa3793`](https://github.com/Chia-Network/pool-reference/tree/ef49150171cc243b09c0e5d5cb27f2249ffa3793) of [pool-reference](https://github.com/Chia-Network/pool-reference)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chia-agent",
|
|
3
|
-
"version": "16.1.
|
|
3
|
+
"version": "16.1.6",
|
|
4
4
|
"author": "ChiaMineJP <admin@chiamine.jp>",
|
|
5
5
|
"description": "chia rpc/websocket client library",
|
|
6
6
|
"license": "MIT",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"*": "prettier --check --ignore-path .gitignore --ignore-path .prettierignore ."
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@chiamine/json-bigint": "
|
|
35
|
-
"ws": "
|
|
36
|
-
"yaml": "
|
|
34
|
+
"@chiamine/json-bigint": "1.0.3",
|
|
35
|
+
"ws": "8.18.2",
|
|
36
|
+
"yaml": "2.8.0"
|
|
37
37
|
},
|
|
38
38
|
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c"
|
|
39
39
|
}
|