Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
luu-alex committed Nov 6, 2024
1 parent 07993c2 commit aa516b9
Show file tree
Hide file tree
Showing 18 changed files with 115 additions and 39 deletions.
26 changes: 25 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2768,14 +2768,38 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- fix `padRight` validation failure on large `uint` (#7265)

## [Unreleased]
## [4.15.0]

### Added

#### web3-eth

- `createNewPendingTransactionFilter` , `createNewFilter` , `createNewBlockFilter` , `uninstallFilter` , `getFilterChanges` and `getFilterLogs` are exported from `Web3Eth` and `filtering_rpc_method_wrappers` (#7353)

#### web3-eth-abi

- added `decodeFunctionCall` and `decodeFunctionReturn`. (#7345)

#### web3-eth-accounts

- `hashMessage` now has a new optional param `skipPrefix` with a default value of `false`. A new function `signRaw` was added to sign a message without prefix. (#7346)

#### web3-rpc-providers

- PublicNodeProvider was added (#7322)

#### web3-types

- `FilterParams` type added (#7353)

#### web3-account-abstraction

- RC release

### Fixed

#### web3-eth-contracts

- Fix Contract methods input param type any[] (#7340)

## [Unreleased]
6 changes: 6 additions & 0 deletions packages/web3-account-abstraction/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
-->

## [0.1.0.rc.0]

### Added

- RC release

## [Unreleased]
10 changes: 5 additions & 5 deletions packages/web3-account-abstraction/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@
"typescript": "^4.7.4"
},
"dependencies": {
"web3-core": "^4.6.0",
"web3-types": "^1.8.0",
"web3-eth-abi": "^4.1.3",
"web3-utils": "^4.0.7",
"web3-validator": "^2.0.3"
"web3-core": "^4.7.0",
"web3-eth-abi": "^4.4.0",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-validator": "^2.0.6"
}
}
4 changes: 3 additions & 1 deletion packages/web3-eth-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,10 @@ Documentation:

- `decodeLog` , `decodeParametersWith` , `decodeParameters` and `decodeParameters` now accepts first immutable param as well (#7288)

## [Unreleased]
## [4.4.0]

### Added

- added `decodeFunctionCall` and `decodeFunctionReturn`. (#7345)

## [Unreleased]
4 changes: 2 additions & 2 deletions packages/web3-eth-abi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-abi",
"version": "4.3.0",
"version": "4.4.0",
"description": "Web3 module encode and decode EVM in/output.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -44,7 +44,7 @@
"dependencies": {
"abitype": "0.7.1",
"web3-errors": "^1.3.0",
"web3-types": "^1.8.1",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-validator": "^2.0.6"
},
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-eth-accounts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,10 @@ Documentation:

- Revert `TransactionFactory.registerTransactionType` if there is a version mistatch between `web3-eth` and `web3-eth-accounts` and fix nextjs problem. (#7216)

## [Unreleased]
## [4.3.0]

### Added

- `hashMessage` now has a new optional param `skipPrefix` with a default value of `false`. A new function `signRaw` was added to sign a message without prefix. (#7346)

## [Unreleased]
6 changes: 3 additions & 3 deletions packages/web3-eth-accounts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-accounts",
"version": "4.2.1",
"version": "4.3.0",
"description": "Package for managing Ethereum accounts and signing",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -62,8 +62,8 @@
"crc-32": "^1.2.2",
"ethereum-cryptography": "^2.0.0",
"web3-errors": "^1.3.0",
"web3-types": "^1.7.0",
"web3-utils": "^4.3.1",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-validator": "^2.0.6"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,4 +404,10 @@ Documentation:
- The returnred properties of `contract.deploy(...)` are structured with a newly created class named `DeployerMethodClass`. (#7197)
- Add a missed accepted type for the `abi` parameter, at `dataInputEncodeMethodHelper` and `getSendTxParams`. (#7197)

## [4.7.1]

### Fixed

- Fix Contract methods input param type any[] (#7340)

## [Unreleased]
14 changes: 7 additions & 7 deletions packages/web3-eth-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-contract",
"version": "4.7.0",
"version": "4.7.1",
"description": "Web3 module to interact with Ethereum smart contracts.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -46,12 +46,12 @@
},
"dependencies": {
"@ethereumjs/rlp": "^5.0.2",
"web3-core": "^4.5.1",
"web3-core": "^4.7.0",
"web3-errors": "^1.3.0",
"web3-eth": "^4.8.2",
"web3-eth-abi": "^4.2.3",
"web3-types": "^1.7.0",
"web3-utils": "^4.3.1",
"web3-eth": "^4.11.0",
"web3-eth-abi": "^4.4.0",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-validator": "^2.0.6"
},
"devDependencies": {
Expand All @@ -69,7 +69,7 @@
"prettier": "^2.7.1",
"ts-jest": "^29.1.1",
"typescript": "^4.7.4",
"web3-eth-accounts": "^4.2.0",
"web3-eth-accounts": "^4.3.0",
"web3-providers-ws": "^4.0.8"
}
}
4 changes: 3 additions & 1 deletion packages/web3-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -289,8 +289,10 @@ Documentation:

- `populateGasPrice` function now checks `Web3Context.config.ignoreGasPricing`. If `ignoreGasPricing` is true, gasPrice will not be estimated (#7320)

## [Unreleased]
## [4.11.0]

### Added

- `createNewPendingTransactionFilter` , `createNewFilter` , `createNewBlockFilter` , `uninstallFilter` , `getFilterChanges` and `getFilterLogs` are exported from `Web3Eth` and `filtering_rpc_method_wrappers` (#7353)

## [Unreleased]
8 changes: 4 additions & 4 deletions packages/web3-eth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth",
"version": "4.10.0",
"version": "4.11.0",
"description": "Web3 module to interact with the Ethereum blockchain and smart contracts.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -65,12 +65,12 @@
"setimmediate": "^1.0.5",
"web3-core": "^4.7.0",
"web3-errors": "^1.3.0",
"web3-eth-abi": "^4.3.0",
"web3-eth-accounts": "^4.2.1",
"web3-eth-abi": "^4.4.0",
"web3-eth-accounts": "^4.3.0",
"web3-net": "^4.1.0",
"web3-providers-ws": "^4.0.8",
"web3-rpc-methods": "^1.3.0",
"web3-types": "^1.8.1",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-validator": "^2.0.6"
}
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-rpc-providers/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated rate limit error of QuickNode provider for HTTP transport
- Added optional `HttpProviderOptions | SocketOptions` in `Web3ExternalProvider` and `QuickNodeProvider` for provider configs

## [Unreleased]
## [1.0.0-rc.3]

### Added

- PublicNodeProvider was added (#7322)

## [Unreleased]
6 changes: 3 additions & 3 deletions packages/web3-rpc-providers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-rpc-providers",
"version": "1.0.0-rc.2",
"version": "1.0.0-rc.3",
"description": "Web3 Providers package",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -60,8 +60,8 @@
"web3-errors": "^1.3.0",
"web3-providers-http": "^4.2.0",
"web3-providers-ws": "^4.0.8",
"web3-types": "^1.7.0",
"web3-utils": "^4.3.1",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-validator": "^2.0.6"
}
}
4 changes: 3 additions & 1 deletion packages/web3-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,10 @@ Documentation:

- update the type for `baseFeePerGas` at `web3.eth.getFeeHistory` to be a number. (#7291)

## [Unreleased]
## [1.9.0]

### Added

- `FilterParams` type added (#7353)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-types",
"version": "1.8.1",
"version": "1.9.0",
"description": "Provide the common data structures and interfaces for web3 modules.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down
30 changes: 30 additions & 0 deletions packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -530,4 +530,34 @@ Documentation:

- fix `padRight` validation failure on large `uint` (#7265)

## [4.15.0]

### Added

#### web3-eth

- `createNewPendingTransactionFilter` , `createNewFilter` , `createNewBlockFilter` , `uninstallFilter` , `getFilterChanges` and `getFilterLogs` are exported from `Web3Eth` and `filtering_rpc_method_wrappers` (#7353)

#### web3-eth-abi

- added `decodeFunctionCall` and `decodeFunctionReturn`. (#7345)

#### web3-eth-accounts

- `hashMessage` now has a new optional param `skipPrefix` with a default value of `false`. A new function `signRaw` was added to sign a message without prefix. (#7346)

#### web3-rpc-providers

- PublicNodeProvider was added (#7322)

#### web3-types

- `FilterParams` type added (#7353)

### Fixed

#### web3-eth-contracts

- Fix Contract methods input param type any[] (#7340)

## [Unreleased]
14 changes: 7 additions & 7 deletions packages/web3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3",
"version": "4.14.0",
"version": "4.15.0",
"description": "Ethereum JavaScript API",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -88,19 +88,19 @@
"dependencies": {
"web3-core": "^4.7.0",
"web3-errors": "^1.3.0",
"web3-eth": "^4.10.0",
"web3-eth-abi": "^4.3.0",
"web3-eth-accounts": "^4.2.1",
"web3-eth-contract": "^4.7.0",
"web3-eth": "^4.11.0",
"web3-eth-abi": "^4.4.0",
"web3-eth-accounts": "^4.3.0",
"web3-eth-contract": "^4.7.1",
"web3-eth-ens": "^4.4.0",
"web3-eth-iban": "^4.0.7",
"web3-eth-personal": "^4.1.0",
"web3-net": "^4.1.0",
"web3-providers-http": "^4.2.0",
"web3-providers-ws": "^4.0.8",
"web3-rpc-methods": "^1.3.0",
"web3-rpc-providers": "^1.0.0-rc.2",
"web3-types": "^1.8.1",
"web3-rpc-providers": "^1.0.0-rc.3",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-validator": "^2.0.6"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/web3/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.14.0' };
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.15.0' };

0 comments on commit aa516b9

Please sign in to comment.