Skip to content

Commit

Permalink
update CHANGELOG.md files
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad-Altabba committed Jan 3, 2024
1 parent 3ffad96 commit f865290
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2287,7 +2287,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

#### web3-utils

- Fix unecessary array copy when pack encoding (#6553)
- Fix unnecessary array copy when pack encoding (#6553)

## [Unreleased]

Expand Down Expand Up @@ -2322,4 +2322,4 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

#### web3-utils

- Fix unecessary array copy when pack encoding (#6553)
- Fix unnecessary array copy when pack encoding (#6553)
4 changes: 4 additions & 0 deletions packages/web3-eth-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,7 @@ Documentation:
### Changed

- Use `AbiError` instead of `Error` for errors at web3-eth-abi (#6641).

### Fixed

- Fixed an issue with detecting Uint8Array (#6486)
1 change: 1 addition & 0 deletions packages/web3-eth-accounts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,3 +154,4 @@ Documentation:
### Fixed

- Send Transaction config used to be ignored if the passed `common` did not have a `copy()` and the `chainId` was not provided (#6663)
- Fixed an issue with detecting Uint8Array (#6486)
6 changes: 5 additions & 1 deletion packages/web3-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ Documentation:

### Fixed

- Fix unecessary array copy when pack encoding (#6553)
- Fix unnecessary array copy when pack encoding (#6553)

## [Unreleased]

### Fixed

- Fixed an issue with detecting Uint8Array (#6486)
6 changes: 5 additions & 1 deletion packages/web3-validator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,4 +156,8 @@ Documentation:
- Validator will now properly handle all valid numeric type sizes: intN / uintN where 8 < = N < = 256 and N % 8 == 0 (#6434)
- Will now throw SchemaFormatError when unsupported format is passed to `convertToZod` method (#6434)

## [Unreleased]
## [Unreleased]

### Fixed

- Fixed an issue with detecting Uint8Array (#6486)

1 comment on commit f865290

@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: f865290 Previous: 6c075db Ratio
processingTx 8931 ops/sec (±3.68%) 9301 ops/sec (±4.81%) 1.04
processingContractDeploy 39208 ops/sec (±7.52%) 39129 ops/sec (±7.62%) 1.00
processingContractMethodSend 18892 ops/sec (±8.20%) 19443 ops/sec (±5.19%) 1.03
processingContractMethodCall 38890 ops/sec (±6.49%) 38971 ops/sec (±6.34%) 1.00
abiEncode 44323 ops/sec (±6.83%) 44252 ops/sec (±6.92%) 1.00
abiDecode 32023 ops/sec (±8.03%) 30419 ops/sec (±8.89%) 0.95
sign 1644 ops/sec (±3.43%) 1656 ops/sec (±4.08%) 1.01
verify 377 ops/sec (±0.82%) 373 ops/sec (±0.78%) 0.99

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

Please sign in to comment.