Skip to content

Commit

Permalink
update changelog and revert version bump web3-types
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Luu committed May 22, 2024
1 parent 5db7f8c commit acf91ed
Show file tree
Hide file tree
Showing 25 changed files with 52 additions and 28 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2444,7 +2444,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
- Added `signature` to type `AbiFunctionFragment` (#6922)
- update type `Withdrawals`, `block` and `BlockHeaderOutput` to include properties of eip 4844, 4895, 4788 (#6933)

## [Unreleased]
## [4.9.0]

### Added

Expand Down Expand Up @@ -2525,3 +2525,5 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
#### web3-rpc-methods

- Change `estimateGas` method to add possibility pass Transaction type (#7000)

## [Unreleased]
6 changes: 4 additions & 2 deletions packages/web3-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ Documentation:

- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)

## [Unreleased]
## [4.4.0]

### Added

Expand All @@ -219,4 +219,6 @@ Documentation:

### Fixed

- Set a try catch block if processesingError fails (#7022)
- Set a try catch block if processesingError fails (#7022)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"web3-eth-iban": "^4.0.7",
"web3-providers-http": "^4.1.0",
"web3-providers-ws": "^4.0.7",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-utils": "^4.3.0",
"web3-validator": "^2.0.6"
},
Expand Down
6 changes: 4 additions & 2 deletions packages/web3-errors/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,10 @@ Documentation:

- Fixed grammar and spelling in `transactionTimeoutHint` (#6559)

## [Unreleased]
## [1.2.0]

### Added

- Added `InvalidIntegerError` error for fromWei and toWei (#7052)
- Added `InvalidIntegerError` error for fromWei and toWei (#7052)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"web3-types": "^1.7.0"
"web3-types": "^1.6.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
Expand Down
6 changes: 4 additions & 2 deletions packages/web3-eth-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.3.0]

### Changed

- Dependencies updated
- Dependencies updated

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-eth-abi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"dependencies": {
"abitype": "0.7.1",
"web3-errors": "^1.2.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-utils": "^4.3.0",
"web3-validator": "^2.0.6"
},
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-eth-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -380,8 +380,10 @@ Documentation:
- Added a console warning in case of an ambiguous call to a solidity method with parameter overloading (#6942)
- Added contract.deploy(...).decodeData(...) and contract.decodeMethodData(...) that decode data based on the ABI (#6950)

## [Unreleased]
## [4.5.0]

### Added

- `defaultReturnFormat` was added to all methods that have `ReturnType` param. (#6947)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-eth-contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"web3-errors": "^1.2.0",
"web3-eth": "^4.7.0",
"web3-eth-abi": "^4.3.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-utils": "^4.3.0",
"web3-validator": "^2.0.6"
},
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-eth-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,10 @@ Documentation:

- Added function getText and getName in ENS and resolver classes (#6914)

## [Unreleased]
## [4.3.0]

### Added

- `defaultReturnFormat` was added to all methods that have `ReturnType` param. (#6947)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-eth-ens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"web3-eth": "^4.7.0",
"web3-eth-contract": "^4.5.0",
"web3-net": "^4.1.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-utils": "^4.3.0",
"web3-validator": "^2.0.6"
}
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Documentation:
- method `getBlock` now includes properties of eip 4844, 4895, 4788 when returning block (#6933)
- update type `withdrawalsSchema`, `blockSchema` and `blockHeaderSchema` schemas to include properties of eip 4844, 4895, 4788 (#6933)

## [Unreleased]
## [4.7.0]

### Added

Expand All @@ -247,3 +247,5 @@ Documentation:
### Fixed

- Fixed issue with simple transactions, Within `checkRevertBeforeSending` if there is no data set in transaction, set gas to be `21000` (#7043)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-eth/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"web3-net": "^4.1.0",
"web3-providers-ws": "^4.0.7",
"web3-rpc-methods": "^1.3.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-utils": "^4.3.0",
"web3-validator": "^2.0.6"
}
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-net/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.1.0]

### Added

- `defaultReturnFormat` was added to all methods that have `ReturnType` param. (#6947)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-net/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"dependencies": {
"web3-core": "^4.4.0",
"web3-rpc-methods": "^1.3.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-utils": "^4.3.0"
}
}
4 changes: 3 additions & 1 deletion packages/web3-rpc-methods/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,10 @@ Documentation:

- Added `getMaxPriorityFeePerGas` method (#6748)

## [Unreleased]
## [1.3.0]

### Changed

- Change `estimateGas` method to add possibility pass Transaction type (#7000)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-rpc-methods/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
},
"dependencies": {
"web3-core": "^4.4.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-validator": "^2.0.6"
}
}
2 changes: 1 addition & 1 deletion packages/web3-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ Documentation:

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

## [Unreleased]
## [1.6.0]

### Added

Expand Down
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.7.0",
"version": "1.6.0",
"description": "Provide the common data structures and interfaces for web3 modules.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ Documentation:
- fixed toHex incorrectly hexing Uint8Arrays and Buffer (#6957)
- fixed isUint8Array not returning true for Buffer (#6957)

## [Unreleased]
## [4.3.0]

### Added

Expand All @@ -227,3 +227,5 @@ Documentation:

- `toWei` support numbers in scientific notation (#6908)
- `toWei` and `fromWei` trims according to ether unit successfuly (#7044)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"ethereum-cryptography": "^2.0.0",
"eventemitter3": "^5.0.1",
"web3-errors": "^1.2.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-validator": "^2.0.6"
}
}
4 changes: 3 additions & 1 deletion packages/web3-validator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,11 @@ Documentation:

- Multi-dimensional arrays(with a fix length) are now handled properly when parsing ABIs (#6798)

## [Unreleased]
## [2.0.6]

### Fixed

- The JSON schema conversion process now correctly assigns an id when the `abi.name` is not available, for example, in the case of public mappings. (#6981)
- `browser` entry point that was pointing to an non-existing bundle file was removed from `package.json` (#7015)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-validator/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"ethereum-cryptography": "^2.0.0",
"util": "^0.12.5",
"web3-errors": "^1.2.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"zod": "^3.21.4"
},
"devDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,10 @@ Documentation:
- Added `signature` to type `AbiFunctionFragment` (#6922)
- update type `Withdrawals`, `block` and `BlockHeaderOutput` to include properties of eip 4844, 4895, 4788 (#6933)

## [Unreleased]
## [4.9.0]

### Added

- Updated type `Web3EthInterface.accounts` to includes `privateKeyToAccount`,`privateKeyToAddress`,and `privateKeyToPublicKey` (#6762)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"web3-providers-http": "^4.1.0",
"web3-providers-ws": "^4.0.7",
"web3-rpc-methods": "^1.3.0",
"web3-types": "^1.7.0",
"web3-types": "^1.6.0",
"web3-utils": "^4.3.0",
"web3-validator": "^2.0.6"
}
Expand Down

1 comment on commit acf91ed

@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: acf91ed Previous: f4e55bd Ratio
processingTx 9213 ops/sec (±3.55%) 9157 ops/sec (±3.53%) 0.99
processingContractDeploy 38536 ops/sec (±7.20%) 39854 ops/sec (±6.49%) 1.03
processingContractMethodSend 19485 ops/sec (±6.98%) 19031 ops/sec (±8.97%) 0.98
processingContractMethodCall 40947 ops/sec (±5.12%) 37579 ops/sec (±6.24%) 0.92
abiEncode 45483 ops/sec (±6.64%) 42781 ops/sec (±6.77%) 0.94
abiDecode 30731 ops/sec (±7.58%) 29806 ops/sec (±7.94%) 0.97
sign 1593 ops/sec (±0.82%) 1522 ops/sec (±3.29%) 0.96
verify 369 ops/sec (±1.35%) 368 ops/sec (±0.73%) 1.00

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

Please sign in to comment.