Skip to content

Commit

Permalink
Merge branch 'polkadot-js:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
lrazovic authored Oct 23, 2024
2 parents fd2d1dc + 58f12c4 commit 5d224fb
Show file tree
Hide file tree
Showing 36 changed files with 689 additions and 662 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pr-any.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ jobs:
node-version: 'lts/*'
- uses: denoland/setup-deno@v1
with:
deno-version: vx.x.x
# Deno v2 throws errors with specific types therefore we set it to the last version before v2
deno-version: v1.42.x
- name: ${{ matrix.step }}
if: always()
run: |
Expand Down
725 changes: 367 additions & 358 deletions .yarn/releases/yarn-4.4.1.cjs → .yarn/releases/yarn-4.5.1.cjs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ logFilters:

nodeLinker: node-modules

yarnPath: .yarn/releases/yarn-4.4.1.cjs
yarnPath: .yarn/releases/yarn-4.5.1.cjs
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# CHANGELOG

## 13.2.1 Oct 21, 2024

Contributed:

- Add bittensor to genericLedgerApps (Thanks to https://github.com/camfairchild) ([#1941](https://github.com/polkadot-js/common/pull/1941))

Changes:

- Fix Deno CI Build ([#1947](https://github.com/polkadot-js/common/pull/1947))
- Bump yarn to 4.5.0 ([#1946](https://github.com/polkadot-js/common/pull/1946))
- Update Ledger Deps ([#1948](https://github.com/polkadot-js/common/pull/1948))
- Update WS and deps ([#1949](https://github.com/polkadot-js/common/pull/1949))
- Bump polkadot/wasm to 7.4.1 ([#1950](https://github.com/polkadot-js/common/pull/1950))
- Bump dev to 0.81.2 ([#1951](https://github.com/polkadot-js/common/pull/1951))
- Allows for CJS target in build


## 13.1.1 Sep 16, 2024

Contributed:
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1674 Jaco Bump deps (#1912)
20 Tarik Gul 13.1.1 (#1943)
28 Tarik Gul Bump yarn to 4.5.1 (#1953)
13 Carlo Sala feat(networks): add zeitgeist Ledger support (#1840)
9 Antoine Estienne Add eth uri keyring test (#1291)
6 Amaury Martiny Add tests from Rust (#283)
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@
},
"homepage": "https://github.com/polkadot-js/common#readme",
"license": "Apache-2.0",
"packageManager": "yarn@4.4.1",
"packageManager": "yarn@4.5.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/polkadot-js/common.git"
},
"sideEffects": false,
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"versions": {
"git": "13.1.2-0-x",
"npm": "13.1.1"
"git": "13.2.2-0-x",
"npm": "13.2.1"
},
"workspaces": [
"packages/*"
Expand All @@ -37,8 +37,8 @@
"test:one": "polkadot-dev-run-test --env browser"
},
"devDependencies": {
"@polkadot/dev": "^0.80.1",
"@types/node": "^20.14.15"
"@polkadot/dev": "^0.81.2",
"@types/node": "^22.7.5"
},
"resolutions": {
"typescript": "^5.5.4"
Expand Down
14 changes: 7 additions & 7 deletions packages/hw-ledger-transports/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,18 @@
},
"sideEffects": false,
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"browser": "browser.js",
"main": "node.js",
"react-native": "react-native.js",
"dependencies": {
"@ledgerhq/hw-transport": "^6.31.2",
"@ledgerhq/hw-transport-webhid": "^6.29.2",
"@ledgerhq/hw-transport-webusb": "^6.29.2",
"@polkadot/util": "13.1.2-0-x",
"tslib": "^2.7.0"
"@ledgerhq/hw-transport": "^6.31.4",
"@ledgerhq/hw-transport-webhid": "^6.29.4",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@polkadot/util": "13.2.2-0-x",
"tslib": "^2.8.0"
},
"optionalDependencies": {
"@ledgerhq/hw-transport-node-hid-singleton": "^6.31.3"
"@ledgerhq/hw-transport-node-hid-singleton": "^6.31.5"
}
}
2 changes: 1 addition & 1 deletion packages/hw-ledger-transports/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/hw-ledger-transports', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/hw-ledger-transports', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
10 changes: 5 additions & 5 deletions packages/hw-ledger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"main": "index.js",
"dependencies": {
"@polkadot/hw-ledger-transports": "13.1.2-0-x",
"@polkadot/util": "13.1.2-0-x",
"@zondax/ledger-substrate": "0.44.7",
"tslib": "^2.7.0"
"@polkadot/hw-ledger-transports": "13.2.2-0-x",
"@polkadot/util": "13.2.2-0-x",
"@zondax/ledger-substrate": "1.0.0",
"tslib": "^2.8.0"
}
}
2 changes: 1 addition & 1 deletion packages/hw-ledger/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/hw-ledger', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/hw-ledger', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
12 changes: 6 additions & 6 deletions packages/keyring/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"main": "index.js",
"dependencies": {
"@polkadot/util": "13.1.2-0-x",
"@polkadot/util-crypto": "13.1.2-0-x",
"tslib": "^2.7.0"
"@polkadot/util": "13.2.2-0-x",
"@polkadot/util-crypto": "13.2.2-0-x",
"tslib": "^2.8.0"
},
"peerDependencies": {
"@polkadot/util": "13.1.2-0-x",
"@polkadot/util-crypto": "13.1.2-0-x"
"@polkadot/util": "13.2.2-0-x",
"@polkadot/util-crypto": "13.2.2-0-x"
}
}
2 changes: 1 addition & 1 deletion packages/keyring/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/keyring', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/keyring', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
10 changes: 5 additions & 5 deletions packages/networks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
},
"sideEffects": false,
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"main": "index.js",
"dependencies": {
"@polkadot/util": "13.1.2-0-x",
"@substrate/ss58-registry": "^1.50.0",
"tslib": "^2.7.0"
"@polkadot/util": "13.2.2-0-x",
"@substrate/ss58-registry": "^1.51.0",
"tslib": "^2.8.0"
},
"devDependencies": {
"@polkadot/hw-ledger": "13.1.2-0-x"
"@polkadot/hw-ledger": "13.2.2-0-x"
}
}
2 changes: 1 addition & 1 deletion packages/networks/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/networks', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/networks', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
8 changes: 4 additions & 4 deletions packages/networks/test/ss58registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -1588,16 +1588,16 @@
},
{
"prefix": 6094,
"network": "subspace",
"displayName": "Subspace",
"network": "autonomys",
"displayName": "Autonomys",
"symbols": [
"SSC"
"AI3"
],
"decimals": [
18
],
"standardAccount": "*25519",
"website": "https://subspace.network"
"website": "https://autonomys.xyz"
},
{
"prefix": 7007,
Expand Down
18 changes: 9 additions & 9 deletions packages/util-crypto/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"browser": {
"crypto": false,
"stream": false
Expand All @@ -29,16 +29,16 @@
"dependencies": {
"@noble/curves": "^1.3.0",
"@noble/hashes": "^1.3.3",
"@polkadot/networks": "13.1.2-0-x",
"@polkadot/util": "13.1.2-0-x",
"@polkadot/wasm-crypto": "^7.3.2",
"@polkadot/wasm-util": "^7.3.2",
"@polkadot/x-bigint": "13.1.2-0-x",
"@polkadot/x-randomvalues": "13.1.2-0-x",
"@polkadot/networks": "13.2.2-0-x",
"@polkadot/util": "13.2.2-0-x",
"@polkadot/wasm-crypto": "^7.4.1",
"@polkadot/wasm-util": "^7.4.1",
"@polkadot/x-bigint": "13.2.2-0-x",
"@polkadot/x-randomvalues": "13.2.2-0-x",
"@scure/base": "^1.1.7",
"tslib": "^2.7.0"
"tslib": "^2.8.0"
},
"peerDependencies": {
"@polkadot/util": "13.1.2-0-x"
"@polkadot/util": "13.2.2-0-x"
}
}
2 changes: 1 addition & 1 deletion packages/util-crypto/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/util-crypto', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/util-crypto', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
16 changes: 8 additions & 8 deletions packages/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"./packageDetect.cjs"
],
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"main": "index.js",
"exports": {
"./hex/toU8a": {
Expand All @@ -35,15 +35,15 @@
}
},
"dependencies": {
"@polkadot/x-bigint": "13.1.2-0-x",
"@polkadot/x-global": "13.1.2-0-x",
"@polkadot/x-textdecoder": "13.1.2-0-x",
"@polkadot/x-textencoder": "13.1.2-0-x",
"@types/bn.js": "^5.1.5",
"@polkadot/x-bigint": "13.2.2-0-x",
"@polkadot/x-global": "13.2.2-0-x",
"@polkadot/x-textdecoder": "13.2.2-0-x",
"@polkadot/x-textencoder": "13.2.2-0-x",
"@types/bn.js": "^5.1.6",
"bn.js": "^5.2.1",
"tslib": "^2.7.0"
"tslib": "^2.8.0"
},
"devDependencies": {
"@polkadot/x-randomvalues": "13.1.2-0-x"
"@polkadot/x-randomvalues": "13.2.2-0-x"
}
}
2 changes: 1 addition & 1 deletion packages/util/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/util', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/util', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
6 changes: 3 additions & 3 deletions packages/x-bigint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"./shim.cjs"
],
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"dependencies": {
"@polkadot/x-global": "13.1.2-0-x",
"tslib": "^2.7.0"
"@polkadot/x-global": "13.2.2-0-x",
"tslib": "^2.8.0"
}
}
2 changes: 1 addition & 1 deletion packages/x-bigint/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/x-bigint', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/x-bigint', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
6 changes: 3 additions & 3 deletions packages/x-bundle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
},
"sideEffects": false,
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"main": "index.js",
"dependencies": {
"@polkadot/util": "13.1.2-0-x",
"@polkadot/util": "13.2.2-0-x",
"buffer-es6": "^4.9.3",
"tslib": "^2.7.0"
"tslib": "^2.8.0"
}
}
2 changes: 1 addition & 1 deletion packages/x-bundle/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/x-bundle', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/x-bundle', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
6 changes: 3 additions & 3 deletions packages/x-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
},
"sideEffects": false,
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"browser": "browser.js",
"main": "node.js",
"react-native": "react-native.js",
"dependencies": {
"@polkadot/x-global": "13.1.2-0-x",
"@polkadot/x-global": "13.2.2-0-x",
"node-fetch": "^3.3.2",
"tslib": "^2.7.0"
"tslib": "^2.8.0"
}
}
2 changes: 1 addition & 1 deletion packages/x-fetch/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/x-fetch', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/x-fetch', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
4 changes: 2 additions & 2 deletions packages/x-global/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
},
"sideEffects": false,
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"main": "index.js",
"dependencies": {
"tslib": "^2.7.0"
"tslib": "^2.8.0"
}
}
2 changes: 1 addition & 1 deletion packages/x-global/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Do not edit, auto-generated by @polkadot/dev

export const packageInfo = { name: '@polkadot/x-global', path: 'auto', type: 'auto', version: '13.1.2-0-x' };
export const packageInfo = { name: '@polkadot/x-global', path: 'auto', type: 'auto', version: '13.2.2-0-x' };
12 changes: 6 additions & 6 deletions packages/x-randomvalues/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@
},
"sideEffects": false,
"type": "module",
"version": "13.1.2-0-x",
"version": "13.2.2-0-x",
"browser": "browser.js",
"main": "node.js",
"react-native": "react-native.js",
"dependencies": {
"@polkadot/x-global": "13.1.2-0-x",
"tslib": "^2.7.0"
"@polkadot/x-global": "13.2.2-0-x",
"tslib": "^2.8.0"
},
"devDependencies": {
"@polkadot/util": "13.1.2-0-x",
"@polkadot/wasm-util": "^7.3.2",
"@polkadot/util": "13.2.2-0-x",
"@polkadot/wasm-util": "^7.4.1",
"@types/react-native": "^0.73.0"
},
"peerDependencies": {
"@polkadot/util": "13.1.2-0-x",
"@polkadot/util": "13.2.2-0-x",
"@polkadot/wasm-util": "*"
}
}
Loading

0 comments on commit 5d224fb

Please sign in to comment.