Skip to content

Commit

Permalink
Bump common/api (polkadot-js#675)
Browse files Browse the repository at this point in the history
* 0.37.3

* Path-only
  • Loading branch information
jacogr authored Mar 8, 2021
1 parent 4402362 commit 2d61a21
Show file tree
Hide file tree
Showing 15 changed files with 330 additions and 317 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# CHANGELOG

## 0.37.3-x

**Important** In the 6.0 version the default package type has been changed to ESM modules by default.
**Important** Not published to the stored, just made available to ensure users can have access to a version that uses the latest `@polkadot/{api, util}`

Contributed:

- Support IPFS/IPNS uls (thanks to https://github.com/carumusan)

Changes:

- Bump `@polkadot/api` & `@polkadot/util` to latest released versions


## 0.37.2 Feb 28, 2021

**Important** Not published to the stored, just made available to ensure users can have access to a version that uses the latest `@polkadot/{api, util}`
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
"repository": "https://github.com/polkadot-js/extension",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
"version": "0.37.3-3",
"version": "0.37.3-4",
"private": true,
"workspaces": [
"packages/*"
],
"resolutions": {
"@polkadot/api": "^4.0.1-4",
"@polkadot/keyring": "^6.0.1-5",
"@polkadot/networks": "^6.0.1-5",
"@polkadot/types": "^4.0.1-4",
"@polkadot/util": "^6.0.1-5",
"@polkadot/util-crypto": "^6.0.1-5",
"@polkadot/x-fetch": "^6.0.1-5",
"@polkadot/api": "^4.0.2",
"@polkadot/keyring": "^6.0.5",
"@polkadot/networks": "^6.0.5",
"@polkadot/types": "^4.0.2",
"@polkadot/util": "^6.0.5",
"@polkadot/util-crypto": "^6.0.5",
"@polkadot/x-fetch": "^6.0.5",
"babel-core": "^7.0.0-bridge.0",
"safe-buffer": "^5.2.1",
"typescript": "^4.2.2"
"typescript": "^4.2.3"
},
"scripts": {
"build": "polkadot-dev-build-ts && yarn build:zip",
Expand All @@ -42,8 +42,8 @@
"@types/jest": "^26.0.20",
"i18next-scanner": "^3.0.0",
"sinon-chrome": "^3.0.1",
"stylelint": "^13.11.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint": "^13.12.0",
"stylelint-config-recommended": "^4.0.0",
"stylelint-config-styled-components": "^0.1.1"
}
}
12 changes: 6 additions & 6 deletions packages/extension-base/package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "@polkadot/extension-base",
"description": "Functions, classes and other utilities used in @polkadot/extension",
"version": "0.37.3-3",
"version": "0.37.3-4",
"type": "module",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
"main": "index.js",
"sideEffects": false,
"dependencies": {
"@babel/runtime": "^7.13.9",
"@polkadot/api": "^4.0.1-4",
"@polkadot/extension-inject": "^0.37.3-3",
"@polkadot/keyring": "^6.0.1-5",
"@polkadot/phishing": "^0.6.2",
"@polkadot/ui-keyring": "^0.70.2-2"
"@polkadot/api": "^4.0.2",
"@polkadot/extension-inject": "^0.37.3-4",
"@polkadot/keyring": "^6.0.5",
"@polkadot/phishing": "^0.6.17",
"@polkadot/ui-keyring": "^0.71.3"
}
}
2 changes: 1 addition & 1 deletion packages/extension-base/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Auto-generated by @polkadot/dev, do not edit

