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

Commit ea7e792

Browse files
committed
changelog updates
1 parent 60fc197 commit ea7e792

8 files changed

Lines changed: 84 additions & 83 deletions

File tree

CHANGELOG.md

Lines changed: 19 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -2563,101 +2563,46 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
25632563

25642564
- `getName` reverse resolution
25652565

2566-
## [Unreleased]
2566+
## [4.12.0]
25672567

25682568
### Fixed
25692569

2570-
#### web3-eth
2571-
2572-
- Fixed geth issue when running a new instance, transactions will index when there are no blocks created (#7098)
2573-
2574-
### Added
2575-
2576-
#### web3
2577-
2578-
- `web3.eth.Contract` will get transaction middleware and use it, if `web3.eth` has transaction middleware. (#7138)
2579-
2580-
#### web3-eth-contract
2581-
2582-
- `populateTransaction` was added to contract methods (#7124)
2583-
- Contract has `setTransactionMiddleware` and `getTransactionMiddleware` for automatically passing to `sentTransaction` for `deploy` and `send` functions (#7138)
2584-
2585-
## [4.11.0]
2586-
2587-
### Fixed
2588-
2589-
#### web3-eth-abi
2590-
2591-
- fix encodedata in EIP-712 (#7095)
2592-
2593-
#### web3-utils
2594-
2595-
- `_sendPendingRequests` will catch unhandled errors from `_sendToSocket` (#6968)
2596-
2597-
#### web3-eth
2570+
#### web3-core
25982571

2599-
- Fixed geth issue when running a new instance, transactions will index when there are no blocks created (#7098)
2600-
2601-
### Changed
2572+
- `setConfig()` fix for `setMaxListenerWarningThreshold` fix (#5079)
26022573

26032574
#### web3-eth-accounts
26042575

2605-
- baseTransaction method updated (#7095)
2606-
2607-
#### web3-providers-ws
2608-
2609-
- Update dependancies (#7109)
2610-
2611-
#### web3-plugin-example
2612-
2613-
- Dependencies updated
2614-
2615-
#### web3-rpc-providers
2616-
2617-
- Change request return type `Promise<ResultType>` to `Promise<JsonRpcResponseWithResult<ResultType>>` (#7102)
2576+
- Fix `TransactionFactory.registerTransactionType` not working, if there is a version mistatch between `web3-eth` and `web3-eth-accounts` by saving `extraTxTypes` at `globals`. (#7197)
26182577

26192578
### Added
26202579

2621-
#### web3-eth-contract
2580+
#### web3-eth-accounts
26222581

2623-
- `populateTransaction` was added to contract methods (#7124)
2624-
- Contract has `setTransactionMiddleware` and `getTransactionMiddleware` for automatically passing to `sentTransaction` for `deploy` and `send` functions (#7138)
2582+
- Added public function `signMessageWithPrivateKey` (#7174)
26252583

2626-
#### web3-rpc-providers
2584+
#### web3-eth-contract
26272585

2628-
- When error is returned with code 429, throw rate limit error (#7102)
2586+
- Added `populateTransaction` to the `contract.deploy(...)` properties. (#7197)
26292587

2630-
#### web3
2588+
#### web3-providers-http
26312589

2632-
- `web3.eth.Contract` will get transaction middleware and use it, if `web3.eth` has transaction middleware. (#7138)
2590+
- Added `statusCode` of response in ResponseError, `statusCode` is optional property in ResponseError.
26332591

2634-
## [4.11.1]
2592+
#### web3-rpc-providers
26352593

2636-
### Fixed
2594+
- Updated rate limit error of QuickNode provider for HTTP transport
2595+
- Added optional `HttpProviderOptions | SocketOptions` in `Web3ExternalProvider` and `QuickNodeProvider` for provider configs
26372596

26382597
#### web3-errors
26392598

2640-
- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)
2641-
2642-
#### web3-eth
2599+
- Added optional `statusCode` property of response in ResponseError.
26432600

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-
2651-
## [Unreleased]
2652-
2653-
### Fixed
2654-
2655-
#### web3-utils
2656-
2657-
- Fixed format schema with `oneOf` doesn't work correctly (#7055)
2601+
### Changed
26582602

2659-
### Added
2603+
#### web3-eth-contract
26602604

2661-
#### web3-eth-accounts
2605+
- The returnred properties of `contract.deploy(...)` are structured with a newly created class named `DeployerMethodClass`. (#7197)
2606+
- Add a missed accepted type for the `abi` parameter, at `dataInputEncodeMethodHelper` and `getSendTxParams`. (#7197)
26622607

2663-
- Added public function `signMessageWithPrivateKey` (#7174)
2608+
## [Unreleased]

packages/web3-core/CHANGELOG.md

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

228228
- Now when existing packages are added in web3, will be avalible for plugins via context. (#7088)
229229

230-
## [Unreleased]
230+
## [4.5.1]
231231

232232
### Fixed
233233

234234
- `setConfig()` fix for `setMaxListenerWarningThreshold` fix (#5079)
235+
236+
## [Unreleased]

packages/web3-errors/CHANGELOG.md

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

179179
- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)
180180

181-
## [Unreleased]
181+
## [1.3.0]
182182

183183
### Added
184184

185-
- Added optional `statusCode` property of response in ResponseError.
185+
- Added optional `statusCode` property of response in ResponseError.
186+
187+
## [Unreleased]

packages/web3-eth-accounts/CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,13 @@ Documentation:
168168

169169
- baseTransaction method updated (#7095)
170170

171-
## [Unreleased]
171+
## [4.2.0]
172+
172173
### Added
173174

174175
- Added public function `signMessageWithPrivateKey` (#7174)
175176

176177
### Fixed
177178
- Fix `TransactionFactory.registerTransactionType` not working, if there is a version mistatch between `web3-eth` and `web3-eth-accounts` by saving `extraTxTypes` at `globals`. (#7197)
179+
180+
## [Unreleased]

packages/web3-eth-contract/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ Documentation:
393393
- `populateTransaction` was added to contract methods (#7124)
394394
- Contract has `setTransactionMiddleware` and `getTransactionMiddleware` for automatically passing to `sentTransaction` for `deploy` and `send` functions (#7138)
395395

396-
## [Unreleased]
396+
## [4.7.0]
397397

398398
### Added
399399

@@ -403,3 +403,5 @@ Documentation:
403403

404404
- The returnred properties of `contract.deploy(...)` are structured with a newly created class named `DeployerMethodClass`. (#7197)
405405
- Add a missed accepted type for the `abi` parameter, at `dataInputEncodeMethodHelper` and `getSendTxParams`. (#7197)
406+
407+
## [Unreleased]

packages/web3-providers-http/CHANGELOG.md

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

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

132-
## [Unreleased]
132+
## [4.2.0]
133133

134134
### Added
135135

136-
- Added `statusCode` of response in ResponseError, `statusCode` is optional property in ResponseError.
136+
- Added `statusCode` of response in ResponseError, `statusCode` is optional property in ResponseError.
137+
138+
## [Unreleased]

packages/web3-rpc-providers/CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5151

5252
- Change request return type `Promise<ResultType>` to `Promise<JsonRpcResponseWithResult<ResultType>>` (#7102)
5353

54-
## [Unreleased]
54+
## [1.0.0-rc.2]
5555

5656
### Added
5757

5858
- Updated rate limit error of QuickNode provider for HTTP transport
59-
- Added optional `HttpProviderOptions | SocketOptions` in `Web3ExternalProvider` and `QuickNodeProvider` for provider configs
59+
- Added optional `HttpProviderOptions | SocketOptions` in `Web3ExternalProvider` and `QuickNodeProvider` for provider configs
60+
61+
## [Unreleased]

packages/web3/CHANGELOG.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -436,4 +436,47 @@ Documentation:
436436

437437
- Remove redundant constructor of contractBuilder (#7150)
438438

439+
440+
## [4.12.0]
441+
442+
### Fixed
443+
444+
#### web3-core
445+
446+
- `setConfig()` fix for `setMaxListenerWarningThreshold` fix (#5079)
447+
448+
#### web3-eth-accounts
449+
450+
- Fix `TransactionFactory.registerTransactionType` not working, if there is a version mistatch between `web3-eth` and `web3-eth-accounts` by saving `extraTxTypes` at `globals`. (#7197)
451+
452+
### Added
453+
454+
#### web3-eth-accounts
455+
456+
- Added public function `signMessageWithPrivateKey` (#7174)
457+
458+
#### web3-eth-contract
459+
460+
- Added `populateTransaction` to the `contract.deploy(...)` properties. (#7197)
461+
462+
#### web3-providers-http
463+
464+
- Added `statusCode` of response in ResponseError, `statusCode` is optional property in ResponseError.
465+
466+
#### web3-rpc-providers
467+
468+
- Updated rate limit error of QuickNode provider for HTTP transport
469+
- Added optional `HttpProviderOptions | SocketOptions` in `Web3ExternalProvider` and `QuickNodeProvider` for provider configs
470+
471+
#### web3-errors
472+
473+
- Added optional `statusCode` property of response in ResponseError.
474+
475+
### Changed
476+
477+
#### web3-eth-contract
478+
479+
- The returnred properties of `contract.deploy(...)` are structured with a newly created class named `DeployerMethodClass`. (#7197)
480+
- Add a missed accepted type for the `abi` parameter, at `dataInputEncodeMethodHelper` and `getSendTxParams`. (#7197)
481+
439482
## [Unreleased]

0 commit comments

Comments
 (0)