diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 82ed24ca4..665883568 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,5 +1,5 @@ 483 Jaco 2024 (#514) - 13 Tarik Gul Update to `@polkadot/*` api packages 10.13.1 (#529) + 14 Tarik Gul Update polkadot/dev to 0.78.13 (#530) 5 Peter Goodspeed-Niklaus Disable yargs behavior to optimistically parse number-seeming arguments (#108) 3 Alexander Popiak add more spec diffing to the metadata comparison (#284) 3 Bison Brandon Signing-CLI: Add missing special case for immortal transactions (#62) diff --git a/package.json b/package.json index c1d6fb8ed..850728bc9 100644 --- a/package.json +++ b/package.json @@ -14,9 +14,9 @@ }, "sideEffects": false, "type": "module", - "version": "0.56.7-2-x", + "version": "0.56.7-3-x", "versions": { - "git": "0.56.7-2-x", + "git": "0.56.7-3-x", "npm": "0.56.6" }, "workspaces": [ diff --git a/packages/api-cli/package.json b/packages/api-cli/package.json index 644507132..fd828096a 100644 --- a/packages/api-cli/package.json +++ b/packages/api-cli/package.json @@ -15,7 +15,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.56.7-2-x", + "version": "0.56.7-3-x", "main": "index.js", "bin": { "polkadot-js-api": "./runcli.mjs" diff --git a/packages/api-cli/src/detectOther.ts b/packages/api-cli/src/detectOther.ts deleted file mode 100644 index 9470a1629..000000000 --- a/packages/api-cli/src/detectOther.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright 2017-2024 @polkadot/api-cli authors & contributors -// SPDX-License-Identifier: Apache-2.0 - -// Empty template, auto-generated by @polkadot/dev - -export default []; diff --git a/packages/api-cli/src/detectPackage.ts b/packages/api-cli/src/packageDetect.ts similarity index 72% rename from packages/api-cli/src/detectPackage.ts rename to packages/api-cli/src/packageDetect.ts index 7c00ee507..a9d7692e4 100644 --- a/packages/api-cli/src/detectPackage.ts +++ b/packages/api-cli/src/packageDetect.ts @@ -2,10 +2,10 @@ // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev +// (packageInfo imports will be kept as-is, user-editable) import { detectPackage } from '@polkadot/util'; -import others from './detectOther.js'; import { packageInfo } from './packageInfo.js'; -detectPackage(packageInfo, null, others); +detectPackage(packageInfo, null, []); diff --git a/packages/api-cli/src/packageInfo.ts b/packages/api-cli/src/packageInfo.ts index 7101a9f13..a4567c970 100644 --- a/packages/api-cli/src/packageInfo.ts +++ b/packages/api-cli/src/packageInfo.ts @@ -3,4 +3,4 @@ // Do not edit, auto-generated by @polkadot/dev -export const packageInfo = { name: '@polkadot/api-cli', path: 'auto', type: 'auto', version: '0.56.7-2-x' }; +export const packageInfo = { name: '@polkadot/api-cli', path: 'auto', type: 'auto', version: '0.56.7-3-x' }; diff --git a/packages/json-serve/package.json b/packages/json-serve/package.json index 958ab87ce..3af74a743 100644 --- a/packages/json-serve/package.json +++ b/packages/json-serve/package.json @@ -15,7 +15,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.56.7-2-x", + "version": "0.56.7-3-x", "main": "index.js", "bin": { "polkadot-js-json-serve": "./runcli.mjs" diff --git a/packages/json-serve/src/detectOther.ts b/packages/json-serve/src/detectOther.ts deleted file mode 100644 index 7cf4f7648..000000000 --- a/packages/json-serve/src/detectOther.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright 2017-2024 @polkadot/json-serve authors & contributors -// SPDX-License-Identifier: Apache-2.0 - -// Empty template, auto-generated by @polkadot/dev - -export default []; diff --git a/packages/json-serve/src/detectPackage.ts b/packages/json-serve/src/packageDetect.ts similarity index 72% rename from packages/json-serve/src/detectPackage.ts rename to packages/json-serve/src/packageDetect.ts index 855e5aca5..fe43ed378 100644 --- a/packages/json-serve/src/detectPackage.ts +++ b/packages/json-serve/src/packageDetect.ts @@ -2,10 +2,10 @@ // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev +// (packageInfo imports will be kept as-is, user-editable) import { detectPackage } from '@polkadot/util'; -import others from './detectOther.js'; import { packageInfo } from './packageInfo.js'; -detectPackage(packageInfo, null, others); +detectPackage(packageInfo, null, []); diff --git a/packages/json-serve/src/packageInfo.ts b/packages/json-serve/src/packageInfo.ts index 4c04fc8bc..e90bcaa9a 100644 --- a/packages/json-serve/src/packageInfo.ts +++ b/packages/json-serve/src/packageInfo.ts @@ -3,4 +3,4 @@ // Do not edit, auto-generated by @polkadot/dev -export const packageInfo = { name: '@polkadot/json-serve', path: 'auto', type: 'auto', version: '0.56.7-2-x' }; +export const packageInfo = { name: '@polkadot/json-serve', path: 'auto', type: 'auto', version: '0.56.7-3-x' }; diff --git a/packages/metadata-cmp/package.json b/packages/metadata-cmp/package.json index d574d0efa..55c42301e 100644 --- a/packages/metadata-cmp/package.json +++ b/packages/metadata-cmp/package.json @@ -15,7 +15,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.56.7-2-x", + "version": "0.56.7-3-x", "main": "index.js", "bin": { "polkadot-js-metadata-cmp": "./runcli.mjs" diff --git a/packages/metadata-cmp/src/detectOther.ts b/packages/metadata-cmp/src/detectOther.ts deleted file mode 100644 index b6d144fd5..000000000 --- a/packages/metadata-cmp/src/detectOther.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright 2017-2024 @polkadot/metadata-cmp authors & contributors -// SPDX-License-Identifier: Apache-2.0 - -// Empty template, auto-generated by @polkadot/dev - -export default []; diff --git a/packages/metadata-cmp/src/detectPackage.ts b/packages/metadata-cmp/src/packageDetect.ts similarity index 72% rename from packages/metadata-cmp/src/detectPackage.ts rename to packages/metadata-cmp/src/packageDetect.ts index 5a809b166..487934edc 100644 --- a/packages/metadata-cmp/src/detectPackage.ts +++ b/packages/metadata-cmp/src/packageDetect.ts @@ -2,10 +2,10 @@ // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev +// (packageInfo imports will be kept as-is, user-editable) import { detectPackage } from '@polkadot/util'; -import others from './detectOther.js'; import { packageInfo } from './packageInfo.js'; -detectPackage(packageInfo, null, others); +detectPackage(packageInfo, null, []); diff --git a/packages/metadata-cmp/src/packageInfo.ts b/packages/metadata-cmp/src/packageInfo.ts index dbf2dab08..adb405444 100644 --- a/packages/metadata-cmp/src/packageInfo.ts +++ b/packages/metadata-cmp/src/packageInfo.ts @@ -3,4 +3,4 @@ // Do not edit, auto-generated by @polkadot/dev -export const packageInfo = { name: '@polkadot/metadata-cmp', path: 'auto', type: 'auto', version: '0.56.7-2-x' }; +export const packageInfo = { name: '@polkadot/metadata-cmp', path: 'auto', type: 'auto', version: '0.56.7-3-x' }; diff --git a/packages/monitor-rpc/package.json b/packages/monitor-rpc/package.json index 5c6a1bbfd..9ede9c207 100644 --- a/packages/monitor-rpc/package.json +++ b/packages/monitor-rpc/package.json @@ -15,7 +15,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.56.7-2-x", + "version": "0.56.7-3-x", "main": "index.js", "bin": { "polkadot-js-monitor": "./runcli.mjs" diff --git a/packages/monitor-rpc/src/detectOther.ts b/packages/monitor-rpc/src/detectOther.ts deleted file mode 100644 index 0b588472a..000000000 --- a/packages/monitor-rpc/src/detectOther.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright 2017-2024 @polkadot/monitor-rpc authors & contributors -// SPDX-License-Identifier: Apache-2.0 - -// Empty template, auto-generated by @polkadot/dev - -export default []; diff --git a/packages/monitor-rpc/src/detectPackage.ts b/packages/monitor-rpc/src/packageDetect.ts similarity index 72% rename from packages/monitor-rpc/src/detectPackage.ts rename to packages/monitor-rpc/src/packageDetect.ts index 2caf976f7..2d5fe5785 100644 --- a/packages/monitor-rpc/src/detectPackage.ts +++ b/packages/monitor-rpc/src/packageDetect.ts @@ -2,10 +2,10 @@ // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev +// (packageInfo imports will be kept as-is, user-editable) import { detectPackage } from '@polkadot/util'; -import others from './detectOther.js'; import { packageInfo } from './packageInfo.js'; -detectPackage(packageInfo, null, others); +detectPackage(packageInfo, null, []); diff --git a/packages/monitor-rpc/src/packageInfo.ts b/packages/monitor-rpc/src/packageInfo.ts index 4c7548482..79caa6ec2 100644 --- a/packages/monitor-rpc/src/packageInfo.ts +++ b/packages/monitor-rpc/src/packageInfo.ts @@ -3,4 +3,4 @@ // Do not edit, auto-generated by @polkadot/dev -export const packageInfo = { name: '@polkadot/monitor-rpc', path: 'auto', type: 'auto', version: '0.56.7-2-x' }; +export const packageInfo = { name: '@polkadot/monitor-rpc', path: 'auto', type: 'auto', version: '0.56.7-3-x' }; diff --git a/packages/signer-cli/package.json b/packages/signer-cli/package.json index 4946838ce..c702ac01a 100644 --- a/packages/signer-cli/package.json +++ b/packages/signer-cli/package.json @@ -15,14 +15,14 @@ }, "sideEffects": false, "type": "module", - "version": "0.56.7-2-x", + "version": "0.56.7-3-x", "main": "index.js", "bin": { "polkadot-js-signer": "./runcli.mjs" }, "dependencies": { "@polkadot/api": "^10.13.1", - "@polkadot/api-cli": "^0.56.7-2-x", + "@polkadot/api-cli": "^0.56.7-3-x", "@polkadot/keyring": "^12.6.2", "@polkadot/types": "^10.13.1", "@polkadot/util": "^12.6.2", diff --git a/packages/signer-cli/src/detectOther.ts b/packages/signer-cli/src/detectOther.ts deleted file mode 100644 index 215a09b3f..000000000 --- a/packages/signer-cli/src/detectOther.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright 2017-2024 @polkadot/signer-cli authors & contributors -// SPDX-License-Identifier: Apache-2.0 - -// Empty template, auto-generated by @polkadot/dev - -export default []; diff --git a/packages/signer-cli/src/detectPackage.ts b/packages/signer-cli/src/packageDetect.ts similarity index 72% rename from packages/signer-cli/src/detectPackage.ts rename to packages/signer-cli/src/packageDetect.ts index 6b516b399..c3954fee0 100644 --- a/packages/signer-cli/src/detectPackage.ts +++ b/packages/signer-cli/src/packageDetect.ts @@ -2,10 +2,10 @@ // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev +// (packageInfo imports will be kept as-is, user-editable) import { detectPackage } from '@polkadot/util'; -import others from './detectOther.js'; import { packageInfo } from './packageInfo.js'; -detectPackage(packageInfo, null, others); +detectPackage(packageInfo, null, []); diff --git a/packages/signer-cli/src/packageInfo.ts b/packages/signer-cli/src/packageInfo.ts index dc0c4f549..8d7401ec6 100644 --- a/packages/signer-cli/src/packageInfo.ts +++ b/packages/signer-cli/src/packageInfo.ts @@ -3,4 +3,4 @@ // Do not edit, auto-generated by @polkadot/dev -export const packageInfo = { name: '@polkadot/signer-cli', path: 'auto', type: 'auto', version: '0.56.7-2-x' }; +export const packageInfo = { name: '@polkadot/signer-cli', path: 'auto', type: 'auto', version: '0.56.7-3-x' }; diff --git a/packages/vanitygen/package.json b/packages/vanitygen/package.json index 543deb9f8..bf3fd50d3 100644 --- a/packages/vanitygen/package.json +++ b/packages/vanitygen/package.json @@ -15,7 +15,7 @@ }, "sideEffects": false, "type": "module", - "version": "0.56.7-2-x", + "version": "0.56.7-3-x", "main": "index.js", "bin": { "polkadot-js-vanitygen": "./runcli.mjs" diff --git a/packages/vanitygen/src/detectOther.ts b/packages/vanitygen/src/detectOther.ts deleted file mode 100644 index 8a8ee5711..000000000 --- a/packages/vanitygen/src/detectOther.ts +++ /dev/null @@ -1,6 +0,0 @@ -// Copyright 2017-2024 @polkadot/vanitygen authors & contributors -// SPDX-License-Identifier: Apache-2.0 - -// Empty template, auto-generated by @polkadot/dev - -export default []; diff --git a/packages/vanitygen/src/detectPackage.ts b/packages/vanitygen/src/packageDetect.ts similarity index 72% rename from packages/vanitygen/src/detectPackage.ts rename to packages/vanitygen/src/packageDetect.ts index f2bb85978..33dbbf5ed 100644 --- a/packages/vanitygen/src/detectPackage.ts +++ b/packages/vanitygen/src/packageDetect.ts @@ -2,10 +2,10 @@ // SPDX-License-Identifier: Apache-2.0 // Do not edit, auto-generated by @polkadot/dev +// (packageInfo imports will be kept as-is, user-editable) import { detectPackage } from '@polkadot/util'; -import others from './detectOther.js'; import { packageInfo } from './packageInfo.js'; -detectPackage(packageInfo, null, others); +detectPackage(packageInfo, null, []); diff --git a/packages/vanitygen/src/packageInfo.ts b/packages/vanitygen/src/packageInfo.ts index 0eb54a43a..c22edbdab 100644 --- a/packages/vanitygen/src/packageInfo.ts +++ b/packages/vanitygen/src/packageInfo.ts @@ -3,4 +3,4 @@ // Do not edit, auto-generated by @polkadot/dev -export const packageInfo = { name: '@polkadot/vanitygen', path: 'auto', type: 'auto', version: '0.56.7-2-x' }; +export const packageInfo = { name: '@polkadot/vanitygen', path: 'auto', type: 'auto', version: '0.56.7-3-x' }; diff --git a/yarn.lock b/yarn.lock index d7a118ccf..4b9e24de2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -472,7 +472,7 @@ __metadata: languageName: node linkType: hard -"@polkadot/api-cli@npm:^0.56.7-2-x, @polkadot/api-cli@workspace:packages/api-cli": +"@polkadot/api-cli@npm:^0.56.7-3-x, @polkadot/api-cli@workspace:packages/api-cli": version: 0.0.0-use.local resolution: "@polkadot/api-cli@workspace:packages/api-cli" dependencies: @@ -770,7 +770,7 @@ __metadata: resolution: "@polkadot/signer-cli@workspace:packages/signer-cli" dependencies: "@polkadot/api": "npm:^10.13.1" - "@polkadot/api-cli": "npm:^0.56.7-2-x" + "@polkadot/api-cli": "npm:^0.56.7-3-x" "@polkadot/keyring": "npm:^12.6.2" "@polkadot/types": "npm:^10.13.1" "@polkadot/util": "npm:^12.6.2"