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

Commit 9d65c38

Browse files
author
Alex
authored
Release/4.5.0 (#6802)
* update changelog and package.json for release * update script * update changelog * update
1 parent d8b64a8 commit 9d65c38

File tree

9 files changed

+38
-12
lines changed

9 files changed

+38
-12
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2335,4 +2335,22 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
23352335

23362336
- Fixed an issue with detecting Uint8Array (#6486)
23372337

2338+
## [4.5.0]
2339+
2340+
### Added
2341+
2342+
#### web3-utils
2343+
2344+
- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)
2345+
2346+
#### web3-types
2347+
2348+
- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)
2349+
2350+
### Changed
2351+
2352+
#### web3
2353+
2354+
- Dependencies updated
2355+
23382356
## [Unreleased]

packages/web3-types/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,10 @@ Documentation:
177177
- Interface `MetaMaskProvider` added and is part of `SupportedProviders` (#6534)
178178
- `gasPrice` was added to `Transaction1559UnsignedAPI` type. (#6539)
179179

180-
## [Unreleased]
180+
## [1.4.0]
181181

182182
### Added
183183

184-
- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)
184+
- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)
185+
186+
## [Unreleased]

packages/web3-types/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-types",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "Provide the common data structures and interfaces for web3 modules.",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",

packages/web3-utils/CHANGELOG.md

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

188188
- Fixed an issue with detecting Uint8Array (#6486)
189189

190-
## [Unreleased]
190+
## [4.2.0]
191191

192192
### Added
193193

194-
- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)
194+
- Adds missing exported type `AbiItem` from 1.x to v4 for compatabiltiy (#6678)
195+
196+
## [Unreleased]

packages/web3-utils/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "web3-utils",
33
"sideEffects": false,
4-
"version": "4.1.1",
4+
"version": "4.2.0",
55
"description": "Collection of utility functions used in web3.js.",
66
"main": "./lib/commonjs/index.js",
77
"module": "./lib/esm/index.js",
@@ -65,7 +65,7 @@
6565
"dependencies": {
6666
"ethereum-cryptography": "^2.0.0",
6767
"web3-errors": "^1.1.4",
68-
"web3-types": "^1.3.1",
68+
"web3-types": "^1.4.0",
6969
"web3-validator": "^2.0.4"
7070
}
7171
}

packages/web3/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,8 @@ Documentation:
187187

188188
- Dependencies updated ( details are in root changelog )
189189

190+
## [4.5.0]
191+
192+
- Dependencies updated ( details are in root changelog )
193+
190194
## [Unreleased]

packages/web3/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3",
3-
"version": "4.4.0",
3+
"version": "4.5.0",
44
"description": "Ethereum JavaScript API",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -99,8 +99,8 @@
9999
"web3-providers-http": "^4.1.0",
100100
"web3-providers-ws": "^4.0.7",
101101
"web3-rpc-methods": "^1.1.4",
102-
"web3-types": "^1.3.1",
103-
"web3-utils": "^4.1.1",
102+
"web3-types": "^1.4.0",
103+
"web3-utils": "^4.2.0",
104104
"web3-validator": "^2.0.4"
105105
}
106106
}

packages/web3/scripts/black_box_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ BACKEND=${ORIGARGS[0]}
1313
MODE=${ORIGARGS[1]}
1414
PROVIDER_URL=${ORIGARGS[2]}
1515

16-
SUPPORTED_BACKENDS=("geth" "infura", "hardhat")
16+
SUPPORTED_BACKENDS=("geth" "infura" "hardhat")
1717
SUPPORTED_MODE=("http" "ws")
1818

1919
if [[ ! " ${SUPPORTED_BACKENDS[*]} " =~ " ${BACKEND} " ]]; then

packages/web3/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.4.0' };
1+
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.5.0' };

0 commit comments

Comments
 (0)