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

Commit 16252f9

Browse files
author
Alex
authored
release v4.10.0 (#7096)
* version bump and changelog updates * change rpc-providers version to rc * update changelog
1 parent 7f8e504 commit 16252f9

File tree

16 files changed

+207
-42
lines changed

16 files changed

+207
-42
lines changed

CHANGELOG.md

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2526,4 +2526,41 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
25262526

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

2529-
## [Unreleased]
2529+
## [4.10.0]
2530+
2531+
### Added
2532+
2533+
#### web3
2534+
2535+
- Now when existing packages are added in web3, will be avalible for plugins via context. (#7088)
2536+
2537+
#### web3-core
2538+
2539+
- Now when existing packages are added in web3, will be avalible for plugins via context. (#7088)
2540+
2541+
#### web3-eth
2542+
2543+
- `sendTransaction` in `rpc_method_wrappers` accepts optional param of `TransactionMiddleware` (#7088)
2544+
- WebEth has `setTransactionMiddleware` and `getTransactionMiddleware` for automatically passing to `sentTransaction` (#7088)
2545+
2546+
#### web3-eth-ens
2547+
2548+
- `getText` now supports first param Address
2549+
- `getName` has optional second param checkInterfaceSupport
2550+
2551+
### web3-types
2552+
2553+
- Added `result` as optional `never` and `error` as optional `never in type `JsonRpcNotification` (#7091)
2554+
- Added `JsonRpcNotfication` as a union type in `JsonRpcResponse` (#7091)
2555+
2556+
### web3-rpc-providers
2557+
2558+
- RC release
2559+
2560+
### Fixed
2561+
2562+
#### web3-eth-ens
2563+
2564+
- `getName` reverse resolution
2565+
2566+
## [Unreleased]

packages/web3-core/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,10 @@ Documentation:
221221

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

224-
## [Unreleased]
224+
## [4.5.0]
225225

226226
### Added
227227

228-
- Now when existing packages are added in web3, will be avalible for plugins via context. (#7088)
228+
- Now when existing packages are added in web3, will be avalible for plugins via context. (#7088)
229+
230+
## [Unreleased]

packages/web3-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core",
3-
"version": "4.4.0",
3+
"version": "4.5.0",
44
"description": "Web3 core tools for sub-packages. This is an internal package.",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -47,7 +47,7 @@
4747
"web3-eth-iban": "^4.0.7",
4848
"web3-providers-http": "^4.1.0",
4949
"web3-providers-ws": "^4.0.7",
50-
"web3-types": "^1.6.0",
50+
"web3-types": "^1.7.0",
5151
"web3-utils": "^4.3.0",
5252
"web3-validator": "^2.0.6"
5353
},

packages/web3-eth-ens/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Documentation:
159159

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

162-
## [Unreleased]
162+
## [4.4.0]
163163

164164
### Added
165165

@@ -168,4 +168,6 @@ Documentation:
168168

169169
### Fixed
170170

171-
- `getName` reverse resolution
171+
- `getName` reverse resolution
172+
173+
## [Unreleased]

packages/web3-eth-ens/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth-ens",
3-
"version": "4.3.0",
3+
"version": "4.4.0",
44
"description": "This package has ENS functions for interacting with Ethereum Name Service.",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -59,12 +59,12 @@
5959
},
6060
"dependencies": {
6161
"@adraffy/ens-normalize": "^1.8.8",
62-
"web3-core": "^4.4.0",
62+
"web3-core": "^4.5.0",
6363
"web3-errors": "^1.2.0",
64-
"web3-eth": "^4.7.0",
64+
"web3-eth": "^4.8.0",
6565
"web3-eth-contract": "^4.5.0",
6666
"web3-net": "^4.1.0",
67-
"web3-types": "^1.6.0",
67+
"web3-types": "^1.7.0",
6868
"web3-utils": "^4.3.0",
6969
"web3-validator": "^2.0.6"
7070
}

packages/web3-eth/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,12 @@ Documentation:
248248

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

251-
## [Unreleased]
251+
## [4.8.0]
252252

253253
### Added
254254

255255
- `sendTransaction` in `rpc_method_wrappers` accepts optional param of `TransactionMiddleware` (#7088)
256256
- WebEth has `setTransactionMiddleware` and `getTransactionMiddleware` for automatically passing to `sentTransaction` (#7088)
257-
- `TransactionMiddleware` and `TransactionMiddleware` data types are exported (#7088)
257+
- `TransactionMiddleware` and `TransactionMiddleware` data types are exported (#7088)
258+
259+
## [Unreleased]

packages/web3-eth/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-eth",
3-
"version": "4.7.0",
3+
"version": "4.8.0",
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",
@@ -63,14 +63,14 @@
6363
},
6464
"dependencies": {
6565
"setimmediate": "^1.0.5",
66-
"web3-core": "^4.4.0",
66+
"web3-core": "^4.5.0",
6767
"web3-errors": "^1.2.0",
6868
"web3-eth-abi": "^4.2.2",
6969
"web3-eth-accounts": "^4.1.2",
7070
"web3-net": "^4.1.0",
7171
"web3-providers-ws": "^4.0.7",
7272
"web3-rpc-methods": "^1.3.0",
73-
"web3-types": "^1.6.0",
73+
"web3-types": "^1.7.0",
7474
"web3-utils": "^4.3.0",
7575
"web3-validator": "^2.0.6"
7676
}

packages/web3-rpc-providers/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3535
3636
-->
3737

38+
## [1.0.0.rc.0]
39+
40+
#### Added
41+
42+
- RC release
43+
3844
## [Unreleased]

packages/web3-rpc-providers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-rpc-providers",
3-
"version": "0.1.0",
3+
"version": "1.0.0-rc.0",
44
"description": "Web3 Providers package",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -58,7 +58,7 @@
5858
"dependencies": {
5959
"web3-providers-http": "^4.1.0",
6060
"web3-providers-ws": "^4.0.7",
61-
"web3-types": "^1.6.0",
62-
"web3-utils": "^4.2.3"
61+
"web3-types": "^1.7.0",
62+
"web3-utils": "^4.3.0"
6363
}
6464
}

packages/web3-types/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,12 @@ Documentation:
195195

196196
- Added `signature` to type `AbiFunctionFragment` (#6922)
197197
- update type `Withdrawals`, `block` and `BlockHeaderOutput` to include properties of eip 4844, 4895, 4788 (#6933)
198+
199+
## [1.7.0]
200+
201+
### Added
202+
203+
- Added `result` as optional `never` and `error` as optional `never in type `JsonRpcNotification` (#7091)
204+
- Added `JsonRpcNotfication` as a union type in `JsonRpcResponse` (#7091)
205+
206+
## [Unreleased]

0 commit comments

Comments
 (0)