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] committed Jun 16, 2022
1 parent 9c40913 commit 2f6c871
Show file tree
Hide file tree
Showing 22 changed files with 116 additions and 29 deletions.
6 changes: 5 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,19 @@
"empty-ants-switch",
"fluffy-foxes-pull",
"friendly-berries-admire",
"gold-donuts-pretend",
"green-berries-perform",
"grumpy-cats-flash",
"itchy-pumpkins-dream",
"little-buses-thank",
"mean-students-repair",
"seven-shoes-sip",
"short-colts-beg",
"shy-emus-wave",
"smart-toys-joke",
"spotty-eggs-call",
"strong-bananas-provide",
"tall-zebras-tie"
"tall-zebras-tie",
"tender-jobs-exist"
]
}
7 changes: 7 additions & 0 deletions packages/config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @onflow/config

## 1.0.2-alpha.0

### Patch Changes

- Updated dependencies [[`4ec2bdc9`](https://github.com/onflow/fcl-js/commit/4ec2bdc9805ac081bdc8003b6e1ea52e02d3909d)]:
- @onflow/util-actor@1.1.0-alpha.0

## 1.0.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/config",
"version": "1.0.1",
"version": "1.0.2-alpha.0",
"description": "Config 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/util-actor": "^1.0.1"
"@onflow/util-actor": "^1.1.0-alpha.0"
}
}
18 changes: 18 additions & 0 deletions packages/fcl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# @onflow/fcl

## 1.1.0-alpha.2

### Minor Changes

