Skip to content

Commit

Permalink
hotfix to 4.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
luu-alex committed Aug 23, 2024
1 parent 0b75589 commit 4de0bd1
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2689,9 +2689,12 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
- 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)

## [Unreleased]
## [4.12.1]

### Fixed

#### web3-eth-accounts

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

## [Unreleased]
3 changes: 2 additions & 1 deletion packages/web3-eth-accounts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,9 @@ Documentation:
### Fixed
- Fix `TransactionFactory.registerTransactionType` not working, if there is a version mistatch between `web3-eth` and `web3-eth-accounts` by saving `extraTxTypes` at `globals`. (#7197)

## [Unreleased]
## [4.2.1]

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

## [Unreleased]
2 changes: 1 addition & 1 deletion 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.0",
"version": "4.2.1",
"description": "Package for managing Ethereum accounts and signing",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -479,4 +479,12 @@ 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.12.1]

### Fixed

#### web3-eth-accounts

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

## [Unreleased]
4 changes: 2 additions & 2 deletions packages/web3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3",
"version": "4.12.0",
"version": "4.12.1",
"description": "Ethereum JavaScript API",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -90,7 +90,7 @@
"web3-errors": "^1.3.0",
"web3-eth": "^4.8.2",
"web3-eth-abi": "^4.2.3",
"web3-eth-accounts": "^4.2.0",
"web3-eth-accounts": "^4.2.1",
"web3-eth-contract": "^4.7.0",
"web3-eth-ens": "^4.4.0",
"web3-eth-iban": "^4.0.7",
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.12.0' };
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.12.1' };

1 comment on commit 4de0bd1

@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: 4de0bd1 Previous: 0b75589 Ratio
processingTx 22737 ops/sec (±9.17%) 21778 ops/sec (±6.02%) 0.96
processingContractDeploy 39725 ops/sec (±7.51%) 37125 ops/sec (±6.62%) 0.93
processingContractMethodSend 16364 ops/sec (±7.04%) 14868 ops/sec (±10.20%) 0.91
processingContractMethodCall 27327 ops/sec (±7.25%) 27609 ops/sec (±6.05%) 1.01
abiEncode 43881 ops/sec (±7.30%) 40195 ops/sec (±8.19%) 0.92
abiDecode 31347 ops/sec (±6.35%) 27790 ops/sec (±7.70%) 0.89
sign 1514 ops/sec (±3.34%) 1546 ops/sec (±0.83%) 1.02
verify 366 ops/sec (±0.54%) 363 ops/sec (±2.56%) 0.99

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

Please sign in to comment.