Skip to content

Commit

Permalink
Version Packages (alpha)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and justinbarry committed May 27, 2022
1 parent 6b258af commit dbe7f42
Show file tree
Hide file tree
Showing 9 changed files with 56 additions and 9 deletions.
9 changes: 8 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,12 @@
"@onflow/util-template": "1.0.1",
"@onflow/util-uid": "1.0.1"
},
"changesets": []
"changesets": [
"empty-ants-switch",
"friendly-berries-admire",
"itchy-pumpkins-dream",
"short-colts-beg",
"smart-toys-joke",
"tall-zebras-tie"
]
}
11 changes: 11 additions & 0 deletions packages/fcl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @onflow/fcl

## 1.0.3-alpha.0

### Patch Changes

- [#1177](https://github.com/onflow/fcl-js/pull/1177) [`e38f9fe4`](https://github.com/onflow/fcl-js/commit/e38f9fe4ba030693984ab74bffd5bca387ac9a09) Thanks [@hotrungnhan](https://github.com/hotrungnhan)! - Fix events subcribe block height issue and add polling rate guide to docs.

* [#1211](https://github.com/onflow/fcl-js/pull/1211) [`f4c6fb9a`](https://github.com/onflow/fcl-js/commit/f4c6fb9a05e8cf717afcd6a3b3b4c8b102f253e3) Thanks [@gregsantos](https://github.com/gregsantos)! - Update event listeners in strategies
Fixes a bug where event listener was not being removed on close
* Updated dependencies [[`1654ebbe`](https://github.com/onflow/fcl-js/commit/1654ebbe45ea5e4ca13536ed2139520ce21ee314), [`d1765950`](https://github.com/onflow/fcl-js/commit/d176595021681e660ae0a06161340833280091fb)]:
- @onflow/sdk@1.0.2-alpha.0

## 1.0.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/fcl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/fcl",
"version": "1.0.2",
"version": "1.0.3-alpha.0",
"description": "Flow Client Library",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down Expand Up @@ -44,7 +44,7 @@
"@onflow/config": "^1.0.1",
"@onflow/interaction": "0.0.11",
"@onflow/rlp": "^1.0.1",
"@onflow/sdk": "^1.0.1",
"@onflow/sdk": "^1.0.2-alpha.0",
"@onflow/types": "^1.0.1",
"@onflow/util-actor": "^1.0.1",
"@onflow/util-address": "^1.0.1",
Expand Down
12 changes: 12 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @onflow/sdk

## 1.0.2-alpha.0

### Patch Changes

- [#1212](https://github.com/onflow/fcl-js/pull/1212) [`1654ebbe`](https://github.com/onflow/fcl-js/commit/1654ebbe45ea5e4ca13536ed2139520ce21ee314) Thanks [@jribbink](https://github.com/jribbink)! - Make deprecation notice for getEvents use @onflow/util-logger instead of console.warn

* [#1199](https://github.com/onflow/fcl-js/pull/1199) [`d1765950`](https://github.com/onflow/fcl-js/commit/d176595021681e660ae0a06161340833280091fb) Thanks [@jribbink](https://github.com/jribbink)! - Fix issue where custom decoders did not properly override default decoders

* Updated dependencies [[`d9bc1cc6`](https://github.com/onflow/fcl-js/commit/d9bc1cc671f143d2f37cad6eb6b80123f1f3d760), [`cd218e84`](https://github.com/onflow/fcl-js/commit/cd218e843acfc390049b391d36c447ce93668221)]:
- @onflow/transport-http@1.3.0-alpha.0
- @onflow/util-logger@1.0.2-alpha.0

## 1.0.1

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/sdk",
"version": "1.0.1",
"version": "1.0.2-alpha.0",
"description": "Flow SDK",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down Expand Up @@ -41,11 +41,11 @@
"dependencies": {
"@onflow/config": "^1.0.1",
"@onflow/rlp": "^1.0.1",
"@onflow/transport-http": "^1.1.0",
"@onflow/transport-http": "^1.3.0-alpha.0",
"@onflow/util-actor": "^1.0.1",
"@onflow/util-address": "^1.0.1",
"@onflow/util-invariant": "^1.0.1",
"@onflow/util-logger": "^1.0.1",
"@onflow/util-logger": "^1.0.2-alpha.0",
"@onflow/util-template": "^1.0.1",
"deepmerge": "^4.2.2",
"sha3": "^2.1.4"
Expand Down
10 changes: 10 additions & 0 deletions packages/transport-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @onflow/transport-http

## 1.3.0-alpha.0

### Minor Changes

- [#1196](https://github.com/onflow/fcl-js/pull/1196) [`cd218e84`](https://github.com/onflow/fcl-js/commit/cd218e843acfc390049b391d36c447ce93668221) Thanks [@jribbink](https://github.com/jribbink)! - Added errorMessage property to HTTPRequestError to expose Access API errors when making requests

### Patch Changes

- [#1197](https://github.com/onflow/fcl-js/pull/1197) [`d9bc1cc6`](https://github.com/onflow/fcl-js/commit/d9bc1cc671f143d2f37cad6eb6b80123f1f3d760) Thanks [@jribbink](https://github.com/jribbink)! - Fix issue where httpRequest errors were thrown inside a promise and could not be caught on node

## 1.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/transport-http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/transport-http",
"version": "1.2.0",
"version": "1.3.0-alpha.0",
"description": "Flow SDK HTTP Transport Module",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down
7 changes: 7 additions & 0 deletions packages/util-logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @onflow/util-logger

## 1.0.2-alpha.0

### Patch Changes

- Updated dependencies [[`1654ebbe`](https://github.com/onflow/fcl-js/commit/1654ebbe45ea5e4ca13536ed2139520ce21ee314), [`d1765950`](https://github.com/onflow/fcl-js/commit/d176595021681e660ae0a06161340833280091fb)]:
- @onflow/sdk@1.0.2-alpha.0

## 1.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/util-logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/util-logger",
"version": "1.0.1",
"version": "1.0.2-alpha.0",
"description": "Logger for FCL-JS",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down Expand Up @@ -34,6 +34,6 @@
"start": "microbundle watch --no-compress"
},
"dependencies": {
"@onflow/sdk": "^1.0.1"
"@onflow/sdk": "^1.0.2-alpha.0"
}
}

0 comments on commit dbe7f42

Please sign in to comment.