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

Commit ee5e81d

Browse files
author
luu-alex
committed
update changelog and run lerna
1 parent b3ccd5c commit ee5e81d

File tree

33 files changed

+251
-97
lines changed

33 files changed

+251
-97
lines changed

CHANGELOG.md

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2226,6 +2226,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
22262226
- Dependencies updated
22272227

22282228
## [4.2.2]
2229+
22292230
### Added
22302231

22312232
#### web3-core
@@ -2253,4 +2254,80 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
22532254

22542255
- Will populate `data` for transactions in contract for metamask provider instead of `input` (#6534)
22552256

2257+
## [4.4.0]
2258+
2259+
### Changed
2260+
2261+
#### web3-core
2262+
2263+
- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)
2264+
2265+
#### web3-eth-abi
2266+
2267+
- Dependencies updated
2268+
2269+
#### web3-eth-accounts
2270+
2271+
- Dependencies updated
2272+
2273+
#### web3-eth-contracts
2274+
2275+
- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)
2276+
2277+
#### web3-eth-ens
2278+
2279+
- Dependencies updated
2280+
2281+
#### web3-eth-iban
2282+
2283+
- Dependencies updated
2284+
2285+
#### web3-eth
2286+
2287+
- Dependencies updated
2288+
2289+
#### web3-net
2290+
2291+
- Dependencies updated
2292+
2293+
#### web3-providers-http
2294+
2295+
- Dependencies updated
2296+
2297+
#### web3-providers-ipc
2298+
2299+
- Dependencies updated
2300+
2301+
#### web3-providers-ws
2302+
2303+
- Dependencies updated
2304+
2305+
### Added
2306+
2307+
#### web3-eth-accounts
2308+
2309+
- Added public function `privateKeyToPublicKey`
2310+
- Added exporting `BaseTransaction` from the package (#6493)
2311+
- Added exporting `txUtils` from the package (#6493)
2312+
2313+
#### web3-utils
2314+
2315+
- `SocketProvider` now contains public function `getPendingRequestQueueSize`, `getSentRequestsQueueSize` and `clearQueues` (#6479)
2316+
- Added `safeDisconnect` as a `SocketProvider` method to disconnect only when request queue size and send request queue size is 0 (#6479)
2317+
- Add `isContractInitOptions` method (#6555)
2318+
2319+
### Fixed
2320+
2321+
#### web3-eth-accounts
2322+
2323+
- Fixed `recover` function, `v` will be normalized to value 0,1 (#6344)
2324+
2325+
#### web3-rpc-methods
2326+
2327+
- Fix web3-types import #6590 (#6589)
2328+
2329+
#### web3-utils
2330+
2331+
- Fix unecessary array copy when pack encoding (#6553)
2332+
22562333
## [Unreleased]

packages/web3-core/CHANGELOG.md

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

202202
- Added `isMetaMaskProvider` function to check if provider is metamask (#6534)
203203

204-
## [Unreleased]
204+
## [4.4.0]
205205

206206
### Changed
207207

208-
- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)
208+
- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)
209+
210+
## [Unreleased]

packages/web3-core/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web3-core",
3-
"version": "4.3.1",
3+
"version": "4.4.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",
@@ -43,16 +43,16 @@
4343
},
4444
"dependencies": {
4545
"web3-errors": "^1.1.4",
46-
"web3-eth-iban": "^4.0.7",
4746
"web3-eth-accounts": "^4.1.0",
48-
"web3-providers-http": "^4.1.0",
49-
"web3-providers-ws": "^4.0.7",
47+
"web3-eth-iban": "^4.0.8",
48+
"web3-providers-http": "^4.1.1",
49+
"web3-providers-ws": "^4.0.8",
5050
"web3-types": "^1.3.1",
51-
"web3-utils": "^4.0.7",
51+
"web3-utils": "^4.1.0",
5252
"web3-validator": "^2.0.3"
5353
},
5454
"optionalDependencies": {
55-
"web3-providers-ipc": "^4.0.7"
55+
"web3-providers-ipc": "^4.0.8"
5656
},
5757
"devDependencies": {
5858
"@types/jest": "^28.1.6",

packages/web3-eth-abi/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,4 +154,10 @@ Documentation:
154154

155155
- Bug fix of `ERR_UNSUPPORTED_DIR_IMPORT` in ABI (#6535)
156156

157+
## [4.1.5]
158+
159+
### Changed
160+
161+
- Dependencies updated
162+
157163
## [Unreleased]

packages/web3-eth-abi/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@
4343
},
4444
"dependencies": {
4545
"abitype": "0.7.1",
46-
"web3-errors": "^1.1.3",
47-
"web3-types": "^1.3.0",
48-
"web3-utils": "^4.0.7",
46+
"web3-errors": "^1.1.4",
47+
"web3-types": "^1.3.1",
48+
"web3-utils": "^4.1.0",
4949
"web3-validator": "^2.0.3"
5050
},
5151
"devDependencies": {

packages/web3-eth-accounts/CHANGELOG.md

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

150150
- Fixed `recover` function, `v` will be normalized to value 0,1 (#6344)
151151

152+
### Changed
153+
154+
- Dependencies updated
155+
152156
## [Unreleased]

packages/web3-eth-accounts/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@
5555
"prettier": "^2.7.1",
5656
"ts-jest": "^28.0.7",
5757
"typescript": "^4.7.4",
58-
"web3-providers-ipc": "^4.0.7"
58+
"web3-providers-ipc": "^4.0.8"
5959
},
6060
"dependencies": {
6161
"@ethereumjs/rlp": "^4.0.1",
6262
"crc-32": "^1.2.2",
6363
"ethereum-cryptography": "^2.0.0",
64-
"web3-errors": "^1.1.3",
65-
"web3-types": "^1.3.0",
66-
"web3-utils": "^4.0.7",
64+
"web3-errors": "^1.1.4",
65+
"web3-types": "^1.3.1",
66+
"web3-utils": "^4.1.0",
6767
"web3-validator": "^2.0.3"
6868
}
6969
}

packages/web3-eth-contract/CHANGELOG.md

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

348348
- Will populate `data` for transactions in contract for metamask provider instead of `input` (#6534)
349349

350-
## [Unreleased]
350+
## [4.2.0]
351351

352352
### Changed
353353

354-
- `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)
354+
- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)
355+
356+
## [Unreleased]

packages/web3-eth-contract/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-contract",
3-
"version": "4.1.3",
3+
"version": "4.2.0",
44
"description": "Web3 module to interact with Ethereum smart contracts.",
55
"main": "./lib/commonjs/index.js",
66
"module": "./lib/esm/index.js",
@@ -45,12 +45,12 @@
4545
"test:e2e:firefox": "npx cypress run --headless --browser firefox --env grep='ignore',invert=true"
4646
},
4747
"dependencies": {
48-
"web3-core": "^4.3.1",
48+
"web3-core": "^4.4.0",
4949
"web3-errors": "^1.1.4",
50-
"web3-eth": "^4.3.1",
50+
"web3-eth": "^4.4.0",
5151
"web3-eth-abi": "^4.1.4",
5252
"web3-types": "^1.3.1",
53-
"web3-utils": "^4.0.7",
53+
"web3-utils": "^4.1.0",
5454
"web3-validator": "^2.0.3"
5555
},
5656
"devDependencies": {

packages/web3-eth-ens/CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,10 @@ Documentation:
141141

142142
- Dependencies updated
143143

144-
## [Unreleased]
144+
## [4.0.9]
145+
146+
### Changed
147+
148+
- Dependencies updated
149+
150+
## [Unreleased]

0 commit comments

Comments
 (0)