Skip to content

Commit

Permalink
changelog updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevcs committed Mar 7, 2024
1 parent 9e5ac81 commit a7bbd7a
Show file tree
Hide file tree
Showing 7 changed files with 51 additions and 9 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2353,4 +2353,34 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Dependencies updated

## [4.6.0]

### Added

#### web3

- Added EIP-6963 utility function `requestEIP6963Providers` for multi provider discovery

#### web3-eth

- Added `eth.getMaxPriorityFeePerGas` method (#6748)

#### web3-eth-ens

- Added function `setAddress` in ENS and Resolver classes (#5956)

#### web3-rpc-methods

- Added `getMaxPriorityFeePerGas` method (#6748)

#### web3-types

- Type `FeeData` to be filled by `await web3.eth.calculateFeeData()` to be used with EIP-1559 transactions (#6795)

### Fixed

#### web3-utils

- replaced our eventEmitter to EventEmitter3 to support react native builds (#6253)

## [Unreleased]
6 changes: 4 additions & 2 deletions packages/web3-eth-ens/CHANGELOG.md
Expand Up @@ -141,8 +141,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.1.0]

### Added

- Added function `setAddress` in ENS and Resolver classes (#5956)
- Added function `setAddress` in ENS and Resolver classes (#5956)

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-eth/CHANGELOG.md
Expand Up @@ -219,8 +219,10 @@ Documentation:

- Catch `TransactionPollingTimeoutError` was added to send transaction events (#6623)

## [Unreleased]
## [4.5.0]

### Added

- Added `eth.getMaxPriorityFeePerGas` method (#6748)

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-rpc-methods/CHANGELOG.md
Expand Up @@ -132,8 +132,10 @@ Documentation:

- Fix web3-types import #6590 (#6589)

## [Unreleased]
## [1.2.0]

### Added

- Added `getMaxPriorityFeePerGas` method (#6748)

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-types/CHANGELOG.md
Expand Up @@ -183,8 +183,10 @@ Documentation:

- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)

## [Unreleased]
## [1.5.0]

### Added

- Type `FeeData` to be filled by `await web3.eth.calculateFeeData()` to be used with EIP-1559 transactions (#6795)

## [Unreleased]
6 changes: 4 additions & 2 deletions packages/web3-utils/CHANGELOG.md
Expand Up @@ -193,8 +193,10 @@ Documentation:

- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)

## [Unreleased]
## [4.2.1]

### Fixed

- replaced our eventEmitter to EventEmitter3 to support react native builds (#6253)
- replaced our eventEmitter to EventEmitter3 to support react native builds (#6253)

## [Unreleased]
6 changes: 4 additions & 2 deletions packages/web3/CHANGELOG.md
Expand Up @@ -191,8 +191,10 @@ Documentation:

- Dependencies updated ( details are in root changelog )

## [Unreleased]
## [4.6.0]

### Added

- Added EIP-6963 utility function `requestEIP6963Providers` for multi provider discovery
- Added EIP-6963 utility function `requestEIP6963Providers` for multi provider discovery ( other details are in root changelog )

## [Unreleased]

2 comments on commit a7bbd7a

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: a7bbd7a Previous: 6c075db Ratio
processingTx 9441 ops/sec (±3.98%) 9301 ops/sec (±4.81%) 0.99
processingContractDeploy 38141 ops/sec (±7.19%) 39129 ops/sec (±7.62%) 1.03
processingContractMethodSend 20109 ops/sec (±6.33%) 19443 ops/sec (±5.19%) 0.97
processingContractMethodCall 40246 ops/sec (±5.06%) 38971 ops/sec (±6.34%) 0.97
abiEncode 45313 ops/sec (±6.11%) 44252 ops/sec (±6.92%) 0.98
abiDecode 31942 ops/sec (±7.45%) 30419 ops/sec (±8.89%) 0.95
sign 1622 ops/sec (±2.95%) 1656 ops/sec (±4.08%) 1.02
verify 378 ops/sec (±0.50%) 373 ops/sec (±0.78%) 0.99

This comment was automatically generated by workflow using github-action-benchmark.

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: a7bbd7a Previous: 6c075db Ratio
processingTx 9328 ops/sec (±4.34%) 9301 ops/sec (±4.81%) 1.00
processingContractDeploy 42603 ops/sec (±7.01%) 39129 ops/sec (±7.62%) 0.92
processingContractMethodSend 18739 ops/sec (±9.75%) 19443 ops/sec (±5.19%) 1.04
processingContractMethodCall 40144 ops/sec (±5.81%) 38971 ops/sec (±6.34%) 0.97
abiEncode 46166 ops/sec (±6.30%) 44252 ops/sec (±6.92%) 0.96
abiDecode 32681 ops/sec (±7.63%) 30419 ops/sec (±8.89%) 0.93
sign 1698 ops/sec (±0.88%) 1656 ops/sec (±4.08%) 0.98
verify 378 ops/sec (±0.56%) 373 ops/sec (±0.78%) 0.99

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.