Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged

v4.11.1 #7166

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2631,4 +2631,21 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- `web3.eth.Contract` will get transaction middleware and use it, if `web3.eth` has transaction middleware. (#7138)

## [4.11.1]

### Fixed

#### web3-errors

- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)

#### web3-eth

- Adds transaction property to be an empty list rather than undefined when no transactions are included in the block (#7151)
- Change method `getTransactionReceipt` to not be casted as `TransactionReceipt` to give proper return type (#7159)

#### web3

- Remove redundant constructor of contractBuilder (#7150)

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

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

## [Unreleased]
## [1.2.1]

### Fixed

- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)
- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)

## [Unreleased]
4 changes: 2 additions & 2 deletions packages/web3-errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-errors",
"version": "1.2.0",
"version": "1.2.1",
"description": "This package has web3 error classes",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -41,7 +41,7 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"web3-types": "^1.6.0"
"web3-types": "^1.7.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
Expand Down
6 changes: 4 additions & 2 deletions packages/web3-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,9 +262,11 @@ Documentation:

- Fixed geth issue when running a new instance, transactions will index when there are no blocks created (#7098)

## [Unreleased]
## [4.8.2]

### Fixed

- Adds transaction property to be an empty list rather than undefined when no transactions are included in the block (#7151)
- Change method `getTransactionReceipt` to not be casted as `TransactionReceipt` to give proper return type (#7159)
- Change method `getTransactionReceipt` to not be casted as `TransactionReceipt` to give proper return type (#7159)

## [Unreleased]
4 changes: 2 additions & 2 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.8.1",
"version": "4.8.2",
"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 @@ -64,7 +64,7 @@
"dependencies": {
"setimmediate": "^1.0.5",
"web3-core": "^4.5.0",
"web3-errors": "^1.2.0",
"web3-errors": "^1.2.1",
"web3-eth-abi": "^4.2.3",
"web3-eth-accounts": "^4.1.3",
"web3-net": "^4.1.0",
Expand Down
17 changes: 17 additions & 0 deletions packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -419,4 +419,21 @@ Documentation:

- `web3.eth.Contract` will get transaction middleware and use it, if `web3.eth` has transaction middleware. (#7138)

## [4.11.1]

### Fixed

#### web3-errors

- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)

#### web3-eth

- Adds transaction property to be an empty list rather than undefined when no transactions are included in the block (#7151)
- Change method `getTransactionReceipt` to not be casted as `TransactionReceipt` to give proper return type (#7159)

#### web3

- Remove redundant constructor of contractBuilder (#7150)

## [Unreleased]
6 changes: 3 additions & 3 deletions packages/web3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3",
"version": "4.11.0",
"version": "4.11.1",
"description": "Ethereum JavaScript API",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -87,8 +87,8 @@
},
"dependencies": {
"web3-core": "^4.5.0",
"web3-errors": "^1.2.0",
"web3-eth": "^4.8.1",
"web3-errors": "^1.2.1",
"web3-eth": "^4.8.2",
"web3-eth-abi": "^4.2.3",
"web3-eth-accounts": "^4.1.3",
"web3-eth-contract": "^4.6.0",
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.11.0' };
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.11.1' };