Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump package version and add changelog #233

Merged
merged 1 commit into from
Jul 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions packages/account/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
16 changes: 8 additions & 8 deletions packages/account/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
}
}
11 changes: 11 additions & 0 deletions packages/bundler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
12 changes: 6 additions & 6 deletions packages/bundler/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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"
}
}
11 changes: 11 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
6 changes: 3 additions & 3 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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",
Expand Down
8 changes: 8 additions & 0 deletions packages/core-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/core-types/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/node-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
6 changes: 3 additions & 3 deletions packages/node-client/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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"
Expand Down
6 changes: 6 additions & 0 deletions packages/particle-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion packages/particle-auth/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
20 changes: 20 additions & 0 deletions packages/paymaster/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
8 changes: 4 additions & 4 deletions packages/paymaster/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"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",
"keywords": [
"Ethereum",
"Veriying Paymaster",
"Token Paymaster",
"ERC4337",
"ERC4337",
"Gasless Transaction",
"Biconomy",
"SDK"
Expand Down Expand Up @@ -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"
}
}
11 changes: 11 additions & 0 deletions packages/web3-auth-native/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
6 changes: 3 additions & 3 deletions packages/web3-auth-native/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -43,7 +43,7 @@
},
"peerDependencies": {
"@babel/runtime": "^7.x",
"react-native": "*"
"react-native": "3.0.0-alpha.0"
},
"devDependencies": {
"@babel/runtime": "^7.20.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/web3-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
6 changes: 3 additions & 3 deletions packages/web3-auth/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down