near-cli-rs 0.17.0 → 0.19.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 +35 -1
- package/LICENSE-APACHE +1 -1
- package/LICENSE-MIT +1 -1
- package/README.md +2 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,40 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.19.0](https://github.com/near/near-cli-rs/compare/v0.18.0...v0.19.0) - 2025-03-12
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Improved usability of NEAR CLI in scripts ([#445](https://github.com/near/near-cli-rs/pull/445))
|
|
15
|
+
- Added "send all" option to fungible tokens ([#440](https://github.com/near/near-cli-rs/pull/440))
|
|
16
|
+
- let users specify a memo when sending ft
|
|
17
|
+
- A new `--quiet` flag to suppress noisy output in scripting scenarios ([#441](https://github.com/near/near-cli-rs/pull/441))
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- Fixed information about successful transfer of "send all" ft tokens ([#447](https://github.com/near/near-cli-rs/pull/447))
|
|
22
|
+
- Fixed cli command for memo parameter ([#446](https://github.com/near/near-cli-rs/pull/446))
|
|
23
|
+
- Use legacy keychain as a fallback storage when system keychain is not supported (e.g. WSL, Codespaces, Docker containers, CI) ([#439](https://github.com/near/near-cli-rs/pull/439))
|
|
24
|
+
|
|
25
|
+
### Other
|
|
26
|
+
|
|
27
|
+
- [**breaking**] updates near-* dependencies to 0.29 release ([#455](https://github.com/near/near-cli-rs/pull/455))
|
|
28
|
+
- Typos fix ([#451](https://github.com/near/near-cli-rs/pull/451))
|
|
29
|
+
- Added the ability to add an account ID to the account list without using the legacy keychain ([#449](https://github.com/near/near-cli-rs/pull/449))
|
|
30
|
+
- Updated the copyright year to 2025 ([#448](https://github.com/near/near-cli-rs/pull/448))
|
|
31
|
+
|
|
32
|
+
## [0.18.0](https://github.com/near/near-cli-rs/compare/v0.17.0...v0.18.0) - 2025-01-20
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
|
|
36
|
+
- Added the ability to get a public key for an account (#436)
|
|
37
|
+
|
|
38
|
+
### Other
|
|
39
|
+
|
|
40
|
+
- fixed migration. Added migration saving to be more clear (#434)
|
|
41
|
+
- handle new rate-limits for querying pools (#433)
|
|
42
|
+
- Extended the documentation for building NEAR CLI from the source code (#430)
|
|
43
|
+
|
|
10
44
|
## [0.17.0](https://github.com/near/near-cli-rs/compare/v0.16.1...v0.17.0) - 2024-12-16
|
|
11
45
|
|
|
12
46
|
### Added
|
|
@@ -277,7 +311,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
277
311
|
- Provide a relevant faucet error message when helper API server returns an error ([#243](https://github.com/near/near-cli-rs/pull/243))
|
|
278
312
|
|
|
279
313
|
### Other
|
|
280
|
-
- Exposed sponsor_by_faucet_service module to
|
|
314
|
+
- Exposed sponsor_by_faucet_service module to reuse in "cargo-near" ([#246](https://github.com/near/near-cli-rs/pull/246))
|
|
281
315
|
|
|
282
316
|
## [0.6.0](https://github.com/near/near-cli-rs/compare/v0.5.2...v0.6.0) - 2023-09-28
|
|
283
317
|
|
package/LICENSE-APACHE
CHANGED
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright 2020-
|
|
189
|
+
Copyright 2020-2025 Near Inc
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
package/LICENSE-MIT
CHANGED
package/README.md
CHANGED
|
@@ -68,6 +68,8 @@ https://github.com/user-attachments/assets/4a7e4633-1957-4dc2-a032-827fa9c06c29
|
|
|
68
68
|
|
|
69
69
|
Install it with `cargo`, just make sure you have [Rust](https://rustup.rs) installed on your computer.
|
|
70
70
|
|
|
71
|
+
> NOTE: On Linux, near-cli-rs is built with Ledger devices support by default, and that requires `libudev-dev` package. On Debian/Ubuntu, install it with `apt install libudev-dev`.
|
|
72
|
+
|
|
71
73
|
```bash
|
|
72
74
|
cargo install near-cli-rs
|
|
73
75
|
```
|
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.19.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/cliui": {
|
|
29
29
|
"dependencies": {
|
|
@@ -711,5 +711,5 @@
|
|
|
711
711
|
}
|
|
712
712
|
},
|
|
713
713
|
"requires": true,
|
|
714
|
-
"version": "0.
|
|
714
|
+
"version": "0.19.0"
|
|
715
715
|
}
|
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.19.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.19.0",
|
|
91
91
|
"volta": {
|
|
92
92
|
"node": "18.14.1",
|
|
93
93
|
"npm": "9.5.0"
|