mirror of
https://github.com/zhigang1992/connect.git
synced 2026-04-28 17:35:40 +08:00
chore(release): publish
- @blockstack/app@1.15.0 - @blockstack/connect@2.12.0 - @blockstack/keychain@0.12.0 - @blockstack/rpc-client@0.3.0-alpha.14 - test-app@1.6.0 - @blockstack/ui-docs@1.2.6 - @blockstack/ui@2.12.6
This commit is contained in:
@@ -3,6 +3,25 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [1.15.0](https://github.com/blockstack/ux/compare/@blockstack/app@1.14.0...@blockstack/app@1.15.0) (2020-08-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* keychain version ([e1618f6](https://github.com/blockstack/ux/commit/e1618f61b18490e87760b810766beab38e7ef16f))
|
||||
* rpc-client version ([83cf48b](https://github.com/blockstack/ux/commit/83cf48b679fa0938f6550c02472a97400dd009bf))
|
||||
* **app:** use BigNum for fungible post condition amount ([633ac80](https://github.com/blockstack/ux/commit/633ac801b9a0f2f17eadd2dd302b8c4c235233de))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* change copy of intro modal CTA, fixes [#466](https://github.com/blockstack/ux/issues/466) ([6b64222](https://github.com/blockstack/ux/commit/6b64222fc31ab5af4b9807ae280101039388b223))
|
||||
* dont use popups in mobile, adds method to handle redirect auth ([450f58b](https://github.com/blockstack/ux/commit/450f58bcb5c3431d6b1ac649d19f319da34d9f7f))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [1.14.0](https://github.com/blockstack/ux/compare/@blockstack/app@1.13.5...@blockstack/app@1.14.0) (2020-08-11)
|
||||
|
||||
|
||||
|
||||
@@ -21,16 +21,16 @@
|
||||
"test:watch": "jest --watch",
|
||||
"typecheck": "tsc --noEmit"
|
||||
},
|
||||
"version": "1.14.0",
|
||||
"version": "1.15.0",
|
||||
"author": "Blockstack PBC",
|
||||
"dependencies": {
|
||||
"@blockstack/connect": "^2.11.0",
|
||||
"@blockstack/keychain": "^0.11.0",
|
||||
"@blockstack/connect": "^2.12.0",
|
||||
"@blockstack/keychain": "^0.12.0",
|
||||
"@blockstack/prettier-config": "^0.0.6",
|
||||
"@blockstack/rpc-client": "^0.3.0-alpha.13",
|
||||
"@blockstack/rpc-client": "^0.3.0-alpha.14",
|
||||
"@blockstack/stacks-transactions": "0.5.1",
|
||||
"@blockstack/stats": "^0.7.0",
|
||||
"@blockstack/ui": "^2.12.5",
|
||||
"@blockstack/ui": "^2.12.6",
|
||||
"@rehooks/document-title": "^1.0.1",
|
||||
"@types/react-router-dom": "^5.1.3",
|
||||
"bignumber.js": "^9.0.0",
|
||||
@@ -94,8 +94,8 @@
|
||||
"jest-circus": "^25.1.0",
|
||||
"playwright": "^1.2.1",
|
||||
"playwright-chromium": "^1.2.1",
|
||||
"playwright-firefox": "^1.2.1",
|
||||
"playwright-core": "^1.2.1",
|
||||
"playwright-firefox": "^1.2.1",
|
||||
"playwright-webkit": "^1.2.1",
|
||||
"prettier": "^2.0.5",
|
||||
"react-dev-utils": "^10.2.0",
|
||||
|
||||
@@ -3,6 +3,19 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [2.12.0](https://github.com/blockstack/ux/compare/@blockstack/connect@2.11.0...@blockstack/connect@2.12.0) (2020-08-21)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* change copy of intro modal CTA, fixes [#466](https://github.com/blockstack/ux/issues/466) ([6b64222](https://github.com/blockstack/ux/commit/6b64222fc31ab5af4b9807ae280101039388b223))
|
||||
* dont use popups in mobile, adds method to handle redirect auth ([450f58b](https://github.com/blockstack/ux/commit/450f58bcb5c3431d6b1ac649d19f319da34d9f7f))
|
||||
* show 'install extension' on intro, fixes [#469](https://github.com/blockstack/ux/issues/469) ([faa8071](https://github.com/blockstack/ux/commit/faa80714ab7269904ed3388d000eb96b8aab1676))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# [2.11.0](https://github.com/blockstack/ux/compare/@blockstack/connect@2.10.5...@blockstack/connect@2.11.0) (2020-08-11)
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blockstack/connect",
|
||||
"version": "2.11.0",
|
||||
"version": "2.12.0",
|
||||
"scripts": {
|
||||
"build": "yarn build:modules && yarn build:standalone",
|
||||
"build:modules": "tsdx build --format cjs,esm,umd",
|
||||
@@ -31,7 +31,7 @@
|
||||
}
|
||||
],
|
||||
"dependencies": {
|
||||
"@blockstack/ui": "^2.12.5",
|
||||
"@blockstack/ui": "^2.12.6",
|
||||
"jsontokens": "^3.0.0",
|
||||
"preact": "^10.4.0",
|
||||
"styled-components": "^5.1.0",
|
||||
|
||||
@@ -3,6 +3,27 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [0.12.0](https://github.com/blockstack/ux/compare/@blockstack/keychain@0.10.5...@blockstack/keychain@0.12.0) (2020-08-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* keychain version ([e1618f6](https://github.com/blockstack/ux/commit/e1618f61b18490e87760b810766beab38e7ef16f))
|
||||
* rpc-client version ([83cf48b](https://github.com/blockstack/ux/commit/83cf48b679fa0938f6550c02472a97400dd009bf))
|
||||
* **app:** use BigNum for fungible post condition amount ([633ac80](https://github.com/blockstack/ux/commit/633ac801b9a0f2f17eadd2dd302b8c4c235233de))
|
||||
* **keychain:** use correct filePath, add types for async functions ([7290261](https://github.com/blockstack/ux/commit/7290261a32d4fcea6627f66a76299b38ff7b7eac))
|
||||
* **keychain:** use filePath for profile uploading ([04c9385](https://github.com/blockstack/ux/commit/04c938591b82ff10f51b2f61401468d579655ee0))
|
||||
* **keychain:** use synchronous profile upload methods ([3b5bd82](https://github.com/blockstack/ux/commit/3b5bd821ccd45511645ce2c8bb648944ed4663c2))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* dont use popups in mobile, adds method to handle redirect auth ([450f58b](https://github.com/blockstack/ux/commit/450f58bcb5c3431d6b1ac649d19f319da34d9f7f))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 0.10.5 (2020-07-30)
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blockstack/keychain",
|
||||
"version": "0.11.0",
|
||||
"version": "0.12.0",
|
||||
"description": "A package for managing Blockstack keychains",
|
||||
"main": "./dist/index.js",
|
||||
"umd:main": "./dist/keychain.umd.production.js",
|
||||
@@ -56,7 +56,7 @@
|
||||
"typescript": "^3.7.3"
|
||||
},
|
||||
"dependencies": {
|
||||
"@blockstack/rpc-client": "^0.3.0-alpha.13",
|
||||
"@blockstack/rpc-client": "^0.3.0-alpha.14",
|
||||
"@blockstack/stacks-transactions": "0.5.1",
|
||||
"bip39": "^3.0.2",
|
||||
"bitcoinjs-lib": "^5.1.6",
|
||||
|
||||
@@ -3,6 +3,18 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [0.3.0-alpha.14](https://github.com/blockstack/ux/compare/@blockstack/rpc-client@0.3.0-alpha.11...@blockstack/rpc-client@0.3.0-alpha.14) (2020-08-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* rpc-client version ([83cf48b](https://github.com/blockstack/ux/commit/83cf48b679fa0938f6550c02472a97400dd009bf))
|
||||
* **app:** use BigNum for fungible post condition amount ([633ac80](https://github.com/blockstack/ux/commit/633ac801b9a0f2f17eadd2dd302b8c4c235233de))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
# 0.3.0-alpha.11 (2020-07-30)
|
||||
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@blockstack/rpc-client",
|
||||
"version": "0.3.0-alpha.13",
|
||||
"version": "0.3.0-alpha.14",
|
||||
"license": "MIT",
|
||||
"author": "Hank Stoever",
|
||||
"main": "dist/index.js",
|
||||
|
||||
@@ -3,6 +3,24 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
# [1.6.0](https://github.com/blockstack/ux/compare/test-app@1.5.6...test-app@1.6.0) (2020-08-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* keychain version ([e1618f6](https://github.com/blockstack/ux/commit/e1618f61b18490e87760b810766beab38e7ef16f))
|
||||
* rpc-client version ([83cf48b](https://github.com/blockstack/ux/commit/83cf48b679fa0938f6550c02472a97400dd009bf))
|
||||
* **app:** use BigNum for fungible post condition amount ([633ac80](https://github.com/blockstack/ux/commit/633ac801b9a0f2f17eadd2dd302b8c4c235233de))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* dont use popups in mobile, adds method to handle redirect auth ([450f58b](https://github.com/blockstack/ux/commit/450f58bcb5c3431d6b1ac649d19f319da34d9f7f))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## [1.5.6](https://github.com/blockstack/ux/compare/test-app@1.5.5...test-app@1.5.6) (2020-08-11)
|
||||
|
||||
**Note:** Version bump only for package test-app
|
||||
|
||||
@@ -20,15 +20,15 @@
|
||||
"typecheck": "tsc --noEmit",
|
||||
"watch": "cross-env NODE_ENV=development EXT_ENV=watch webpack -d"
|
||||
},
|
||||
"version": "1.5.6",
|
||||
"version": "1.6.0",
|
||||
"author": "Blockstack PBC",
|
||||
"dependencies": {
|
||||
"@blockstack/clarity": "0.1.16",
|
||||
"@blockstack/connect": "^2.11.0",
|
||||
"@blockstack/keychain": "^0.11.0",
|
||||
"@blockstack/connect": "^2.12.0",
|
||||
"@blockstack/keychain": "^0.12.0",
|
||||
"@blockstack/prettier-config": "^0.0.6",
|
||||
"@blockstack/rpc-client": "^0.3.0-alpha.13",
|
||||
"@blockstack/ui": "^2.12.5",
|
||||
"@blockstack/rpc-client": "^0.3.0-alpha.14",
|
||||
"@blockstack/ui": "^2.12.6",
|
||||
"@rehooks/document-title": "^1.0.1",
|
||||
"blockstack": "21.0.0",
|
||||
"dayjs": "^1.8.29",
|
||||
|
||||
@@ -3,6 +3,14 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [1.2.6](https://github.com/blockstack/ux/compare/@blockstack/ui-docs@1.2.5...@blockstack/ui-docs@1.2.6) (2020-08-21)
|
||||
|
||||
**Note:** Version bump only for package @blockstack/ui-docs
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 1.2.5 (2020-07-30)
|
||||
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "@blockstack/ui-docs",
|
||||
"version": "1.2.5",
|
||||
"version": "1.2.6",
|
||||
"dependencies": {
|
||||
"@blockstack/ui": "^2.12.5",
|
||||
"@blockstack/ui": "^2.12.6",
|
||||
"@mdx-js/loader": "1.6.6",
|
||||
"@mdx-js/mdx": "^1.6.6",
|
||||
"@mdx-js/react": "^1.6.6",
|
||||
|
||||
@@ -3,6 +3,18 @@
|
||||
All notable changes to this project will be documented in this file.
|
||||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
||||
|
||||
## [2.12.6](https://github.com/blockstack/ux/tree/master/packages/ui/compare/@blockstack/ui@2.12.5...@blockstack/ui@2.12.6) (2020-08-21)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* force prism as external dep ([9ca733f](https://github.com/blockstack/ux/tree/master/packages/ui/commit/9ca733f732b8d9a95ff756ad6c490fff7a021e97))
|
||||
* import clarity def ([ea99468](https://github.com/blockstack/ux/tree/master/packages/ui/commit/ea99468334b6fcfa2879cdbff3b332c85497a581))
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
## 2.12.5 (2020-07-30)
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@blockstack/ui",
|
||||
"description": "Blockstack UI components built using React and styled-components with styled-system.",
|
||||
"version": "2.12.5",
|
||||
"version": "2.12.6",
|
||||
"author": "Blockstack <engineering@blockstack.com> (https://blockstack.org/)",
|
||||
"bundlesize": [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user