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 Jun 13, 2022
1 parent 53c988b commit 6a76559
Show file tree
Hide file tree
Showing 13 changed files with 67 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,17 @@
},
"changesets": [
"empty-ants-switch",
"fluffy-foxes-pull",
"friendly-berries-admire",
"green-berries-perform",
"grumpy-cats-flash",
"itchy-pumpkins-dream",
"little-buses-thank",
"mean-students-repair",
"short-colts-beg",
"shy-emus-wave",
"smart-toys-joke",
"strong-bananas-provide",
"tall-zebras-tie"
]
}
9 changes: 9 additions & 0 deletions packages/fcl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @onflow/fcl

## 1.0.3-alpha.1

### Patch Changes

- [#1210](https://github.com/onflow/fcl-js/pull/1210) [`457f4996`](https://github.com/onflow/fcl-js/commit/457f49964dd2a0e849ae18a8dd0864bcb52082e8) Thanks [@jribbink](https://github.com/jribbink)! - Add deprecation warning when "env" is used instead of "flow.network" in config

- Updated dependencies [[`e0d3a377`](https://github.com/onflow/fcl-js/commit/e0d3a377260338a37518f0ad2a52dcc618fd9bc5)]:
- @onflow/sdk@1.1.0-alpha.2

## 1.0.3-alpha.0

### 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.3-alpha.0",
"version": "1.0.3-alpha.1",
"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.2-alpha.0",
"@onflow/sdk": "^1.1.0-alpha.2",
"@onflow/types": "^1.0.1",
"@onflow/util-actor": "^1.0.1",
"@onflow/util-address": "^1.0.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/protobuf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @onflow/protobuf

## 1.1.0-alpha.0

### Minor Changes

- [#1206](https://github.com/onflow/fcl-js/pull/1206) [`6ae4469c`](https://github.com/onflow/fcl-js/commit/6ae4469cdaa9590ef110ed1c0ec6928d9ac09845) Thanks [@jribbink](https://github.com/jribbink)! - Updated & regenerated protobuf definitions to match current access node specification

## 1.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/protobuf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/protobuf",
"version": "1.0.0",
"version": "1.1.0-alpha.0",
"description": "Access Node Protobuf",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
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.1.0-alpha.2

### Minor Changes

- [#1183](https://github.com/onflow/fcl-js/pull/1183) [`e0d3a377`](https://github.com/onflow/fcl-js/commit/e0d3a377260338a37518f0ad2a52dcc618fd9bc5) Thanks [@jribbink](https://github.com/jribbink)! - Added deprecation warning for hard-coded DEFAULT_COMPUTE_LIMIT=10 (and increase to DEFAULT_COMPUTE_LIMIT=100 for now) and added sdk.defaultComputeLimit to config

### Patch Changes

- Updated dependencies [[`06279c1d`](https://github.com/onflow/fcl-js/commit/06279c1d27433893494b6a79b7f742ea9a7fab8e)]:
- @onflow/transport-http@1.3.0-alpha.2
- @onflow/util-logger@1.0.2-alpha.1

## 1.0.2-alpha.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.2-alpha.1",
"version": "1.1.0-alpha.2",
"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.3.0-alpha.1",
"@onflow/transport-http": "^1.3.0-alpha.2",
"@onflow/util-actor": "^1.0.1",
"@onflow/util-address": "^1.0.1",
"@onflow/util-invariant": "^1.0.1",
"@onflow/util-logger": "^1.0.2-alpha.0",
"@onflow/util-logger": "^1.0.2-alpha.1",
"@onflow/util-template": "^1.0.1",
"deepmerge": "^4.2.2",
"sha3": "^2.1.4"
Expand Down
11 changes: 11 additions & 0 deletions packages/transport-grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @onflow/transport-grpc

## 1.1.0-alpha.0

### Minor Changes

- [#1206](https://github.com/onflow/fcl-js/pull/1206) [`6ae4469c`](https://github.com/onflow/fcl-js/commit/6ae4469cdaa9590ef110ed1c0ec6928d9ac09845) Thanks [@jribbink](https://github.com/jribbink)! - Added blockId to transport-grpc transaction status

### Patch Changes

- Updated dependencies [[`6ae4469c`](https://github.com/onflow/fcl-js/commit/6ae4469cdaa9590ef110ed1c0ec6928d9ac09845)]:
- @onflow/protobuf@1.1.0-alpha.0

## 1.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/transport-grpc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/transport-grpc",
"version": "1.0.1",
"version": "1.1.0-alpha.0",
"description": "Flow SDK GRPC Transport Module",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down Expand Up @@ -37,7 +37,7 @@
"dependencies": {
"@improbable-eng/grpc-web": "^0.14.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.14.0",
"@onflow/protobuf": "^1.0.0",
"@onflow/protobuf": "^1.1.0-alpha.0",
"@onflow/rlp": "^1.0.1",
"@onflow/util-address": "^1.0.1",
"@onflow/util-invariant": "^1.0.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/transport-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @onflow/transport-http

## 1.3.0-alpha.2

### Minor Changes

- [#1242](https://github.com/onflow/fcl-js/pull/1242) [`06279c1d`](https://github.com/onflow/fcl-js/commit/06279c1d27433893494b6a79b7f742ea9a7fab8e) Thanks [@jribbink](https://github.com/jribbink)! - Add request retry for 408 (Request Timeout) status code

## 1.3.0-alpha.1

### Patch 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.3.0-alpha.1",
"version": "1.3.0-alpha.2",
"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.1

### Patch Changes

- Updated dependencies [[`e0d3a377`](https://github.com/onflow/fcl-js/commit/e0d3a377260338a37518f0ad2a52dcc618fd9bc5)]:
- @onflow/sdk@1.1.0-alpha.2

## 1.0.2-alpha.0

### 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.2-alpha.0",
"version": "1.0.2-alpha.1",
"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.2-alpha.0"
"@onflow/sdk": "^1.1.0-alpha.2"
}
}

0 comments on commit 6a76559

Please sign in to comment.