near-cli-rs 0.13.0 → 0.14.1
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 +19 -0
- package/README.md +25 -6
- package/binary.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.14.1](https://github.com/near/near-cli-rs/compare/v0.14.0...v0.14.1) - 2024-08-15
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Fixed native operating system keychain support that got broken with 0.14.0 release ([#392](https://github.com/near/near-cli-rs/pull/392))
|
|
14
|
+
|
|
15
|
+
## [0.14.0](https://github.com/near/near-cli-rs/compare/v0.13.0...v0.14.0) - 2024-08-13
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Require at least one access key to be selected in interactive mode when deleting a key ([#385](https://github.com/near/near-cli-rs/pull/385))
|
|
19
|
+
- Handle delegated stake errors gracefully and display a warning message instead of failing the view-account-summary command completely ([#382](https://github.com/near/near-cli-rs/pull/382))
|
|
20
|
+
- Entering the name of the function in interactive mode ([#379](https://github.com/near/near-cli-rs/pull/379))
|
|
21
|
+
- Fixed a typo in `inspect` output about missing ABI support ([#374](https://github.com/near/near-cli-rs/pull/374))
|
|
22
|
+
|
|
23
|
+
### Other
|
|
24
|
+
- removed media from the package ([#388](https://github.com/near/near-cli-rs/pull/388))
|
|
25
|
+
- updated near-* to 0.24.0, bumped up rust version ([#381](https://github.com/near/near-cli-rs/pull/381))
|
|
26
|
+
- Added videos to the README for installation process on Windows ([#378](https://github.com/near/near-cli-rs/pull/378))
|
|
27
|
+
- Cleaned up error message reporting by disabling env section of color_eyre report ([#380](https://github.com/near/near-cli-rs/pull/380))
|
|
28
|
+
|
|
10
29
|
## [0.13.0](https://github.com/near/near-cli-rs/compare/v0.12.0...v0.13.0) - 2024-07-30
|
|
11
30
|
|
|
12
31
|
### Added
|
package/README.md
CHANGED
|
@@ -13,15 +13,26 @@ Just run `near` and let it guide you through!
|
|
|
13
13
|
Visit [Releases page](https://github.com/near/near-cli-rs/releases/) to see the latest updates.
|
|
14
14
|
|
|
15
15
|
<details>
|
|
16
|
-
<summary>Install
|
|
16
|
+
<summary>Install via Windows Installer (Windows)</summary>
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
https://github.com/user-attachments/assets/607f797b-0412-4741-984b-6b6032d05262
|
|
20
|
+
|
|
21
|
+
</details>
|
|
22
|
+
|
|
23
|
+
<details>
|
|
24
|
+
<summary>Install via powershell script (Windows)</summary>
|
|
17
25
|
|
|
18
26
|
```sh
|
|
19
|
-
|
|
27
|
+
irm https://github.com/near/near-cli-rs/releases/latest/download/near-cli-rs-installer.ps1 | iex
|
|
20
28
|
```
|
|
29
|
+
|
|
30
|
+
https://github.com/user-attachments/assets/7d5d090e-4885-4c27-9d0f-045905952071
|
|
31
|
+
|
|
21
32
|
</details>
|
|
22
33
|
|
|
23
34
|
<details>
|
|
24
|
-
<summary>Install
|
|
35
|
+
<summary>Install via shell script (macOS, Linux, Windows/WSL)</summary>
|
|
25
36
|
|
|
26
37
|
```sh
|
|
27
38
|
irm https://github.com/near/near-cli-rs/releases/latest/download/near-cli-rs-installer.ps1 | iex
|
|
@@ -29,7 +40,7 @@ irm https://github.com/near/near-cli-rs/releases/latest/download/near-cli-rs-ins
|
|
|
29
40
|
</details>
|
|
30
41
|
|
|
31
42
|
<details>
|
|
32
|
-
<summary>Run
|
|
43
|
+
<summary>Run via npx (Node.js on Windows, Linux, macOS)</summary>
|
|
33
44
|
|
|
34
45
|
```sh
|
|
35
46
|
npx near-cli-rs
|
|
@@ -37,7 +48,7 @@ npx near-cli-rs
|
|
|
37
48
|
</details>
|
|
38
49
|
|
|
39
50
|
<details>
|
|
40
|
-
<summary>
|
|
51
|
+
<summary>Use in package.json scripts (Node.js on Windows, Linux, macOS)</summary>
|
|
41
52
|
|
|
42
53
|
```sh
|
|
43
54
|
npm install near-cli-rs
|
|
@@ -45,7 +56,15 @@ npm install near-cli-rs
|
|
|
45
56
|
</details>
|
|
46
57
|
|
|
47
58
|
<details>
|
|
48
|
-
<summary>
|
|
59
|
+
<summary>Get a portable version (Windows, Linux, macOS)</summary>
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
https://github.com/user-attachments/assets/4a7e4633-1957-4dc2-a032-827fa9c06c29
|
|
63
|
+
|
|
64
|
+
</details>
|
|
65
|
+
|
|
66
|
+
<details>
|
|
67
|
+
<summary>Compile and install from the source code (Cargo on Windows, Linux, macOS)</summary>
|
|
49
68
|
|
|
50
69
|
Install it with `cargo`, just make sure you have [Rust](https://rustup.rs) installed on your computer.
|
|
51
70
|
|
package/binary.js
CHANGED
|
@@ -11,7 +11,7 @@ const error = (msg) => {
|
|
|
11
11
|
|
|
12
12
|
const { version } = require("./package.json");
|
|
13
13
|
const name = "near-cli-rs";
|
|
14
|
-
const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.
|
|
14
|
+
const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.14.1";
|
|
15
15
|
|
|
16
16
|
const builder_glibc_major_version = 2;
|
|
17
17
|
const builder_glibc_minor_version = 31;
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "near-cli-rs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "near-cli-rs",
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.14.1",
|
|
10
10
|
"license": "MIT OR Apache-2.0",
|
|
11
11
|
"hasInstallScript": true,
|
|
12
12
|
"dependencies": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "near-cli-rs",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"description": "human-friendly console utility that helps to interact with NEAR Protocol from command line.",
|
|
5
5
|
"repository": "https://github.com/near/near-cli-rs",
|
|
6
6
|
"homepage": "https://near.cli.rs",
|