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

Commit c8799b0

Browse files
committed
changelog bumps
1 parent 50a2469 commit c8799b0

File tree

20 files changed

+145
-18
lines changed

20 files changed

+145
-18
lines changed

CHANGELOG.md

Lines changed: 57 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2081,10 +2081,14 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
20812081

20822082
- Dependencies updated
20832083

2084-
## [Unreleased]
2084+
## [4.2.0]
20852085

20862086
### Added
20872087

2088+
#### web3
2089+
2090+
- Various web3 sub packages has new functions details are in root changelog
2091+
20882092
#### web3-eth
20892093

20902094
- Added `ALL_EVENTS` and `ALL_EVENTS_ABI` constants, `SendTransactionEventsBase` type, `decodeEventABI` method (#6410)
@@ -2109,10 +2113,19 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
21092113

21102114
- Fix the issue: "Uncaught TypeError: Class extends value undefined is not a constructor or null #6371". (#6398)
21112115

2116+
#### web3-errors
2117+
2118+
- Added new SchemaFormatError (#6434)
2119+
21122120
#### web3-eth
21132121

21142122
- Ensure provider.supportsSubscriptions exists before watching by subscription (#6440)
21152123
- Fixed param sent to `checkRevertBeforeSending` in `sendSignedTransaction`
2124+
- Fixed `defaultTransactionBuilder` for value issue (#6509)
2125+
2126+
#### web3-eth-abi
2127+
2128+
- Fix issue with default config with babel (and React): "TypeError: Cannot convert a BigInt value to a number #6187" (#6506)
21162129

21172130
#### web3-eth-accounts
21182131

@@ -2122,12 +2135,32 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
21222135

21232136
- Fix issue lquixada/cross-fetch#78, enabling to run web3.js in service worker (#6463)
21242137

2138+
#### web3-providers-ipc
2139+
2140+
- Fixed bug in chunks processing logic (#6496)
2141+
2142+
#### web3-providers-ws
2143+
2144+
- Fixed bug in chunks processing logic (#6496)
2145+
2146+
#### web3-utils
2147+
2148+
- Fix issue with default config with babel (and React): "TypeError: Cannot convert a BigInt value to a number #6187" (#6506)
2149+
- Fixed bug in chunks processing logic (#6496)
2150+
21252151
#### web3-validator
21262152

2127-
- Multi-dimensional arrays are now handled properly when parsing ABIs
2153+
- Multi-dimensional arrays are now handled properly when parsing ABIs (#6435)
2154+
- Fix issue with default config with babel (and React): "TypeError: Cannot convert a BigInt value to a number #6187" (#6506)
2155+
- Validator will now properly handle all valid numeric type sizes: intN / uintN where 8 <= N <= 256 and N % 8 == 0 (#6434)
2156+
- Will now throw SchemaFormatError when unsupported format is passed to `convertToZod` method (#6434)
21282157

21292158
### Changed
21302159

2160+
#### web3
2161+
2162+
- Dependencies updated
2163+
21312164
#### web3-core
21322165

21332166
- defaultTransactionType is now type 0x2 instead of 0x0 (#6282)
@@ -2142,6 +2175,28 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
21422175

21432176
- The `events` property was added to the `receipt` object (#6410)
21442177

2178+
#### web3-eth-ens
2179+
2180+
- Dependencies updated
2181+
2182+
#### web3-eth-iban
2183+
2184+
- Dependencies updated
2185+
2186+
#### web3-eth-personal
2187+
2188+
- Dependencies updated
2189+
2190+
#### web3-net
2191+
2192+
- Dependencies updated
2193+
21452194
#### web3-providers-http
21462195

21472196
- Bump cross-fetch to version 4 (#6463).
2197+
2198+
#### web3-rpc-methods
2199+
2200+
- Dependencies updated
2201+
2202+
## [Unreleased]

packages/web3-core/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ Documentation:
179179

180180
- Added to `Web3Config` property `contractDataInputFill` allowing users to have the choice using property `data`, `input` or `both` for contract methods to be sent to the RPC provider when creating contracts. (#6377) (#6400)
181181

182-
## [Unreleased]
182+
## [4.3.0]
183183

184184
### Changed
185185

@@ -190,3 +190,5 @@ Documentation:
190190
### Fixed
191191

192192
- Fix the issue: "Uncaught TypeError: Class extends value undefined is not a constructor or null #6371". (#6398)
193+
194+
## [Unreleased]

packages/web3-errors/CHANGELOG.md

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

155155
- Dependencies updated
156156

157-
## [Unreleased]
157+
## [1.1.3]
158158

159-
- Added new SchemaFormatError (#6434)
159+
### Fixed
160+
161+
- Added new SchemaFormatError (#6434)
162+
163+
## [Unreleased]

packages/web3-eth-abi/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,10 @@ Documentation:
142142

143143
- Dependencies updated
144144

145-
## [Unreleased]
145+
## [4.1.3]
146146

147147
### Fixed
148148

149149
- Fix issue with default config with babel (and React): "TypeError: Cannot convert a BigInt value to a number #6187" (#6506)
150+
151+
## [Unreleased]

packages/web3-eth-accounts/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Documentation:
137137
- Fixed "The `r` and `s` returned by `sign` to does not always consist of 64 characters" (#6411)
138138

139139

140-
## [Unreleased]
140+
## [4.1.0]
141141

142142
### Added
143143

@@ -148,3 +148,5 @@ Documentation:
148148
### Fixed
149149

150150
- Fixed `recover` function, `v` will be normalized to value 0,1 (#6344)
151+
152+
## [Unreleased]

packages/web3-eth-contract/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,8 +308,10 @@ Documentation:
308308
- Added to `Web3Config` property `contractDataInputFill` allowing users to have the choice using property `data`, `input` or `both` for contract methods to be sent to the RPC provider when creating contracts. (#6377)
309309

310310

311-
## [Unreleased]
311+
## [4.1.1]
312312

313313
### Changed
314314

315315
- The `events` property was added to the `receipt` object (#6410)
316+
317+
## [Unreleased]

packages/web3-eth-ens/CHANGELOG.md

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

130130
- Dependencies updated
131131

132+
## [4.0.7]
133+
134+
### Changed
135+
136+
- Dependencies updated
137+
132138
## [Unreleased]

packages/web3-eth-iban/CHANGELOG.md

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

120120
- Dependencies updated
121121

122+
## [4.0.7]
123+
124+
### Changed
125+
126+
- Dependencies updated
127+
122128
## [Unreleased]

packages/web3-eth-personal/CHANGELOG.md

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

136136
- Dependencies updated
137137

138+
## [4.0.7]
139+
140+
### Changed
141+
142+
- Dependencies updated
143+
138144
## [Unreleased]

packages/web3-eth/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ Documentation:
191191

192192
- Added to `Web3Config` property `contractDataInputFill` allowing users to have the choice using property `data`, `input` or `both` for contract methods to be sent to the RPC provider when creating contracts. (#6377) (#6400)
193193

194-
## [Unreleased]
194+
## [4.3.0]
195195

196196
### Changed
197197

@@ -206,3 +206,5 @@ Documentation:
206206
### Added
207207

208208
- Added `ALL_EVENTS` and `ALL_EVENTS_ABI` constants, `SendTransactionEventsBase` type, `decodeEventABI` method (#6410)
209+
210+
## [Unreleased]

0 commit comments

Comments
 (0)