near-cli-rs 0.4.0 → 0.4.3
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.
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/CHANGELOG.md +22 -0
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/binary.js +5 -5
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/npm-shrinkwrap.json +2 -2
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/package.json +1 -1
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/.gitignore +0 -0
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/LICENSE-APACHE +0 -0
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/LICENSE-MIT +0 -0
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/README.md +0 -0
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/install.js +0 -0
- {near-cli-rs-v0.4.0-npm-package → near-cli-rs-v0.4.3-npm-package}/run.js +0 -0
|
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.4.3](https://github.com/near/near-cli-rs/compare/v0.4.2...v0.4.3) - 2023-06-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
- New command to send a signed transaction [potentially constructed offline] ([#206](https://github.com/near/near-cli-rs/pull/206))
|
|
14
|
+
- Extended access-key deletion with an option to delete multiple keys in a single transaction ([#207](https://github.com/near/near-cli-rs/pull/207))
|
|
15
|
+
|
|
16
|
+
### Other
|
|
17
|
+
- Updated dependencies to the most recent versions
|
|
18
|
+
|
|
19
|
+
## [0.4.2](https://github.com/near/near-cli-rs/compare/v0.4.1...v0.4.2) - 2023-05-26
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
- Added Json type ([#203](https://github.com/near/near-cli-rs/pull/203))
|
|
23
|
+
|
|
24
|
+
## [0.4.1](https://github.com/near/near-cli-rs/compare/v0.4.0...v0.4.1) - 2023-05-22
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
- Added extra space at the beginning of a line in interactive queries (#196)
|
|
28
|
+
|
|
29
|
+
### Other
|
|
30
|
+
- Added a guide on `send-meta-transaction` (#192)
|
|
31
|
+
|
|
10
32
|
## [0.4.0](https://github.com/near/near-cli-rs/compare/v0.3.5...v0.4.0) - 2023-05-02
|
|
11
33
|
|
|
12
34
|
### Added
|
|
@@ -12,27 +12,27 @@ const error = (msg) => {
|
|
|
12
12
|
const { version } = require("./package.json");
|
|
13
13
|
// These are injected by cargo-dist
|
|
14
14
|
const name = "near-cli-rs";
|
|
15
|
-
const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.4.
|
|
15
|
+
const artifact_download_url = "https://github.com/near/near-cli-rs/releases/download/v0.4.3";
|
|
16
16
|
|
|
17
17
|
// These are injected by cargo-dist
|
|
18
18
|
const supportedPlatforms = {
|
|
19
19
|
"aarch64-apple-darwin": {
|
|
20
|
-
"artifact_name": "near-cli-rs-v0.4.
|
|
20
|
+
"artifact_name": "near-cli-rs-v0.4.3-aarch64-apple-darwin.tar.gz",
|
|
21
21
|
"bins": ["near"],
|
|
22
22
|
"zip_ext": ".tar.gz"
|
|
23
23
|
},
|
|
24
24
|
"x86_64-apple-darwin": {
|
|
25
|
-
"artifact_name": "near-cli-rs-v0.4.
|
|
25
|
+
"artifact_name": "near-cli-rs-v0.4.3-x86_64-apple-darwin.tar.gz",
|
|
26
26
|
"bins": ["near"],
|
|
27
27
|
"zip_ext": ".tar.gz"
|
|
28
28
|
},
|
|
29
29
|
"x86_64-pc-windows-msvc": {
|
|
30
|
-
"artifact_name": "near-cli-rs-v0.4.
|
|
30
|
+
"artifact_name": "near-cli-rs-v0.4.3-x86_64-pc-windows-msvc.tar.gz",
|
|
31
31
|
"bins": ["near.exe"],
|
|
32
32
|
"zip_ext": ".tar.gz"
|
|
33
33
|
},
|
|
34
34
|
"x86_64-unknown-linux-gnu": {
|
|
35
|
-
"artifact_name": "near-cli-rs-v0.4.
|
|
35
|
+
"artifact_name": "near-cli-rs-v0.4.3-x86_64-unknown-linux-gnu.tar.gz",
|
|
36
36
|
"bins": ["near"],
|
|
37
37
|
"zip_ext": ".tar.gz"
|
|
38
38
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "near-cli-rs",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "near-cli-rs",
|
|
9
|
-
"version": "0.4.
|
|
9
|
+
"version": "0.4.3",
|
|
10
10
|
"license": "MIT OR Apache-2.0",
|
|
11
11
|
"hasInstallScript": true,
|
|
12
12
|
"dependencies": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "near-cli-rs",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
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",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|