From 5a8126b3bdd288b861c050874c379eb371fcf936 Mon Sep 17 00:00:00 2001 From: shuse2 Date: Wed, 6 Dec 2023 22:10:49 +0100 Subject: [PATCH] :arrow_up: Bump version --- commander/package.json | 22 ++--- .../templates/init/package-template.json | 16 ++-- .../templates/init_plugin/package.json | 2 +- elements/lisk-api-client/package.json | 12 +-- elements/lisk-chain/package.json | 14 ++-- elements/lisk-client/package.json | 18 ++--- elements/lisk-codec/package.json | 8 +- elements/lisk-cryptography/package.json | 4 +- elements/lisk-elements/package.json | 24 +++--- elements/lisk-p2p/package.json | 8 +- elements/lisk-passphrase/package.json | 2 +- elements/lisk-transaction-pool/package.json | 6 +- elements/lisk-transactions/package.json | 8 +- elements/lisk-tree/package.json | 6 +- elements/lisk-validator/package.json | 4 +- .../interop/pos-mainchain-fast/package.json | 16 ++-- .../pos-sidechain-example-one/package.json | 16 ++-- .../pos-sidechain-example-two/package.json | 16 ++-- examples/poa-sidechain/package.json | 16 ++-- examples/pos-mainchain/package.json | 18 ++--- .../package.json | 4 +- .../package.json | 6 +- .../lisk-framework-faucet-plugin/package.json | 18 ++--- .../lisk-framework-forger-plugin/package.json | 6 +- .../package.json | 4 +- .../package.json | 6 +- framework/package.json | 24 +++--- protocol-specs/package.json | 8 +- sdk/package.json | 26 +++--- test/package.json | 2 +- yarn.lock | 80 +++++++++---------- 31 files changed, 207 insertions(+), 213 deletions(-) diff --git a/commander/package.json b/commander/package.json index 2d6f0fafca..d336724c97 100644 --- a/commander/package.json +++ b/commander/package.json @@ -1,6 +1,6 @@ { "name": "lisk-commander", - "version": "6.1.0-rc.0", + "version": "6.1.0", "description": "A command line interface for Lisk", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -101,16 +101,16 @@ "/docs" ], "dependencies": { - "@liskhq/lisk-api-client": "^6.1.0-rc.0", - "@liskhq/lisk-chain": "^0.6.0-rc.0", - "@liskhq/lisk-client": "^6.1.0-rc.0", - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", + "@liskhq/lisk-api-client": "^6.1.0", + "@liskhq/lisk-chain": "^0.6.0", + "@liskhq/lisk-client": "^6.1.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", "@liskhq/lisk-db": "0.3.7", - "@liskhq/lisk-passphrase": "^4.1.0-rc.0", - "@liskhq/lisk-transactions": "^6.1.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", + "@liskhq/lisk-passphrase": "^4.1.0", + "@liskhq/lisk-transactions": "^6.1.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.9.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -121,7 +121,7 @@ "cli-table3": "0.6.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-framework": "^0.12.0-rc.0", + "lisk-framework": "^0.12.0", "listr": "0.14.3", "progress": "2.0.3", "semver": "7.5.2", diff --git a/commander/src/bootstrapping/templates/lisk-template-ts/templates/init/package-template.json b/commander/src/bootstrapping/templates/lisk-template-ts/templates/init/package-template.json index a5c059ee9b..ffc91c319d 100644 --- a/commander/src/bootstrapping/templates/lisk-template-ts/templates/init/package-template.json +++ b/commander/src/bootstrapping/templates/lisk-template-ts/templates/init/package-template.json @@ -85,12 +85,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-dashboard-plugin": "0.4.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "0.4.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "0.5.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "0.5.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "0.5.0-rc.0", - "@liskhq/lisk-framework-chain-connector-plugin": "0.2.0-rc.0", + "@liskhq/lisk-framework-dashboard-plugin": "0.4.0", + "@liskhq/lisk-framework-faucet-plugin": "0.4.0", + "@liskhq/lisk-framework-monitor-plugin": "0.5.0", + "@liskhq/lisk-framework-forger-plugin": "0.5.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "0.5.0", + "@liskhq/lisk-framework-chain-connector-plugin": "0.2.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -98,8 +98,8 @@ "axios": "0.21.2", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "6.1.0-rc.0", - "lisk-sdk": "6.1.0-rc.0", + "lisk-commander": "6.1.0", + "lisk-sdk": "6.1.0", "tar": "6.1.11", "tslib": "2.4.1" }, diff --git a/commander/src/bootstrapping/templates/lisk-template-ts/templates/init_plugin/package.json b/commander/src/bootstrapping/templates/lisk-template-ts/templates/init_plugin/package.json index adbc88b021..b789fe9f40 100644 --- a/commander/src/bootstrapping/templates/lisk-template-ts/templates/init_plugin/package.json +++ b/commander/src/bootstrapping/templates/lisk-template-ts/templates/init_plugin/package.json @@ -28,7 +28,7 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "lisk-sdk": "^6.1.0-rc.0" + "lisk-sdk": "^6.1.0" }, "devDependencies": { "@types/jest": "26.0.21", diff --git a/elements/lisk-api-client/package.json b/elements/lisk-api-client/package.json index 1898cfe07a..1d41cbbd65 100644 --- a/elements/lisk-api-client/package.json +++ b/elements/lisk-api-client/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-api-client", - "version": "6.1.0-rc.0", + "version": "6.1.0", "description": "An API client for the Lisk network", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,16 +35,16 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-transactions": "^6.1.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-transactions": "^6.1.0", + "@liskhq/lisk-validator": "^0.9.0", "isomorphic-ws": "4.0.1", "ws": "8.11.0", "zeromq": "6.0.0-beta.6" }, "devDependencies": { - "@liskhq/lisk-chain": "^0.6.0-rc.0", + "@liskhq/lisk-chain": "^0.6.0", "@types/jest": "29.2.3", "@types/jest-when": "3.5.2", "@types/node": "18.15.3", diff --git a/elements/lisk-chain/package.json b/elements/lisk-chain/package.json index 4202660256..cd3e802020 100644 --- a/elements/lisk-chain/package.json +++ b/elements/lisk-chain/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-chain", - "version": "0.6.0-rc.0", + "version": "0.6.0", "description": "Blocks and state management implementation that are used for block processing according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,16 +35,16 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", "@liskhq/lisk-db": "0.3.7", - "@liskhq/lisk-tree": "^0.5.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", + "@liskhq/lisk-tree": "^0.5.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.9.0", "debug": "4.3.4" }, "devDependencies": { - "@liskhq/lisk-passphrase": "^4.1.0-rc.0", + "@liskhq/lisk-passphrase": "^4.1.0", "@types/debug": "4.1.5", "@types/faker": "4.1.10", "@types/jest": "29.2.3", diff --git a/elements/lisk-client/package.json b/elements/lisk-client/package.json index 550ab2b1a5..a3d763c184 100644 --- a/elements/lisk-client/package.json +++ b/elements/lisk-client/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-client", - "version": "6.1.0-rc.0", + "version": "6.1.0", "description": "A default set of Elements for use by clients of the Lisk network", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -56,14 +56,14 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-api-client": "^6.1.0-rc.0", - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-passphrase": "^4.1.0-rc.0", - "@liskhq/lisk-transactions": "^6.1.0-rc.0", - "@liskhq/lisk-tree": "^0.5.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", + "@liskhq/lisk-api-client": "^6.1.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-passphrase": "^4.1.0", + "@liskhq/lisk-transactions": "^6.1.0", + "@liskhq/lisk-tree": "^0.5.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.9.0", "buffer": "6.0.3" }, "devDependencies": { diff --git a/elements/lisk-codec/package.json b/elements/lisk-codec/package.json index 0a5b2f592e..390c274528 100644 --- a/elements/lisk-codec/package.json +++ b/elements/lisk-codec/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-codec", - "version": "0.5.0-rc.0", + "version": "0.5.0", "description": "Implementation of decoder and encoder using Lisk JSON schema according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,9 +35,9 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0" + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.9.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/elements/lisk-cryptography/package.json b/elements/lisk-cryptography/package.json index 2663010bab..e328263223 100644 --- a/elements/lisk-cryptography/package.json +++ b/elements/lisk-cryptography/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-cryptography", - "version": "4.1.0-rc.0", + "version": "4.1.0", "description": "General cryptographic functions for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,7 +35,7 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-passphrase": "^4.1.0-rc.0", + "@liskhq/lisk-passphrase": "^4.1.0", "buffer-reverse": "1.0.1", "hash-wasm": "4.9.0", "tweetnacl": "1.0.3" diff --git a/elements/lisk-elements/package.json b/elements/lisk-elements/package.json index b56886a3f7..7198ee1d9f 100644 --- a/elements/lisk-elements/package.json +++ b/elements/lisk-elements/package.json @@ -1,6 +1,6 @@ { "name": "lisk-elements", - "version": "6.1.0-rc.0", + "version": "6.1.0", "description": "Elements for building blockchain applications in the Lisk network", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,18 +35,18 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-api-client": "^6.1.0-rc.0", - "@liskhq/lisk-chain": "^0.6.0-rc.0", - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", + "@liskhq/lisk-api-client": "^6.1.0", + "@liskhq/lisk-chain": "^0.6.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", "@liskhq/lisk-db": "0.3.7", - "@liskhq/lisk-p2p": "^0.10.0-rc.0", - "@liskhq/lisk-passphrase": "^4.1.0-rc.0", - "@liskhq/lisk-transaction-pool": "^0.8.0-rc.0", - "@liskhq/lisk-transactions": "^6.1.0-rc.0", - "@liskhq/lisk-tree": "^0.5.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0" + "@liskhq/lisk-p2p": "^0.10.0", + "@liskhq/lisk-passphrase": "^4.1.0", + "@liskhq/lisk-transaction-pool": "^0.8.0", + "@liskhq/lisk-transactions": "^6.1.0", + "@liskhq/lisk-tree": "^0.5.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.9.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/elements/lisk-p2p/package.json b/elements/lisk-p2p/package.json index f04b588973..059815cf13 100644 --- a/elements/lisk-p2p/package.json +++ b/elements/lisk-p2p/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-p2p", - "version": "0.10.0-rc.0", + "version": "0.10.0", "description": "Unstructured P2P library for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -41,9 +41,9 @@ "disableLocalIPs": "./scripts/disableTestLocalIPs.sh 2 19" }, "dependencies": { - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-validator": "^0.9.0", "lodash.shuffle": "4.2.0", "semver": "7.5.2", "socketcluster-client": "14.3.1", diff --git a/elements/lisk-passphrase/package.json b/elements/lisk-passphrase/package.json index 4ad128fad5..c3cbe17b71 100644 --- a/elements/lisk-passphrase/package.json +++ b/elements/lisk-passphrase/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-passphrase", - "version": "4.1.0-rc.0", + "version": "4.1.0", "description": "Mnemonic passphrase helpers for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", diff --git a/elements/lisk-transaction-pool/package.json b/elements/lisk-transaction-pool/package.json index 2b280f1818..374ff27a07 100644 --- a/elements/lisk-transaction-pool/package.json +++ b/elements/lisk-transaction-pool/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-transaction-pool", - "version": "0.8.0-rc.0", + "version": "0.8.0", "description": "Transaction pool library for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,8 +36,8 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-utils": "^0.4.0", "debug": "4.3.4" }, "devDependencies": { diff --git a/elements/lisk-transactions/package.json b/elements/lisk-transactions/package.json index f985035171..1edb517077 100644 --- a/elements/lisk-transactions/package.json +++ b/elements/lisk-transactions/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-transactions", - "version": "6.1.0-rc.0", + "version": "6.1.0", "description": "Utility functions related to transactions according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,9 +35,9 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0" + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-validator": "^0.9.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/elements/lisk-tree/package.json b/elements/lisk-tree/package.json index 5fca3ffbb4..02a60d5000 100644 --- a/elements/lisk-tree/package.json +++ b/elements/lisk-tree/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-tree", - "version": "0.5.0-rc.0", + "version": "0.5.0", "description": "Library containing Merkle tree implementations for use with Lisk-related software", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -35,8 +35,8 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0" + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-utils": "^0.4.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/elements/lisk-validator/package.json b/elements/lisk-validator/package.json index c4d3244484..802212db21 100644 --- a/elements/lisk-validator/package.json +++ b/elements/lisk-validator/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-validator", - "version": "0.9.0-rc.0", + "version": "0.9.0", "description": "Validation library according to the Lisk protocol", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -36,7 +36,7 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", + "@liskhq/lisk-cryptography": "^4.1.0", "ajv": "8.1.0", "ajv-formats": "2.1.1", "debug": "4.3.4", diff --git a/examples/interop/pos-mainchain-fast/package.json b/examples/interop/pos-mainchain-fast/package.json index abb717f6fd..35d1843e18 100644 --- a/examples/interop/pos-mainchain-fast/package.json +++ b/examples/interop/pos-mainchain-fast/package.json @@ -108,12 +108,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0-rc.0", - "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0-rc.0", + "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.4.0", + "@liskhq/lisk-framework-forger-plugin": "^0.5.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.5.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -121,8 +121,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.1.0-rc.0", - "lisk-sdk": "^6.1.0-rc.0", + "lisk-commander": "^6.1.0", + "lisk-sdk": "^6.1.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/examples/interop/pos-sidechain-example-one/package.json b/examples/interop/pos-sidechain-example-one/package.json index 75d48829c0..f4fb2f22b2 100644 --- a/examples/interop/pos-sidechain-example-one/package.json +++ b/examples/interop/pos-sidechain-example-one/package.json @@ -108,12 +108,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0-rc.0", - "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0-rc.0", + "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.4.0", + "@liskhq/lisk-framework-forger-plugin": "^0.5.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.5.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -121,8 +121,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.1.0-rc.0", - "lisk-sdk": "^6.1.0-rc.0", + "lisk-commander": "^6.1.0", + "lisk-sdk": "^6.1.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/examples/interop/pos-sidechain-example-two/package.json b/examples/interop/pos-sidechain-example-two/package.json index fc436548ba..fbf0948dfc 100644 --- a/examples/interop/pos-sidechain-example-two/package.json +++ b/examples/interop/pos-sidechain-example-two/package.json @@ -108,12 +108,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0-rc.0", - "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0-rc.0", + "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.4.0", + "@liskhq/lisk-framework-forger-plugin": "^0.5.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.5.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -121,8 +121,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.1.0-rc.0", - "lisk-sdk": "^6.1.0-rc.0", + "lisk-commander": "^6.1.0", + "lisk-sdk": "^6.1.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/examples/poa-sidechain/package.json b/examples/poa-sidechain/package.json index 3138922a69..a367af6211 100755 --- a/examples/poa-sidechain/package.json +++ b/examples/poa-sidechain/package.json @@ -113,12 +113,12 @@ } }, "dependencies": { - "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0-rc.0", - "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0-rc.0", + "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.4.0", + "@liskhq/lisk-framework-forger-plugin": "^0.5.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.5.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -126,8 +126,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.1.0-rc.0", - "lisk-sdk": "^6.1.0-rc.0", + "lisk-commander": "^6.1.0", + "lisk-sdk": "^6.1.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/examples/pos-mainchain/package.json b/examples/pos-mainchain/package.json index f6d41b26d0..4b03809525 100755 --- a/examples/pos-mainchain/package.json +++ b/examples/pos-mainchain/package.json @@ -114,13 +114,13 @@ } }, "dependencies": { - "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0-rc.0", - "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-faucet-plugin": "^0.4.0-rc.0", - "@liskhq/lisk-framework-forger-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-monitor-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0-rc.0", - "@liskhq/lisk-validator": "^0.8.0-rc.0", + "@liskhq/lisk-framework-chain-connector-plugin": "^0.2.0", + "@liskhq/lisk-framework-dashboard-plugin": "^0.4.0", + "@liskhq/lisk-framework-faucet-plugin": "^0.4.0", + "@liskhq/lisk-framework-forger-plugin": "^0.5.0", + "@liskhq/lisk-framework-monitor-plugin": "^0.5.0", + "@liskhq/lisk-framework-report-misbehavior-plugin": "^0.5.0", + "@liskhq/lisk-validator": "^0.8.0", "@oclif/core": "1.20.4", "@oclif/plugin-autocomplete": "1.3.6", "@oclif/plugin-help": "5.1.19", @@ -128,8 +128,8 @@ "axios": "1.2.0", "fs-extra": "11.1.0", "inquirer": "8.2.5", - "lisk-commander": "^6.1.0-rc.0", - "lisk-sdk": "^6.1.0-rc.0", + "lisk-commander": "^6.1.0", + "lisk-sdk": "^6.1.0", "tar": "6.1.12", "tslib": "2.4.1" }, diff --git a/framework-plugins/lisk-framework-chain-connector-plugin/package.json b/framework-plugins/lisk-framework-chain-connector-plugin/package.json index 44e38d5e9d..828d03e0dd 100644 --- a/framework-plugins/lisk-framework-chain-connector-plugin/package.json +++ b/framework-plugins/lisk-framework-chain-connector-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-chain-connector-plugin", - "version": "0.2.0-rc.0", + "version": "0.2.0", "description": "A plugin used by a relayer node to automatically create and submit Cross Chain Transaction by aggregating off-chain information of a chain", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -34,7 +34,7 @@ "dependencies": { "debug": "4.3.4", "fs-extra": "11.1.0", - "lisk-sdk": "^6.1.0-rc.0" + "lisk-sdk": "^6.1.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/framework-plugins/lisk-framework-dashboard-plugin/package.json b/framework-plugins/lisk-framework-dashboard-plugin/package.json index fa58c3f211..62c9621ee8 100644 --- a/framework-plugins/lisk-framework-dashboard-plugin/package.json +++ b/framework-plugins/lisk-framework-dashboard-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-dashboard-plugin", - "version": "0.4.0-rc.0", + "version": "0.4.0", "description": "A plugin for interacting with a newly developed blockchain application.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -46,10 +46,10 @@ }, "dependencies": { "@csstools/normalize.css": "12.0.0", - "@liskhq/lisk-client": "^6.1.0-rc.0", + "@liskhq/lisk-client": "^6.1.0", "express": "4.18.2", "json-format-highlight": "1.0.4", - "lisk-sdk": "^6.1.0-rc.0", + "lisk-sdk": "^6.1.0", "react": "^17.0.1", "react-dom": "^17.0.1", "react-router-dom": "^5.2.0", diff --git a/framework-plugins/lisk-framework-faucet-plugin/package.json b/framework-plugins/lisk-framework-faucet-plugin/package.json index 671d42c727..1833a542b5 100644 --- a/framework-plugins/lisk-framework-faucet-plugin/package.json +++ b/framework-plugins/lisk-framework-faucet-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-faucet-plugin", - "version": "0.4.0-rc.0", + "version": "0.4.0", "description": "A plugin for distributing testnet tokens from a newly developed blockchain application.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -47,15 +47,15 @@ }, "dependencies": { "@csstools/normalize.css": "12.0.0", - "@liskhq/lisk-api-client": "^6.1.0-rc.0", - "@liskhq/lisk-client": "^6.1.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-transactions": "^6.1.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", - "axios": "1.2.0", + "@liskhq/lisk-api-client": "^6.1.0", + "@liskhq/lisk-client": "^6.1.0", + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-transactions": "^6.1.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.9.0", + "axios": "1.6.0", "express": "4.18.2", - "lisk-sdk": "^6.1.0-rc.0", + "lisk-sdk": "^6.1.0", "react": "^17.0.1", "react-dom": "^17.0.1", "react-router-dom": "^5.2.0" diff --git a/framework-plugins/lisk-framework-forger-plugin/package.json b/framework-plugins/lisk-framework-forger-plugin/package.json index 97ccbea5c6..37863b3dfd 100644 --- a/framework-plugins/lisk-framework-forger-plugin/package.json +++ b/framework-plugins/lisk-framework-forger-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-forger-plugin", - "version": "0.5.0-rc.0", + "version": "0.5.0", "description": "A plugin for lisk-framework that monitors configured validators forging activity and stakers information.", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -40,10 +40,10 @@ "dependencies": { "debug": "4.3.4", "fs-extra": "11.1.0", - "lisk-sdk": "^6.1.0-rc.0" + "lisk-sdk": "^6.1.0" }, "devDependencies": { - "@liskhq/lisk-api-client": "^6.1.0-rc.0", + "@liskhq/lisk-api-client": "^6.1.0", "@types/debug": "4.1.5", "@types/jest": "29.2.3", "@types/jest-when": "3.5.2", diff --git a/framework-plugins/lisk-framework-monitor-plugin/package.json b/framework-plugins/lisk-framework-monitor-plugin/package.json index 37e8b420c2..41a7256f31 100644 --- a/framework-plugins/lisk-framework-monitor-plugin/package.json +++ b/framework-plugins/lisk-framework-monitor-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-monitor-plugin", - "version": "0.5.0-rc.0", + "version": "0.5.0", "description": "A plugin for lisk-framework that provides network statistics of the running node", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -40,7 +40,7 @@ "express": "4.18.2", "express-rate-limit": "6.7.0", "ip": "1.1.5", - "lisk-sdk": "^6.1.0-rc.0" + "lisk-sdk": "^6.1.0" }, "devDependencies": { "@types/cors": "2.8.12", diff --git a/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json b/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json index f6004a01db..049d55f432 100644 --- a/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json +++ b/framework-plugins/lisk-framework-report-misbehavior-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@liskhq/lisk-framework-report-misbehavior-plugin", - "version": "0.5.0-rc.0", + "version": "0.5.0", "description": "A plugin for lisk-framework that provides automatic detection of validator misbehavior and sends a reportValidatorMisbehaviorTransaction to the running node", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -38,9 +38,9 @@ "build:check": "node -e \"require('./dist-node')\"" }, "dependencies": { - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", + "@liskhq/lisk-cryptography": "^4.1.0", "fs-extra": "11.1.0", - "lisk-sdk": "^6.1.0-rc.0" + "lisk-sdk": "^6.1.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/framework/package.json b/framework/package.json index d875120eb5..749bdf5478 100644 --- a/framework/package.json +++ b/framework/package.json @@ -1,6 +1,6 @@ { "name": "lisk-framework", - "version": "0.12.0-rc.0", + "version": "0.12.0", "description": "Lisk blockchain application platform", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -42,17 +42,17 @@ }, "dependencies": { "@chainsafe/blst": "0.2.9", - "@liskhq/lisk-api-client": "^6.1.0-rc.0", - "@liskhq/lisk-chain": "^0.6.0-rc.0", - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", + "@liskhq/lisk-api-client": "^6.1.0", + "@liskhq/lisk-chain": "^0.6.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", "@liskhq/lisk-db": "0.3.7", - "@liskhq/lisk-p2p": "^0.10.0-rc.0", - "@liskhq/lisk-transaction-pool": "^0.8.0-rc.0", - "@liskhq/lisk-transactions": "^6.1.0-rc.0", - "@liskhq/lisk-tree": "^0.5.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", + "@liskhq/lisk-p2p": "^0.10.0", + "@liskhq/lisk-transaction-pool": "^0.8.0", + "@liskhq/lisk-transactions": "^6.1.0", + "@liskhq/lisk-tree": "^0.5.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.9.0", "bunyan": "1.8.15", "debug": "4.3.4", "eventemitter2": "6.4.9", @@ -64,7 +64,7 @@ "zeromq": "6.0.0-beta.6" }, "devDependencies": { - "@liskhq/lisk-passphrase": "^4.1.0-rc.0", + "@liskhq/lisk-passphrase": "^4.1.0", "@types/bunyan": "1.8.6", "@types/jest": "29.2.3", "@types/jest-when": "3.5.2", diff --git a/protocol-specs/package.json b/protocol-specs/package.json index dfe85b3a5e..4897e2d6f1 100644 --- a/protocol-specs/package.json +++ b/protocol-specs/package.json @@ -19,10 +19,10 @@ }, "dependencies": { "@liskhq/bignum": "1.3.1", - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", - "@liskhq/lisk-passphrase": "4.1.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", + "@liskhq/lisk-passphrase": "4.1.0", + "@liskhq/lisk-validator": "^0.9.0", "protobufjs": "7.2.4" }, "devDependencies": { diff --git a/sdk/package.json b/sdk/package.json index b1967a0491..4187182e5a 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "lisk-sdk", - "version": "6.1.0-rc.0", + "version": "6.1.0", "description": "Official SDK for the Lisk blockchain application platform", "author": "Lisk Foundation , lightcurve GmbH ", "license": "Apache-2.0", @@ -29,19 +29,19 @@ "build": "tsc" }, "dependencies": { - "@liskhq/lisk-api-client": "^6.1.0-rc.0", - "@liskhq/lisk-chain": "^0.6.0-rc.0", - "@liskhq/lisk-codec": "^0.5.0-rc.0", - "@liskhq/lisk-cryptography": "^4.1.0-rc.0", + "@liskhq/lisk-api-client": "^6.1.0", + "@liskhq/lisk-chain": "^0.6.0", + "@liskhq/lisk-codec": "^0.5.0", + "@liskhq/lisk-cryptography": "^4.1.0", "@liskhq/lisk-db": "0.3.7", - "@liskhq/lisk-p2p": "^0.10.0-rc.0", - "@liskhq/lisk-passphrase": "^4.1.0-rc.0", - "@liskhq/lisk-transaction-pool": "^0.8.0-rc.0", - "@liskhq/lisk-transactions": "^6.1.0-rc.0", - "@liskhq/lisk-tree": "^0.5.0-rc.0", - "@liskhq/lisk-utils": "^0.4.0-rc.0", - "@liskhq/lisk-validator": "^0.9.0-rc.0", - "lisk-framework": "^0.12.0-rc.0" + "@liskhq/lisk-p2p": "^0.10.0", + "@liskhq/lisk-passphrase": "^4.1.0", + "@liskhq/lisk-transaction-pool": "^0.8.0", + "@liskhq/lisk-transactions": "^6.1.0", + "@liskhq/lisk-tree": "^0.5.0", + "@liskhq/lisk-utils": "^0.4.0", + "@liskhq/lisk-validator": "^0.9.0", + "lisk-framework": "^0.12.0" }, "devDependencies": { "eslint": "8.28.0", diff --git a/test/package.json b/test/package.json index 0e79ca8437..743f19ba41 100644 --- a/test/package.json +++ b/test/package.json @@ -32,7 +32,7 @@ }, "dependencies": { "debug": "4.3.4", - "lisk-sdk": "^6.1.0-rc.0" + "lisk-sdk": "^6.1.0" }, "devDependencies": { "@types/jest": "29.2.3", diff --git a/yarn.lock b/yarn.lock index 6be1f9fee5..191be6f0f0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1855,16 +1855,6 @@ dependencies: "@types/node" "11.11.2" -"@liskhq/lisk-cryptography@^4.0.0-rc.2": - version "4.0.0-rc.2" - resolved "https://registry.yarnpkg.com/@liskhq/lisk-cryptography/-/lisk-cryptography-4.0.0-rc.2.tgz#042191f8c02834388157469015b73318df097964" - integrity sha512-kxHQ1fGiOC5WaqRRKaJJIOI6EqljyYZuDl7zg+Ihwz36ZDTRtGNLpUCA8+1GPYBwRghp2QobRibUBZh649Hh5A== - dependencies: - "@liskhq/lisk-passphrase" "^4.0.0-rc.0" - buffer-reverse "1.0.1" - hash-wasm "4.9.0" - tweetnacl "1.0.3" - "@liskhq/lisk-db@0.3.7": version "0.3.7" resolved "https://registry.yarnpkg.com/@liskhq/lisk-db/-/lisk-db-0.3.7.tgz#9dce3d0c37f248f9221b26f0d57c3306d7d072ef" @@ -1875,19 +1865,12 @@ cargo-cp-artifact "^0.1" shelljs "^0.8.5" -"@liskhq/lisk-passphrase@^4.0.0-rc.0": - version "4.0.0-rc.0" - resolved "https://npm.lisk.com/@liskhq/lisk-passphrase/-/lisk-passphrase-4.0.0-rc.0.tgz#78fe583229c96d76258906375e34ff84a413be05" - integrity sha512-m87nhvUpOlSLr5NRV2M4INtg0IjjFF7Bte96Iq6X1dhzOjlmPg/QUQa7MFUzQu3NEWWHnpwON8QQK1FUE6ixYw== - dependencies: - bip39 "3.0.3" - -"@liskhq/lisk-validator@^0.8.0-rc.0": - version "0.8.0-rc.2" - resolved "https://registry.yarnpkg.com/@liskhq/lisk-validator/-/lisk-validator-0.8.0-rc.2.tgz#4c81e83027c5c832f7a2915ce0bdc79614387707" - integrity sha512-b4V0z2TlOxEosAKpxgR/lgobvpw5Lc2/ZAuBxDuwlvuXh5WSoz+VaPMf2Ry7N9TQwXtvHx3MO8chraJN+F5bEg== +"@liskhq/lisk-validator@^0.8.0": + version "0.8.0" + resolved "https://registry.yarnpkg.com/@liskhq/lisk-validator/-/lisk-validator-0.8.0.tgz#af62c4ef9cc71b2bd696eb70dca89ca7411c96c3" + integrity sha512-aChkjwuwBBzvDIQhyCRozOvQ0fTWjzAOLZJi3i53+1op6J3f6LZYG6ffA6q/x6W1/tQbApSoc2GJWrSCjmFpFw== dependencies: - "@liskhq/lisk-cryptography" "^4.0.0-rc.2" + "@liskhq/lisk-cryptography" "^4.0.0" ajv "8.1.0" ajv-formats "2.1.1" debug "4.3.4" @@ -4561,9 +4544,9 @@ ansi-regex@^2.0.0: integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= ansi-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" - integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + version "3.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" + integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== ansi-regex@^4.0.0: version "4.1.1" @@ -4948,7 +4931,7 @@ axe-core@^4.4.3: resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.5.2.tgz#823fdf491ff717ac3c58a52631d4206930c1d9f7" integrity sha512-u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA== -axios@1.2.0, axios@^1.0.0: +axios@1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/axios/-/axios-1.2.0.tgz#1cb65bd75162c70e9f8d118a905126c4a201d383" integrity sha512-zT7wZyNYu3N5Bu0wuZ6QccIf93Qk1eV8LOewxgjOZFd2DenOs98cJ7+Y6703d0wkaXGY6/nZd4EweJaHz9uzQw== @@ -4957,6 +4940,15 @@ axios@1.2.0, axios@^1.0.0: form-data "^4.0.0" proxy-from-env "^1.1.0" +axios@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.0.tgz#f1e5292f26b2fd5c2e66876adc5b06cdbd7d2102" + integrity sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg== + dependencies: + follow-redirects "^1.15.0" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + axios@^0.19.2: version "0.19.2" resolved "https://registry.yarnpkg.com/axios/-/axios-0.19.2.tgz#3ea36c5d8818d0d5f8a8a97a6d36b86cdc00cb27" @@ -4964,6 +4956,15 @@ axios@^0.19.2: dependencies: follow-redirects "1.5.10" +axios@^1.0.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/axios/-/axios-1.6.2.tgz#de67d42c755b571d3e698df1b6504cde9b0ee9f2" + integrity "sha1-3mfULHVbVx0+aY3xtlBM3psO6fI= sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==" + dependencies: + follow-redirects "^1.15.0" + form-data "^4.0.0" + proxy-from-env "^1.1.0" + axobject-query@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be" @@ -6661,7 +6662,7 @@ debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.9: dependencies: ms "2.0.0" -debug@4, debug@4.3.4, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: +debug@4, debug@4.3.4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== @@ -6689,13 +6690,6 @@ debug@^3.1.0, debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.0.1, debug@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" - integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== - dependencies: - ms "^2.1.1" - debuglog@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/debuglog/-/debuglog-1.0.1.tgz#aa24ffb9ac3df9a2351837cfb2d279360cd78492" @@ -10683,9 +10677,9 @@ json5@^1.0.1: minimist "^1.2.0" json5@^2.1.0, json5@^2.2.0, json5@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c" - integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA== + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== jsonc-parser@3.2.0, jsonc-parser@^3.2.0: version "3.2.0" @@ -14277,9 +14271,9 @@ semver@7.5.2, semver@7.x, semver@^7.0.0, semver@^7.1.1, semver@^7.1.3, semver@^7 lru-cache "^6.0.0" semver@^6.0.0, semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== send@0.18.0: version "0.18.0" @@ -16409,9 +16403,9 @@ yaml@^1.7.2: integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== yaml@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.1.3.tgz#9b3a4c8aff9821b696275c79a8bee8399d945207" - integrity sha512-AacA8nRULjKMX2DvWvOAdBZMOfQlypSFkjcOcu9FalllIDJ1kvlREzcdIZmidQUqqeMv7jorHjq2HlLv/+c2lg== + version "2.3.4" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2" + integrity "sha1-U/wdUUvoCqvzhtxgAespvzt1I7I= sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==" yargs-parser@20.2.4, yargs-parser@^20.2.2: version "20.2.4"