From ee8c2ba93f04651356cca83bd5c62047f9556825 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 13:15:54 +0200 Subject: [PATCH] Version Packages (#349) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated. # Releases ## @celo/contractkit@8.3.0 ### Minor Changes - [#348](https://github.com/celo-org/developer-tooling/pull/348) [`76d09b7`](https://github.com/celo-org/developer-tooling/commit/76d09b79c68cbb5aba38c0b36a5322384b7842ba) Thanks [@shazarre](https://github.com/shazarre)! - Adds support for firstKnownEpoch, getFirstBlockAtEpoch, getLastBlockAtEpoch on EpochManager wrapper ### Patch Changes - Updated dependencies \[[`433b70e`](https://github.com/celo-org/developer-tooling/commit/433b70e20563e3e087cc39d744f1a2710d1d09de)]: - @celo/connect@6.0.2 ## @celo/celocli@5.2.1 ### Patch Changes - [#348](https://github.com/celo-org/developer-tooling/pull/348) [`76d09b7`](https://github.com/celo-org/developer-tooling/commit/76d09b79c68cbb5aba38c0b36a5322384b7842ba) Thanks [@shazarre](https://github.com/shazarre)! - Fix network:info command when in L2 - Updated dependencies \[[`433b70e`](https://github.com/celo-org/developer-tooling/commit/433b70e20563e3e087cc39d744f1a2710d1d09de), [`76d09b7`](https://github.com/celo-org/developer-tooling/commit/76d09b79c68cbb5aba38c0b36a5322384b7842ba)]: - @celo/connect@6.0.2 - @celo/contractkit@8.3.0 ## @celo/connect@6.0.2 ### Patch Changes - [#350](https://github.com/celo-org/developer-tooling/pull/350) [`433b70e`](https://github.com/celo-org/developer-tooling/commit/433b70e20563e3e087cc39d744f1a2710d1d09de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Fix calculation of maxFeePerGas. Multiple base Fee by constant for buffer --- ## PR-Codex overview This PR focuses on updating the versions of the `@celo/connect` and `@celo/contractkit` packages, along with minor bug fixes and improvements in the changelogs for each package. ### Detailed summary - Updated `@celo/connect` from `6.0.1` to `6.0.2` - Updated `@celo/contractkit` from `8.2.0` to `8.3.0` - Updated `@celo/celocli` from `5.2.0` to `5.2.1` - Added changelog entries for versions `6.0.2`, `8.3.0`, and `5.2.1` - Fixed calculation of `maxFeePerGas` in `@celo/connect` - Added support for new methods in `@celo/contractkit` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` Co-authored-by: github-actions[bot] --- .changeset/dull-kangaroos-reply.md | 5 ----- .changeset/nice-apricots-confess.md | 5 ----- .changeset/twenty-fans-listen.md | 5 ----- packages/cli/CHANGELOG.md | 10 ++++++++++ packages/cli/package.json | 6 +++--- packages/sdk/connect/CHANGELOG.md | 6 ++++++ packages/sdk/connect/package.json | 2 +- packages/sdk/contractkit/CHANGELOG.md | 11 +++++++++++ packages/sdk/contractkit/package.json | 4 ++-- yarn.lock | 10 +++++----- 10 files changed, 38 insertions(+), 26 deletions(-) delete mode 100644 .changeset/dull-kangaroos-reply.md delete mode 100644 .changeset/nice-apricots-confess.md delete mode 100644 .changeset/twenty-fans-listen.md diff --git a/.changeset/dull-kangaroos-reply.md b/.changeset/dull-kangaroos-reply.md deleted file mode 100644 index 31a716d67..000000000 --- a/.changeset/dull-kangaroos-reply.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@celo/celocli': patch ---- - -Fix network:info command when in L2 diff --git a/.changeset/nice-apricots-confess.md b/.changeset/nice-apricots-confess.md deleted file mode 100644 index 75c6c2b93..000000000 --- a/.changeset/nice-apricots-confess.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@celo/connect': patch ---- - -Fix calculation of maxFeePerGas. Multiple base Fee by constant for buffer diff --git a/.changeset/twenty-fans-listen.md b/.changeset/twenty-fans-listen.md deleted file mode 100644 index f06754a20..000000000 --- a/.changeset/twenty-fans-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@celo/contractkit': minor ---- - -Adds support for firstKnownEpoch, getFirstBlockAtEpoch, getLastBlockAtEpoch on EpochManager wrapper diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index c94db4fbf..75256f29e 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 5.2.1 + +### Patch Changes + +- [#348](https://github.com/celo-org/developer-tooling/pull/348) [`76d09b7`](https://github.com/celo-org/developer-tooling/commit/76d09b79c68cbb5aba38c0b36a5322384b7842ba) Thanks [@shazarre](https://github.com/shazarre)! - Fix network:info command when in L2 + +- Updated dependencies [[`433b70e`](https://github.com/celo-org/developer-tooling/commit/433b70e20563e3e087cc39d744f1a2710d1d09de), [`76d09b7`](https://github.com/celo-org/developer-tooling/commit/76d09b79c68cbb5aba38c0b36a5322384b7842ba)]: + - @celo/connect@6.0.2 + - @celo/contractkit@8.3.0 + ## 5.2.0 ### Minor Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 0315f6799..0aa0f82e7 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@celo/celocli", "description": "CLI Tool for transacting with the Celo protocol", - "version": "5.2.0", + "version": "5.2.1", "author": "Celo", "license": "Apache-2.0", "repository": "celo-org/developer-tooling", @@ -40,8 +40,8 @@ "@celo/abis": "11.0.0", "@celo/base": "^6.1.0", "@celo/compliance": "~1.0.23", - "@celo/connect": "^6.0.1", - "@celo/contractkit": "^8.2.0", + "@celo/connect": "^6.0.2", + "@celo/contractkit": "^8.3.0", "@celo/cryptographic-utils": "^5.1.0", "@celo/explorer": "^5.0.12", "@celo/governance": "^5.1.3", diff --git a/packages/sdk/connect/CHANGELOG.md b/packages/sdk/connect/CHANGELOG.md index d2b333f54..f0034975e 100644 --- a/packages/sdk/connect/CHANGELOG.md +++ b/packages/sdk/connect/CHANGELOG.md @@ -1,5 +1,11 @@ # @celo/connect +## 6.0.2 + +### Patch Changes + +- [#350](https://github.com/celo-org/developer-tooling/pull/350) [`433b70e`](https://github.com/celo-org/developer-tooling/commit/433b70e20563e3e087cc39d744f1a2710d1d09de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Fix calculation of maxFeePerGas. Multiple base Fee by constant for buffer + ## 6.0.1 ### Patch Changes diff --git a/packages/sdk/connect/package.json b/packages/sdk/connect/package.json index 90714a34e..9a33acfc5 100644 --- a/packages/sdk/connect/package.json +++ b/packages/sdk/connect/package.json @@ -1,6 +1,6 @@ { "name": "@celo/connect", - "version": "6.0.1", + "version": "6.0.2", "description": "Light Toolkit for connecting with the Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", diff --git a/packages/sdk/contractkit/CHANGELOG.md b/packages/sdk/contractkit/CHANGELOG.md index 9c5ecb2f7..481725897 100644 --- a/packages/sdk/contractkit/CHANGELOG.md +++ b/packages/sdk/contractkit/CHANGELOG.md @@ -1,5 +1,16 @@ # @celo/contractkit +## 8.3.0 + +### Minor Changes + +- [#348](https://github.com/celo-org/developer-tooling/pull/348) [`76d09b7`](https://github.com/celo-org/developer-tooling/commit/76d09b79c68cbb5aba38c0b36a5322384b7842ba) Thanks [@shazarre](https://github.com/shazarre)! - Adds support for firstKnownEpoch, getFirstBlockAtEpoch, getLastBlockAtEpoch on EpochManager wrapper + +### Patch Changes + +- Updated dependencies [[`433b70e`](https://github.com/celo-org/developer-tooling/commit/433b70e20563e3e087cc39d744f1a2710d1d09de)]: + - @celo/connect@6.0.2 + ## 8.2.0 ### Minor Changes diff --git a/packages/sdk/contractkit/package.json b/packages/sdk/contractkit/package.json index c5bf57462..88626d89d 100644 --- a/packages/sdk/contractkit/package.json +++ b/packages/sdk/contractkit/package.json @@ -1,6 +1,6 @@ { "name": "@celo/contractkit", - "version": "8.2.0", + "version": "8.3.0", "description": "Celo's ContractKit to interact with Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -29,7 +29,7 @@ "@celo/abis": "11.0.0", "@celo/abis-12": "npm:@celo/abis@12.0.0-canary.35", "@celo/base": "^6.1.0", - "@celo/connect": "^6.0.1", + "@celo/connect": "^6.0.2", "@celo/utils": "^7.0.0", "@celo/wallet-local": "^6.0.1", "@types/bn.js": "^5.1.0", diff --git a/yarn.lock b/yarn.lock index 257756d2c..22da4e41f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1631,8 +1631,8 @@ __metadata: "@celo/base": "npm:^6.1.0" "@celo/celo-devchain": "npm:^7.0.0" "@celo/compliance": "npm:~1.0.23" - "@celo/connect": "npm:^6.0.1" - "@celo/contractkit": "npm:^8.2.0" + "@celo/connect": "npm:^6.0.2" + "@celo/contractkit": "npm:^8.3.0" "@celo/cryptographic-utils": "npm:^5.1.0" "@celo/dev-utils": "npm:0.0.5" "@celo/explorer": "npm:^5.0.12" @@ -1714,7 +1714,7 @@ __metadata: languageName: node linkType: hard -"@celo/connect@npm:^6.0.1, @celo/connect@workspace:packages/sdk/connect": +"@celo/connect@npm:^6.0.1, @celo/connect@npm:^6.0.2, @celo/connect@workspace:packages/sdk/connect": version: 0.0.0-use.local resolution: "@celo/connect@workspace:packages/sdk/connect" dependencies: @@ -1760,7 +1760,7 @@ __metadata: languageName: node linkType: hard -"@celo/contractkit@npm:^8.1.1, @celo/contractkit@npm:^8.2.0, @celo/contractkit@workspace:packages/sdk/contractkit": +"@celo/contractkit@npm:^8.1.1, @celo/contractkit@npm:^8.3.0, @celo/contractkit@workspace:packages/sdk/contractkit": version: 0.0.0-use.local resolution: "@celo/contractkit@workspace:packages/sdk/contractkit" dependencies: @@ -1768,7 +1768,7 @@ __metadata: "@celo/abis-12": "npm:@celo/abis@12.0.0-canary.35" "@celo/base": "npm:^6.1.0" "@celo/celo-devchain": "npm:^7.0.0" - "@celo/connect": "npm:^6.0.1" + "@celo/connect": "npm:^6.0.2" "@celo/dev-utils": "npm:0.0.5" "@celo/odis-identifiers": "npm:^1.0.1" "@celo/typescript": "workspace:^"