chia-agent 16.1.5-beta.0 → 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 CHANGED
@@ -1,10 +1,22 @@
1
1
  # Changelog
2
2
 
3
- ## [16.1.5-beta.0]
4
- ### Added
5
- - Added `create_block_generator` to the Full Node RPC API
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.
6
16
 
17
+ ## [16.1.5]
7
18
  ### Fixed
19
+ - Added missing `create_block_generator` to the Full Node RPC API
8
20
  - Fixed CHIP-0029 response typing by discriminating `TXEndpointRequest` variants
9
21
 
10
22
  ## [16.1.4]
@@ -1942,6 +1954,11 @@ daemon.sendMessage(destination, get_block_record_by_height_command, data);
1942
1954
  Initial release.
1943
1955
 
1944
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
1958
+ [16.1.5]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.4...v16.1.5
1959
+ [16.1.4]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.3...v16.1.4
1960
+ [16.1.3]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.2...v16.1.3
1961
+ [16.1.2]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.1...v16.1.2
1945
1962
  [16.1.1]: https://github.com/Chia-Mine/chia-agent/compare/v16.1.0...v16.1.1
1946
1963
  [16.1.0]: https://github.com/Chia-Mine/chia-agent/compare/v16.0.2...v16.1.0
1947
1964
  [16.0.2]: https://github.com/Chia-Mine/chia-agent/compare/v16.0.1...v16.0.2
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
  [![npm version](https://badge.fury.io/js/chia-agent.svg)](https://badge.fury.io/js/chia-agent) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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` of [`chia-blockchain`](https://github.com/Chia-Network/chia-blockchain/).
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
- - [`c7aafcfb46ef1413b05cdd6486308e99ee4767df`](https://github.com/Chia-Network/chia-blockchain/tree/c7aafcfb46ef1413b05cdd6486308e99ee4767df) of [chia-blockchain 2.5.5](https://github.com/Chia-Network/chia-blockchain)
26
- - [Diff to the main branch of chia-blockchain](https://github.com/Chia-Network/chia-blockchain/compare/c7aafcfb46ef1413b05cdd6486308e99ee4767df...main)
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.5-beta.0",
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": "^1.0.3",
35
- "ws": "^8.18.2",
36
- "yaml": "^2.8.0"
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
  }