diff --git a/.changes/pre.json b/.changes/pre.json index f1e8bb66b7..dfad94ea10 100644 --- a/.changes/pre.json +++ b/.changes/pre.json @@ -33,6 +33,7 @@ ".changes/clearlistener-move.md", ".changes/computeAlias-NftId.md", ".changes/computeFoundryId.md", + ".changes/consolidation-params.md", ".changes/deadlock.md", ".changes/dont-filter-custom-mandatory-inputs.md", ".changes/downgrade-rocksb.md", @@ -122,6 +123,7 @@ ".changes/signatureUnlock.md", ".changes/stop-background-sync.md", ".changes/stop-background-syncing.md", + ".changes/stronghold-2.0.md", ".changes/switch-to-napi-6.md", ".changes/sync-deadlock.md", ".changes/sync.md", diff --git a/bindings/nodejs-old/CHANGELOG.md b/bindings/nodejs-old/CHANGELOG.md index b84e0047b0..67c9b0f1f1 100644 --- a/bindings/nodejs-old/CHANGELOG.md +++ b/bindings/nodejs-old/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## \[2.0.3-rc.42] + +- [`5972a23df`](https://github.com/iotaledger/iota-sdk/commit/5972a23dffcde0d10278006af9625914a907419b)([#845](https://github.com/iotaledger/iota-sdk/pull/845)) Add `ConsolidationParams`. + `Account::consolidateOutputs` take `ConsolidationParams`. +- [`9b5adfb23`](https://github.com/iotaledger/iota-sdk/commit/9b5adfb236ec74192f99f4a1e3c9c7398b83153a)([#957](https://github.com/iotaledger/iota-sdk/pull/957)) Bump stronghold to 2.0. + ## \[2.0.3-rc.41] - [`feef5577`](https://github.com/iotaledger/iota-sdk/commit/feef557757f4b6ad6d4e4a9a57b1b692387eb7ea)([#816](https://github.com/iotaledger/iota-sdk/pull/816)) Add `TransactionProgressWalletEvent::getProgress` method. diff --git a/bindings/nodejs-old/package.json b/bindings/nodejs-old/package.json index 1847c15f5a..fdced89e5f 100644 --- a/bindings/nodejs-old/package.json +++ b/bindings/nodejs-old/package.json @@ -1,67 +1,67 @@ { - "name": "@iota/wallet", - "version": "2.0.3-rc.41", - "description": "Node.js binding to the wallet library", - "main": "out/lib/index.js", - "types": "out/lib/index.d.ts", - "scripts": { - "lint": "eslint --ignore-path .eslintignore --ext .js,.ts .", - "format": "prettier --ignore-path .eslintignore -w \"{,*/**/}*.{ts,js,json}\"", - "format-check": "prettier --ignore-path .eslintignore -c \"{,*/**/}*.{ts,js,json}\"", - "build": "node scripts/neon-build && tsc", - "build:neon": "cargo-cp-artifact -ac iota-wallet-nodejs ./index.node -- cargo build --profile=production --message-format=json-render-diagnostics", - "docs-wiki-build": "typedoc --githubPages false --disableSources --excludePrivate --excludeInternal --excludeNotDocumented --plugin typedoc-plugin-markdown --theme markdown --hideBreadcrumbs --entryDocument api_ref.md --readme none --hideGenerator --sort source-order --exclude ./**/src/index.ts --out ../../documentation/docs/references/nodejs ./lib/index.ts ", - "prebuild-x64": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip --arch x64", - "prebuild-arm64": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip --arch arm64", - "rebuild": "node scripts/neon-build && tsc && node scripts/strip.js", - "install": "prebuild-install --runtime napi --tag-prefix='wallet-nodejs-binding-v' && tsc || npm run rebuild", - "test": "jest --forceExit" - }, - "author": "IOTA Foundation ", - "license": "Apache-2.0", - "dependencies": { - "@iota/types": "^1.0.0-beta.15", - "cargo-cp-artifact": "^0.1.6", - "prebuild-install": "^7.1.1", - "typescript": "^4.9.4" - }, - "devDependencies": { - "@types/jest": "^29.4.0", - "@typescript-eslint/eslint-plugin": "^5.30.7", - "@typescript-eslint/parser": "^5.30.7", - "electron-build-env": "^0.2.0", - "eslint": "^8.20.0", - "eslint-config-prettier": "^8.5.0", - "jest": "^29.4.2", - "prebuild": "^11.0.4", - "prettier": "^2.8.3", - "ts-jest": "^29.0.5", - "typedoc": "^0.23.24", - "typedoc-plugin-markdown": "^3.14.0" - }, - "overrides": { - "tar@<=4.4.17": "^4.4.19", - "tar@2.0.0": "^4.4.19", - "simple-get@1.4.2": "^2.8.2" - }, - "resolutions": { - "tar": "^4.4.19", - "simple-get": "^2.8.2", - "tough-cookie": "^4.1.3", - "semver": "^7.5.2", - "word-wrap": "^1.2.4" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/iotaledger/iota-sdk.git" - }, - "binary": { - "napi_versions": [ - 6 - ] - }, - "bugs": { - "url": "https://github.com/iotaledger/iota-sdk/issues" - }, - "homepage": "https://github.com/iotaledger/iota-sdk#readme" + "name": "@iota/wallet", + "version": "2.0.3-rc.42", + "description": "Node.js binding to the wallet library", + "main": "out/lib/index.js", + "types": "out/lib/index.d.ts", + "scripts": { + "lint": "eslint --ignore-path .eslintignore --ext .js,.ts .", + "format": "prettier --ignore-path .eslintignore -w \"{,*/**/}*.{ts,js,json}\"", + "format-check": "prettier --ignore-path .eslintignore -c \"{,*/**/}*.{ts,js,json}\"", + "build": "node scripts/neon-build && tsc", + "build:neon": "cargo-cp-artifact -ac iota-wallet-nodejs ./index.node -- cargo build --profile=production --message-format=json-render-diagnostics", + "docs-wiki-build": "typedoc --githubPages false --disableSources --excludePrivate --excludeInternal --excludeNotDocumented --plugin typedoc-plugin-markdown --theme markdown --hideBreadcrumbs --entryDocument api_ref.md --readme none --hideGenerator --sort source-order --exclude ./**/src/index.ts --out ../../documentation/docs/references/nodejs ./lib/index.ts ", + "prebuild-x64": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip --arch x64", + "prebuild-arm64": "prebuild --runtime napi --target 6 --prepack scripts/neon-build.js --strip --arch arm64", + "rebuild": "node scripts/neon-build && tsc && node scripts/strip.js", + "install": "prebuild-install --runtime napi --tag-prefix='wallet-nodejs-binding-v' && tsc || npm run rebuild", + "test": "jest --forceExit" + }, + "author": "IOTA Foundation ", + "license": "Apache-2.0", + "dependencies": { + "@iota/types": "^1.0.0-beta.15", + "cargo-cp-artifact": "^0.1.6", + "prebuild-install": "^7.1.1", + "typescript": "^4.9.4" + }, + "devDependencies": { + "@types/jest": "^29.4.0", + "@typescript-eslint/eslint-plugin": "^5.30.7", + "@typescript-eslint/parser": "^5.30.7", + "electron-build-env": "^0.2.0", + "eslint": "^8.20.0", + "eslint-config-prettier": "^8.5.0", + "jest": "^29.4.2", + "prebuild": "^11.0.4", + "prettier": "^2.8.3", + "ts-jest": "^29.0.5", + "typedoc": "^0.23.24", + "typedoc-plugin-markdown": "^3.14.0" + }, + "overrides": { + "tar@<=4.4.17": "^4.4.19", + "tar@2.0.0": "^4.4.19", + "simple-get@1.4.2": "^2.8.2" + }, + "resolutions": { + "tar": "^4.4.19", + "simple-get": "^2.8.2", + "tough-cookie": "^4.1.3", + "semver": "^7.5.2", + "word-wrap": "^1.2.4" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/iotaledger/iota-sdk.git" + }, + "binary": { + "napi_versions": [ + 6 + ] + }, + "bugs": { + "url": "https://github.com/iotaledger/iota-sdk/issues" + }, + "homepage": "https://github.com/iotaledger/iota-sdk#readme" }