diff --git a/packages/account/CHANGELOG.md b/packages/account/CHANGELOG.md index e69de29bb..d40f586f1 100644 --- a/packages/account/CHANGELOG.md +++ b/packages/account/CHANGELOG.md @@ -0,0 +1,19 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 3.0.0-alpha.0 (2023-07-12) + + +### Bug Fixes + +* estimation without bundler ([5e49473](https://github.com/bcnmy/biconomy-client-sdk/commit/5e49473e7745c2e87e241731ef8ca1f65ee90388)) +* unshift error for batch ([4d090e8](https://github.com/bcnmy/biconomy-client-sdk/commit/4d090e8fbc7e7bcc03805d8dd28c738d5c95dae7)) + + +### Features + +* get fee quote or data method in biconomy paymaster ([47748a6](https://github.com/bcnmy/biconomy-client-sdk/commit/47748a6384c2b74e1d9be4d570554098e1ac02e7)) +* update responses to support calculateGasLimits flag + update interfaces ([55bbd38](https://github.com/bcnmy/biconomy-client-sdk/commit/55bbd38b4ef8acaf8da1d52e36846557b134aba4)) +* using hybrid paymaster interface ([5fc56a7](https://github.com/bcnmy/biconomy-client-sdk/commit/5fc56a7db2de4a3f4bb87cd4d75584e79010b206)) diff --git a/packages/account/package.json b/packages/account/package.json index 3965b6af0..e2a949355 100644 --- a/packages/account/package.json +++ b/packages/account/package.json @@ -1,14 +1,14 @@ { "name": "@biconomy/account", - "version": "2.0.0", + "version": "3.0.0-alpha.0", "description": "This package provides apis for ERC-4337 based smart account implementations", "main": "./dist/src/index.js", "typings": "./dist/src/index.d.ts", "keywords": [ "Ethereum", - "Smart Account", + "Smart Account", "ERC-4337", - "Account Abstraction", + "Account Abstraction", "Smart Contract Wallets", "Biconomy", "SDK" @@ -35,10 +35,10 @@ "access": "public" }, "devDependencies": { - "@biconomy/core-types": "*", - "@biconomy/common": "*", - "@biconomy/bundler": "*", - "@biconomy/paymaster": "*", - "@biconomy/node-client": "*" + "@biconomy/bundler": "3.0.0-alpha.0", + "@biconomy/common": "3.0.0-alpha.0", + "@biconomy/core-types": "3.0.0-alpha.0", + "@biconomy/node-client": "3.0.0-alpha.0", + "@biconomy/paymaster": "3.0.0-alpha.0" } } diff --git a/packages/bundler/CHANGELOG.md b/packages/bundler/CHANGELOG.md index e69de29bb..77622ba2e 100644 --- a/packages/bundler/CHANGELOG.md +++ b/packages/bundler/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 3.0.0-alpha.0 (2023-07-12) + + +### Bug Fixes + +* linting ([563befe](https://github.com/bcnmy/biconomy-client-sdk/commit/563befedcc37aee4c531e01809b47e559a33f526)) diff --git a/packages/bundler/package.json b/packages/bundler/package.json index cfba9d478..b24e820f8 100644 --- a/packages/bundler/package.json +++ b/packages/bundler/package.json @@ -1,14 +1,14 @@ { "name": "@biconomy/bundler", - "version": "2.0.0", + "version": "3.0.0-alpha.0", "description": "Biconomy Bundler package to interact with any bundler node as per ERC4337 standard", "main": "./dist/src/index.js", "typings": "./dist/src/index.d.ts", "keywords": [ "Ethereum", - "Bundler", - "Relayer", - "ERC4337", + "Bundler", + "Relayer", + "ERC4337", "Gasless Transaction", "Biconomy", "SDK" @@ -38,7 +38,7 @@ "access": "public" }, "devDependencies": { - "@biconomy/core-types": "*", - "@biconomy/common": "*" + "@biconomy/common": "3.0.0-alpha.0", + "@biconomy/core-types": "3.0.0-alpha.0" } } diff --git a/packages/common/CHANGELOG.md b/packages/common/CHANGELOG.md index 9f7dfea1c..503721bba 100644 --- a/packages/common/CHANGELOG.md +++ b/packages/common/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 3.0.0-alpha.0 (2023-07-12) + + +### Bug Fixes + +* comment out hardcoded gas limit in any case + fix value for estimate smart-account deployment + dev notes ([df48ec3](https://github.com/bcnmy/biconomy-client-sdk/commit/df48ec3c04cf44a8f64eb302217655076c6304a4)) +* linting ([563befe](https://github.com/bcnmy/biconomy-client-sdk/commit/563befedcc37aee4c531e01809b47e559a33f526)) +* linting ([d2f5f1a](https://github.com/bcnmy/biconomy-client-sdk/commit/d2f5f1afadc2a561c4ef01c0821a25b9d7fe776e)) + + + ## 2.0.2 (2023-06-10) diff --git a/packages/common/package.json b/packages/common/package.json index d3b1feade..55c0fcc5d 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/common", - "version": "2.0.2", + "version": "3.0.0-alpha.0", "description": "common utils to be used for aa transactions", "keywords": [ "utils" @@ -39,8 +39,8 @@ }, "dependencies": { "@account-abstraction/contracts": "^0.6.0", - "@biconomy/core-types": "^2.0.0", - "@biconomy/node-client": "^2.0.0", + "@biconomy/core-types": "3.0.0-alpha.0", + "@biconomy/node-client": "3.0.0-alpha.0", "@ethersproject/abi": "^5.7.0", "@ethersproject/bytes": "^5.7.0", "@ethersproject/providers": "^5.7.0", diff --git a/packages/core-types/CHANGELOG.md b/packages/core-types/CHANGELOG.md index e96cf77cd..1797de81d 100644 --- a/packages/core-types/CHANGELOG.md +++ b/packages/core-types/CHANGELOG.md @@ -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. +## 3.0.0-alpha.0 (2023-07-12) + + +### Bug Fixes + +* bundler sync changes ([eb9b30d](https://github.com/bcnmy/biconomy-client-sdk/commit/eb9b30d786820b4c9a6a18c72481d0ed3782a22e)) + + ## 2.0.2 (2023-06-10) * smart account state types to have factory address added diff --git a/packages/core-types/package.json b/packages/core-types/package.json index 91cad1562..4a6f59e1e 100644 --- a/packages/core-types/package.json +++ b/packages/core-types/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/core-types", - "version": "2.0.2", + "version": "3.0.0-alpha.0", "description": "Biconomy Client SDK types", "main": "./dist/src/index.js", "typings": "./dist/src/index.d.ts", diff --git a/packages/node-client/CHANGELOG.md b/packages/node-client/CHANGELOG.md index e9f149fae..117bc1d80 100644 --- a/packages/node-client/CHANGELOG.md +++ b/packages/node-client/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 3.0.0-alpha.0 (2023-07-12) + + + + + ## 2.0.1 (2023-05-18) diff --git a/packages/node-client/package.json b/packages/node-client/package.json index 27b1e0e6f..59d72a9db 100644 --- a/packages/node-client/package.json +++ b/packages/node-client/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/node-client", - "version": "2.0.1", + "version": "3.0.0-alpha.0", "description": "Node Client that comminucates with indexer service to fetch necessary details for the Smart Account", "main": "./dist/src/index.js", "typings": "./dist/src/index.d.ts", @@ -28,7 +28,7 @@ "README.md" ], "devDependencies": { - "@biconomy/core-types": "*", + "@biconomy/core-types": "3.0.0-alpha.0", "@nomiclabs/hardhat-ethers": "^2.1.0", "@nomiclabs/hardhat-waffle": "^2.0.3", "@nomiclabs/hardhat-web3": "^2.0.0", @@ -69,7 +69,7 @@ "access": "public" }, "dependencies": { - "@biconomy/core-types": "^2.0.2", + "@biconomy/core-types": "3.0.0-alpha.0", "@ethersproject/abstract-signer": "^5.6.0", "@nomiclabs/hardhat-ethers": "^2.1.0", "node-fetch": "^2.6.6" diff --git a/packages/particle-auth/CHANGELOG.md b/packages/particle-auth/CHANGELOG.md index eb8bbbe82..cf53fd2d4 100644 --- a/packages/particle-auth/CHANGELOG.md +++ b/packages/particle-auth/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 3.0.0-alpha.0 (2023-07-12) + + + + + ## 2.0.1 (2023-06-10) diff --git a/packages/particle-auth/package.json b/packages/particle-auth/package.json index 897e44d9e..b49036211 100644 --- a/packages/particle-auth/package.json +++ b/packages/particle-auth/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/particle-auth", - "version": "2.0.1", + "version": "3.0.0-alpha.0", "description": "Particle auth for Biconomy SDK", "main": "./dist/src/index.js", "typings": "./dist/src/index.d.ts", diff --git a/packages/paymaster/CHANGELOG.md b/packages/paymaster/CHANGELOG.md index e69de29bb..63a8279f9 100644 --- a/packages/paymaster/CHANGELOG.md +++ b/packages/paymaster/CHANGELOG.md @@ -0,0 +1,20 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +## 3.0.0-alpha.0 (2023-07-12) + + +### Bug Fixes + +* linting ([563befe](https://github.com/bcnmy/biconomy-client-sdk/commit/563befedcc37aee4c531e01809b47e559a33f526)) +* linting ([d2f5f1a](https://github.com/bcnmy/biconomy-client-sdk/commit/d2f5f1afadc2a561c4ef01c0821a25b9d7fe776e)) + + +### Features + +* covert gas limits to numbers for making pm service call ([b1fe96f](https://github.com/bcnmy/biconomy-client-sdk/commit/b1fe96f7a312ceaf7aa689939b7c69718c710dd1)) +* get fee quote or data method in biconomy paymaster ([47748a6](https://github.com/bcnmy/biconomy-client-sdk/commit/47748a6384c2b74e1d9be4d570554098e1ac02e7)) +* update responses to support calculateGasLimits flag + update interfaces ([55bbd38](https://github.com/bcnmy/biconomy-client-sdk/commit/55bbd38b4ef8acaf8da1d52e36846557b134aba4)) +* using hybrid paymaster interface ([5fc56a7](https://github.com/bcnmy/biconomy-client-sdk/commit/5fc56a7db2de4a3f4bb87cd4d75584e79010b206)) diff --git a/packages/paymaster/package.json b/packages/paymaster/package.json index c6206872e..2f680d2d1 100644 --- a/packages/paymaster/package.json +++ b/packages/paymaster/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/paymaster", - "version": "2.0.0", + "version": "3.0.0-alpha.0", "description": "Biconomy Paymaster to interact with Paymaster Services that interacts with ( veriying and token ) paymasters", "main": "./dist/src/index.js", "typings": "./dist/src/index.d.ts", @@ -8,7 +8,7 @@ "Ethereum", "Veriying Paymaster", "Token Paymaster", - "ERC4337", + "ERC4337", "Gasless Transaction", "Biconomy", "SDK" @@ -38,7 +38,7 @@ "access": "public" }, "devDependencies": { - "@biconomy/core-types": "*", - "@biconomy/common": "*" + "@biconomy/common": "3.0.0-alpha.0", + "@biconomy/core-types": "3.0.0-alpha.0" } } diff --git a/packages/web3-auth-native/CHANGELOG.md b/packages/web3-auth-native/CHANGELOG.md index 21d225cf9..4f5956532 100644 --- a/packages/web3-auth-native/CHANGELOG.md +++ b/packages/web3-auth-native/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 3.0.0-alpha.0 (2023-07-12) + + +### Bug Fixes + +* clean web3-auth-native ([8cd1fab](https://github.com/bcnmy/biconomy-client-sdk/commit/8cd1fab6bc4864b87b0ef33ce505c2e4e28b63d4)) +* linting issue in social login ([334276b](https://github.com/bcnmy/biconomy-client-sdk/commit/334276b70e66bac576b83c1910a9890a8a451b42)) + + + + ## 2.0.0 (2023-04-07) diff --git a/packages/web3-auth-native/package.json b/packages/web3-auth-native/package.json index 679789c0e..e42fd59d9 100644 --- a/packages/web3-auth-native/package.json +++ b/packages/web3-auth-native/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/web3-auth-native", - "version": "2.0.0", + "version": "3.0.0-alpha.0", "description": "web3-auth expo react-native for biconomy sdk.", "main": "dist/web3AuthNative.cjs.js", "module": "dist/web3AuthNative.esm.js", @@ -33,7 +33,7 @@ "url": "git+https://github.com/bcnmy/biconomy-client-sdk.git" }, "dependencies": { - "@biconomy/node-client": "^2.0.0", + "@biconomy/node-client": "3.0.0-alpha.0", "@toruslabs/openlogin-jrpc": "^2.9.0", "@toruslabs/openlogin-utils": "^2.1.0", "base64url": "^3.0.1", @@ -43,7 +43,7 @@ }, "peerDependencies": { "@babel/runtime": "^7.x", - "react-native": "*" + "react-native": "3.0.0-alpha.0" }, "devDependencies": { "@babel/runtime": "^7.20.1", diff --git a/packages/web3-auth/CHANGELOG.md b/packages/web3-auth/CHANGELOG.md index 851da4286..d540ea24c 100644 --- a/packages/web3-auth/CHANGELOG.md +++ b/packages/web3-auth/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 3.0.0-alpha.0 (2023-07-12) + + + + + ## 2.0.0 (2023-04-07) diff --git a/packages/web3-auth/package.json b/packages/web3-auth/package.json index 0913243fa..8de676ffe 100644 --- a/packages/web3-auth/package.json +++ b/packages/web3-auth/package.json @@ -1,6 +1,6 @@ { "name": "@biconomy/web3-auth", - "version": "2.0.0", + "version": "3.0.0-alpha.0", "description": "web3-auth for biconomy sdk", "main": "./dist/src/index.js", "typings": "./dist/src/index.d.ts", @@ -36,7 +36,7 @@ "access": "public" }, "dependencies": { - "@biconomy/node-client": "^2.0.0", + "@biconomy/node-client": "3.0.0-alpha.0", "@walletconnect/qrcode-modal": "^1.8.0", "@web3auth/base": "^3.0.0", "@web3auth/core": "^3.0.0", @@ -49,7 +49,7 @@ "react-dom": "^18.2.0" }, "devDependencies": { - "@biconomy/node-client": "*", + "@biconomy/node-client": "3.0.0-alpha.0", "@types/react": "^18.0.15", "@types/react-dom": "^18.0.6", "path": "^0.12.7",