export const packageInfo = { name: '@polkadot/extension-base', version: '0.37.3-3' };
export const packageInfo = { name: '@polkadot/extension-base', version: '0.37.3-4' };
4 changes: 2 additions & 2 deletions packages/extension-chains/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@polkadot/extension-chains",
"description": "Definitions for all known chains as exposed by the extension.",
"version": "0.37.3-3",
"version": "0.37.3-4",
"type": "module",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
"main": "index.js",
"sideEffects": false,
"dependencies": {
"@babel/runtime": "^7.13.9",
"@polkadot/networks": "^6.0.1-5"
"@polkadot/networks": "^6.0.5"
},
"peerDependencies": {
"@polkadot/api": "*"
Expand Down
2 changes: 1 addition & 1 deletion packages/extension-chains/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Auto-generated by @polkadot/dev, do not edit

export const packageInfo = { name: '@polkadot/extension-chains', version: '0.37.3-3' };
export const packageInfo = { name: '@polkadot/extension-chains', version: '0.37.3-4' };
8 changes: 4 additions & 4 deletions packages/extension-dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@polkadot/extension-dapp",
"description": "Provides an interfaces around the injected globals for ease of access by dapp developers.",
"version": "0.37.3-3",
"version": "0.37.3-4",
"type": "module",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
"main": "index.js",
"sideEffects": false,
"dependencies": {
"@babel/runtime": "^7.13.9",
"@polkadot/extension-inject": "^0.37.3-3",
"@polkadot/util": "^6.0.1-5",
"@polkadot/util-crypto": "^6.0.1-5"
"@polkadot/extension-inject": "^0.37.3-4",
"@polkadot/util": "^6.0.5",
"@polkadot/util-crypto": "^6.0.5"
},
"peerDependencies": {
"@polkadot/api": "*",
Expand Down
2 changes: 1 addition & 1 deletion packages/extension-dapp/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Auto-generated by @polkadot/dev, do not edit

export const packageInfo = { name: '@polkadot/extension-dapp', version: '0.37.3-3' };
export const packageInfo = { name: '@polkadot/extension-dapp', version: '0.37.3-4' };
2 changes: 1 addition & 1 deletion packages/extension-inject/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polkadot/extension-inject",
"description": "A generic injector (usable to any extension), that populates the base exposed interfaces to be used by dapps.",
"version": "0.37.3-3",
"version": "0.37.3-4",
"type": "module",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
Expand Down
2 changes: 1 addition & 1 deletion packages/extension-inject/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Auto-generated by @polkadot/dev, do not edit

export const packageInfo = { name: '@polkadot/extension-inject', version: '0.37.3-3' };
export const packageInfo = { name: '@polkadot/extension-inject', version: '0.37.3-4' };
22 changes: 11 additions & 11 deletions packages/extension-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@polkadot/extension-ui",
"description": "A sample signer extension for the @polkadot/api",
"version": "0.37.3-3",
"version": "0.37.3-4",
"type": "module",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
Expand All @@ -12,20 +12,20 @@
"@fortawesome/free-regular-svg-icons": "^5.15.2",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"@polkadot/extension-base": "^0.37.3-3",
"@polkadot/extension-inject": "^0.37.3-3",
"@polkadot/hw-ledger": "^6.0.1-5",
"@polkadot/keyring": "^6.0.1-5",
"@polkadot/networks": "^6.0.1-5",
"@polkadot/react-identicon": "^0.70.2-2",
"@polkadot/react-qr": "^0.70.2-2",
"@polkadot/util": "^6.0.1-5",
"@polkadot/util-crypto": "^6.0.1-5",
"@polkadot/extension-base": "^0.37.3-4",
"@polkadot/extension-inject": "^0.37.3-4",
"@polkadot/hw-ledger": "^6.0.5",
"@polkadot/keyring": "^6.0.5",
"@polkadot/networks": "^6.0.5",
"@polkadot/react-identicon": "^0.71.3",
"@polkadot/react-qr": "^0.71.3",
"@polkadot/util": "^6.0.5",
"@polkadot/util-crypto": "^6.0.5",
"i18next": "^19.9.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.3.1",
"react-i18next": "^11.8.8",
"react-i18next": "^11.8.9",
"react-is": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
{
"name": "@polkadot/extension",
"description": "A sample signer extension for the @polkadot/api",
"version": "0.37.3-3",
"version": "0.37.3-4",
"type": "module",
"author": "Jaco Greeff <jacogr@gmail.com>",
"license": "Apache-2",
"dependencies": {
"@babel/runtime": "^7.13.9",
"@polkadot/extension-base": "^0.37.3-3",
"@polkadot/extension-inject": "^0.37.3-3",
"@polkadot/extension-ui": "^0.37.3-3"
"@polkadot/extension-base": "^0.37.3-4",
"@polkadot/extension-inject": "^0.37.3-4",
"@polkadot/extension-ui": "^0.37.3-4"
},
"devDependencies": {
"@polkadot/dev": "^0.62.5",
"babel-loader": "^8.2.2",
"browser-resolve": "^2.0.0",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^7.0.0",
"copy-webpack-plugin": "^8.0.0",
"crypto-browserify": "^3.12.0",
"extract-loader": "^5.1.0",
"file-loader": "^6.2.0",
Expand All @@ -26,7 +26,7 @@
"stream-browserify": "^3.0.0",
"thread-loader": "^3.0.1",
"url-loader": "^4.1.1",
"webpack": "^5.24.2",
"webpack": "^5.24.4",
"webpack-cli": "^4.5.0",
"webpack-extension-manifest-plugin": "^0.6.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/src/packageInfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@

// Auto-generated by @polkadot/dev, do not edit

export const packageInfo = { name: '@polkadot/extension', version: '0.37.3-3' };
export const packageInfo = { name: '@polkadot/extension', version: '0.37.3-4' };
2 changes: 1 addition & 1 deletion packages/extension/webpack.extension.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ module.exports = createConfig(
extension: './src/extension.ts'
},
{
'@polkadot/wasm-crypto-wasm': require.resolve('@polkadot/wasm-crypto-wasm/empty')
'@polkadot/wasm-crypto-wasm/data.js': require.resolve('@polkadot/wasm-crypto-wasm/empty')
}
);
Loading

0 comments on commit 2d61a21

Please sign in to comment.