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

Commit 1b9df07

Browse files
committed
bump versions
1 parent e5efe49 commit 1b9df07

File tree

8 files changed

+50
-12
lines changed

8 files changed

+50
-12
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2631,4 +2631,21 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
26312631

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

2634+
## [4.11.1]
2635+
2636+
### Fixed
2637+
2638+
#### web3-errors
2639+
2640+
- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)
2641+
2642+
#### web3-eth
2643+
2644+
- Adds transaction property to be an empty list rather than undefined when no transactions are included in the block (#7151)
2645+
- Change method `getTransactionReceipt` to not be casted as `TransactionReceipt` to give proper return type (#7159)
2646+
2647+
#### web3
2648+
2649+
- Remove redundant constructor of contractBuilder (#7150)
2650+
26342651
## [Unreleased]

packages/web3-errors/CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,10 @@ Documentation:
172172

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

175-
## [Unreleased]
175+
## [1.2.1]
176176

177177
### Fixed
178178

179-
- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)
179+
- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)
180+
181+
## [Unreleased]

packages/web3-errors/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-errors",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "This package has web3 error classes",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -41,7 +41,7 @@
4141
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
4242
},
4343
"dependencies": {
44-
"web3-types": "^1.6.0"
44+
"web3-types": "^1.7.0"
4545
},
4646
"devDependencies": {
4747
"@types/jest": "^28.1.6",

packages/web3-eth/CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,11 @@ Documentation:
262262

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

265-
## [Unreleased]
265+
## [4.8.2]
266266

267267
### Fixed
268268

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

packages/web3-eth/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth",
3-
"version": "4.8.1",
3+
"version": "4.8.2",
44
"description": "Web3 module to interact with the Ethereum blockchain and smart contracts.",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -64,7 +64,7 @@
6464
"dependencies": {
6565
"setimmediate": "^1.0.5",
6666
"web3-core": "^4.5.0",
67-
"web3-errors": "^1.2.0",
67+
"web3-errors": "^1.2.1",
6868
"web3-eth-abi": "^4.2.3",
6969
"web3-eth-accounts": "^4.1.3",
7070
"web3-net": "^4.1.0",

packages/web3/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -419,4 +419,21 @@ Documentation:
419419

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

422+
## [4.11.1]
423+
424+
### Fixed
425+
426+
#### web3-errors
427+
428+
- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)
429+
430+
#### web3-eth
431+
432+
- Adds transaction property to be an empty list rather than undefined when no transactions are included in the block (#7151)
433+
- Change method `getTransactionReceipt` to not be casted as `TransactionReceipt` to give proper return type (#7159)
434+
435+
#### web3
436+
437+
- Remove redundant constructor of contractBuilder (#7150)
438+
422439
## [Unreleased]

packages/web3/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3",
3-
"version": "4.11.0",
3+
"version": "4.11.1",
44
"description": "Ethereum JavaScript API",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -87,8 +87,8 @@
8787
},
8888
"dependencies": {
8989
"web3-core": "^4.5.0",
90-
"web3-errors": "^1.2.0",
91-
"web3-eth": "^4.8.1",
90+
"web3-errors": "^1.2.1",
91+
"web3-eth": "^4.8.2",
9292
"web3-eth-abi": "^4.2.3",
9393
"web3-eth-accounts": "^4.1.3",
9494
"web3-eth-contract": "^4.6.0",

packages/web3/src/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.11.0' };
1+
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.11.1' };

0 commit comments

Comments
 (0)