- [#1243](https://github.com/onflow/fcl-js/pull/1243) [`4ec2bdc9`](https://github.com/onflow/fcl-js/commit/4ec2bdc9805ac081bdc8003b6e1ea52e02d3909d) Thanks [@jribbink](https://github.com/jribbink)! - Make errors accessible to subscribers from fcl.tx polling (second argument of callback) and throw error for onceSealed, onceExecuted, onceFinalized promises. Also removed retried polling requests as they are a redundancy already implemented by @onflow/transport-http

### Patch Changes

- [#1245](https://github.com/onflow/fcl-js/pull/1245) [`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0) Thanks [@jribbink](https://github.com/jribbink)! - Switch deprecation warnings to standardized warnings introduced by @onflow/util-logger (log.deprecate)

- Updated dependencies [[`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0), [`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0), [`4ec2bdc9`](https://github.com/onflow/fcl-js/commit/4ec2bdc9805ac081bdc8003b6e1ea52e02d3909d)]:
- @onflow/sdk@1.1.0-alpha.3
- @onflow/types@1.0.2-alpha.0
- @onflow/util-logger@1.1.0-alpha.2
- @onflow/util-template@1.0.2-alpha.0
- @onflow/util-actor@1.1.0-alpha.0
- @onflow/config@1.0.2-alpha.0

## 1.0.3-alpha.1

### Patch Changes
Expand Down
14 changes: 7 additions & 7 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.1",
"version": "1.1.0-alpha.2",
"description": "Flow Client Library",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down Expand Up @@ -41,16 +41,16 @@
"start": "microbundle watch --define MICROBUNDLE_CURRENT_VERSION=$npm_package_version --no-compress"
},
"dependencies": {
"@onflow/config": "^1.0.1",
"@onflow/config": "^1.0.2-alpha.0",
"@onflow/interaction": "0.0.11",
"@onflow/rlp": "^1.0.1",
"@onflow/sdk": "^1.1.0-alpha.2",
"@onflow/types": "^1.0.1",
"@onflow/util-actor": "^1.0.1",
"@onflow/sdk": "^1.1.0-alpha.3",
"@onflow/types": "^1.0.2-alpha.0",
"@onflow/util-actor": "^1.1.0-alpha.0",
"@onflow/util-address": "^1.0.1",
"@onflow/util-invariant": "^1.0.1",
"@onflow/util-logger": "^1.0.2-alpha.0",
"@onflow/util-template": "^1.0.1",
"@onflow/util-logger": "^1.1.0-alpha.2",
"@onflow/util-template": "^1.0.2-alpha.0",
"@onflow/util-uid": "^1.0.1"
}
}
13 changes: 13 additions & 0 deletions packages/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @onflow/sdk

## 1.1.0-alpha.3

### Patch Changes

- [#1245](https://github.com/onflow/fcl-js/pull/1245) [`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0) Thanks [@jribbink](https://github.com/jribbink)! - Switch deprecation warnings to standardized warnings introduced by @onflow/util-logger (log.deprecate)

- Updated dependencies [[`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0), [`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0), [`4ec2bdc9`](https://github.com/onflow/fcl-js/commit/4ec2bdc9805ac081bdc8003b6e1ea52e02d3909d)]:
- @onflow/util-logger@1.1.0-alpha.2
- @onflow/util-template@1.0.2-alpha.0
- @onflow/util-actor@1.1.0-alpha.0
- @onflow/transport-http@1.3.0-alpha.3
- @onflow/config@1.0.2-alpha.0

## 1.1.0-alpha.2

### Minor Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/sdk",
"version": "1.1.0-alpha.2",
"version": "1.1.0-alpha.3",
"description": "Flow SDK",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down Expand Up @@ -39,14 +39,14 @@
"start": "microbundle --no-compress --define MICROBUNDLE_CURRENT_VERSION=$npm_package_version watch"
},
"dependencies": {
"@onflow/config": "^1.0.1",
"@onflow/config": "^1.0.2-alpha.0",
"@onflow/rlp": "^1.0.1",
"@onflow/transport-http": "^1.3.0-alpha.2",
"@onflow/util-actor": "^1.0.1",
"@onflow/transport-http": "^1.3.0-alpha.3",
"@onflow/util-actor": "^1.1.0-alpha.0",
"@onflow/util-address": "^1.0.1",
"@onflow/util-invariant": "^1.0.1",
"@onflow/util-logger": "^1.0.2-alpha.1",
"@onflow/util-template": "^1.0.1",
"@onflow/util-logger": "^1.1.0-alpha.2",
"@onflow/util-template": "^1.0.2-alpha.0",
"deepmerge": "^4.2.2",
"sha3": "^2.1.4"
}
Expand Down
7 changes: 7 additions & 0 deletions packages/transport-grpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @onflow/transport-grpc

## 1.1.0-alpha.1

### Patch Changes

- Updated dependencies [[`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0)]:
- @onflow/util-template@1.0.2-alpha.0

## 1.1.0-alpha.0

### Minor 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.1.0-alpha.0",
"version": "1.1.0-alpha.1",
"description": "Flow SDK GRPC Transport Module",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down Expand Up @@ -41,6 +41,6 @@
"@onflow/rlp": "^1.0.1",
"@onflow/util-address": "^1.0.1",
"@onflow/util-invariant": "^1.0.1",
"@onflow/util-template": "^1.0.1"
"@onflow/util-template": "^1.0.2-alpha.0"
}
}
7 changes: 7 additions & 0 deletions packages/transport-http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @onflow/transport-http

## 1.3.0-alpha.3

### Patch Changes

- Updated dependencies [[`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0)]:
- @onflow/util-template@1.0.2-alpha.0

## 1.3.0-alpha.2

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions 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.2",
"version": "1.3.0-alpha.3",
"description": "Flow SDK HTTP Transport Module",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand All @@ -19,7 +19,7 @@
},
"devDependencies": {
"@onflow/rlp": "^1.0.1",
"@onflow/types": "^1.0.1",
"@onflow/types": "^1.0.2-alpha.0",
"jest": "^27.0.6",
"jest-esm-transformer": "1.0.0",
"microbundle": "^0.13.3"
Expand All @@ -39,7 +39,7 @@
"dependencies": {
"@onflow/util-address": "^1.0.1",
"@onflow/util-invariant": "^1.0.1",
"@onflow/util-template": "^1.0.1",
"@onflow/util-template": "^1.0.2-alpha.0",
"@onflow/util-node-http-modules": "^1.0.2"
}
}
6 changes: 6 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @onflow/types

## 1.0.2-alpha.0

### Patch Changes

- [#1245](https://github.com/onflow/fcl-js/pull/1245) [`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0) Thanks [@jribbink](https://github.com/jribbink)! - Switch deprecation warnings to standardized warnings introduced by @onflow/util-logger (log.deprecate)

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/types",
"version": "1.0.1",
"version": "1.0.2-alpha.0",
"description": "Utilities to transform javascript values into Cadence understandable values",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down
6 changes: 6 additions & 0 deletions packages/util-actor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @onflow/util-actor

## 1.1.0-alpha.0

### Minor Changes

- [#1243](https://github.com/onflow/fcl-js/pull/1243) [`4ec2bdc9`](https://github.com/onflow/fcl-js/commit/4ec2bdc9805ac081bdc8003b6e1ea52e02d3909d) Thanks [@jribbink](https://github.com/jribbink)! - Add error handling to actors. Second argument of callback is now an error object and fatal errors can be thrown with ctx.fatalError(e).

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/util-actor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/util-actor",
"version": "1.0.1",
"version": "1.1.0-alpha.0",
"description": "A mechanism for forcing order/transitions of scoped async state",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion packages/util-address/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
},
"devDependencies": {
"@onflow/types": "^1.0.1",
"@onflow/types": "^1.0.2-alpha.0",
"jest": "26.4.2",
"jest-esm-transformer": "1.0.0",
"microbundle": "0.12.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/util-encode-key/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
},
"devDependencies": {
"@onflow/types": "^1.0.1",
"@onflow/types": "^1.0.2-alpha.0",
"jest": "^26.6.3",
"jest-esm-transformer": "1.0.0",
"microbundle": "^0.13.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/util-invariant/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
}
},
"devDependencies": {
"@onflow/types": "^1.0.1",
"@onflow/types": "^1.0.2-alpha.0",
"jest": "26.4.2",
"jest-esm-transformer": "1.0.0",
"microbundle": "0.12.4"
Expand Down
13 changes: 13 additions & 0 deletions packages/util-logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @onflow/util-logger

## 1.1.0-alpha.2

### Minor Changes

- [#1245](https://github.com/onflow/fcl-js/pull/1245) [`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0) Thanks [@jribbink](https://github.com/jribbink)! - Add log.deprecate function for standardized deprecation warnings. Set default log level to warn.

### Patch Changes

- [#1245](https://github.com/onflow/fcl-js/pull/1245) [`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0) Thanks [@jribbink](https://github.com/jribbink)! - Switch deprecation warnings to standardized warnings introduced by @onflow/util-logger (log.deprecate)

- Updated dependencies [[`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0)]:
- @onflow/sdk@1.1.0-alpha.3

## 1.0.2-alpha.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.2-alpha.1",
"version": "1.1.0-alpha.2",
"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.1.0-alpha.2"
"@onflow/sdk": "^1.1.0-alpha.3"
}
}
6 changes: 6 additions & 0 deletions packages/util-template/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @onflow/util-template

## 1.0.2-alpha.0

### Patch Changes

- [#1245](https://github.com/onflow/fcl-js/pull/1245) [`d09ba0f0`](https://github.com/onflow/fcl-js/commit/d09ba0f00f53f93feb351a3da5e821eada6287f0) Thanks [@jribbink](https://github.com/jribbink)! - Switch deprecation warnings to standardized warnings introduced by @onflow/util-logger (log.deprecate)

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/util-template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@onflow/util-template",
"version": "1.0.1",
"version": "1.0.2-alpha.0",
"description": "Template Literal used for Cadence Interop",
"license": "Apache-2.0",
"author": "Dapper Labs <[email protected]>",
Expand Down

0 comments on commit 2f6c871

Please sign in to comment.