near-cli-rs 0.20.0 → 0.21.0
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 +26 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.21.0](https://github.com/near/near-cli-rs/compare/v0.20.0...v0.21.0) - 2025-07-08
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Improved support for importing implicit accounts ([#498](https://github.com/near/near-cli-rs/pull/498))
|
|
15
|
+
- Added a command to confirm locally that the deployed contract matches the source code it was built from ([#480](https://github.com/near/near-cli-rs/pull/480))
|
|
16
|
+
- Add support for submitting general DAO proposals ([#492](https://github.com/near/near-cli-rs/pull/492))
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Fixed typos in the default CLI config ([#501](https://github.com/near/near-cli-rs/pull/501))
|
|
21
|
+
- Fixed error RpcError: [missing field disable_9393_fix] ([#502](https://github.com/near/near-cli-rs/pull/502))
|
|
22
|
+
- use re-rexported version of `indicatif` module, needed for `tracing-indicatif` ([#503](https://github.com/near/near-cli-rs/pull/503))
|
|
23
|
+
- `clippy::result_large_err` warning ([#488](https://github.com/near/near-cli-rs/pull/488))
|
|
24
|
+
|
|
25
|
+
### Other
|
|
26
|
+
|
|
27
|
+
- Added `verify_contract`/`inspect_contract` feauture gates ([#504](https://github.com/near/near-cli-rs/pull/504))
|
|
28
|
+
- Pinned binary releases to use ubuntu-22.04 ([#506](https://github.com/near/near-cli-rs/pull/506))
|
|
29
|
+
- Fixed linting errors - non-inlined formatting syntax ([#499](https://github.com/near/near-cli-rs/pull/499))
|
|
30
|
+
- fix some typos ([#494](https://github.com/near/near-cli-rs/pull/494))
|
|
31
|
+
- simplified action struct ([#493](https://github.com/near/near-cli-rs/pull/493))
|
|
32
|
+
- added more RPCs (FAST NEAR and Lava) to the default config generation ([#491](https://github.com/near/near-cli-rs/pull/491))
|
|
33
|
+
- introduced `BoxedJsonRpcResult` type ([#490](https://github.com/near/near-cli-rs/pull/490))
|
|
34
|
+
- fixed shell configuration for command history ([#487](https://github.com/near/near-cli-rs/pull/487))
|
|
35
|
+
|
|
10
36
|
## [0.20.0](https://github.com/near/near-cli-rs/compare/v0.19.0...v0.20.0) - 2025-05-13
|
|
11
37
|
|
|
12
38
|
### Added
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT OR Apache-2.0",
|
|
25
25
|
"name": "near-cli-rs",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.21.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"dependencies": {
|
|
@@ -713,5 +713,5 @@
|
|
|
713
713
|
}
|
|
714
714
|
},
|
|
715
715
|
"requires": true,
|
|
716
|
-
"version": "0.
|
|
716
|
+
"version": "0.21.0"
|
|
717
717
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/near/near-cli-rs/releases/download/v0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/near/near-cli-rs/releases/download/v0.21.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"near": "run-near.js"
|
|
5
5
|
},
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
"zipExt": ".tar.gz"
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
|
-
"version": "0.
|
|
90
|
+
"version": "0.21.0",
|
|
91
91
|
"volta": {
|
|
92
92
|
"node": "18.14.1",
|
|
93
93
|
"npm": "9.5.0"
|