You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19-74Lines changed: 19 additions & 74 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2563,101 +2563,46 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
2563
2563
2564
2564
-`getName` reverse resolution
2565
2565
2566
-
## [Unreleased]
2566
+
## [4.12.0]
2567
2567
2568
2568
### Fixed
2569
2569
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
2598
2571
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)
2602
2573
2603
2574
#### web3-eth-accounts
2604
2575
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)
2618
2577
2619
2578
### Added
2620
2579
2621
-
#### web3-eth-contract
2580
+
#### web3-eth-accounts
2622
2581
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)
2625
2583
2626
-
#### web3-rpc-providers
2584
+
#### web3-eth-contract
2627
2585
2628
-
- When error is returned with code 429, throw rate limit error (#7102)
2586
+
- Added `populateTransaction` to the `contract.deploy(...)` properties. (#7197)
2629
2587
2630
-
#### web3
2588
+
#### web3-providers-http
2631
2589
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.
2633
2591
2634
-
##[4.11.1]
2592
+
#### web3-rpc-providers
2635
2593
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
2637
2596
2638
2597
#### web3-errors
2639
2598
2640
-
- Fixed the undefined data in `Eip838ExecutionError` constructor (#6905)
2641
-
2642
-
#### web3-eth
2599
+
- Added optional `statusCode` property of response in ResponseError.
2643
2600
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
2658
2602
2659
-
###Added
2603
+
#### web3-eth-contract
2660
2604
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)
2662
2607
2663
-
- Added public function `signMessageWithPrivateKey` (#7174)
Copy file name to clipboardExpand all lines: packages/web3-eth-accounts/CHANGELOG.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -168,10 +168,13 @@ Documentation:
168
168
169
169
- baseTransaction method updated (#7095)
170
170
171
-
## [Unreleased]
171
+
## [4.2.0]
172
+
172
173
### Added
173
174
174
175
- Added public function `signMessageWithPrivateKey` (#7174)
175
176
176
177
### Fixed
177
178
- Fix `TransactionFactory.registerTransactionType` not working, if there is a version mistatch between `web3-eth` and `web3-eth-accounts` by saving `extraTxTypes` at `globals`. (#7197)
Copy file name to clipboardExpand all lines: packages/web3-eth-contract/CHANGELOG.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -393,7 +393,7 @@ Documentation:
393
393
-`populateTransaction` was added to contract methods (#7124)
394
394
- Contract has `setTransactionMiddleware` and `getTransactionMiddleware` for automatically passing to `sentTransaction` for `deploy` and `send` functions (#7138)
395
395
396
-
## [Unreleased]
396
+
## [4.7.0]
397
397
398
398
### Added
399
399
@@ -403,3 +403,5 @@ Documentation:
403
403
404
404
- The returnred properties of `contract.deploy(...)` are structured with a newly created class named `DeployerMethodClass`. (#7197)
405
405
- Add a missed accepted type for the `abi` parameter, at `dataInputEncodeMethodHelper` and `getSendTxParams`. (#7197)
Copy file name to clipboardExpand all lines: packages/web3/CHANGELOG.md
+43Lines changed: 43 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -436,4 +436,47 @@ Documentation:
436
436
437
437
- Remove redundant constructor of contractBuilder (#7150)
438
438
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)
0 commit comments