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

Commit 48bb05f

Browse files
committed
changelog updates
1 parent 3f49e18 commit 48bb05f

File tree

19 files changed

+178
-11
lines changed

19 files changed

+178
-11
lines changed

CHANGELOG.md

+94-3
Original file line numberDiff line numberDiff line change
@@ -1592,18 +1592,109 @@ Detailed List of changes are mentioned under:
15921592

15931593
If there are any bugs, improvements, optimizations or any new feature proposal feel free to create github issue, or post a pull request for contributions.
15941594

1595-
## [Unreleased]
1595+
## [4.0.2]
15961596

15971597
### Fixed
15981598

1599+
#### web3
1600+
1601+
- Fixed bug #6185, now web3.js compiles on typescript v5 (#6195)
1602+
- Fixed #6162 @types/ws issue (#6205)
1603+
1604+
#### web3-core
1605+
1606+
- Fixed Batch requests erroring out on one request (#6164)
1607+
- Fixed the issue: Subscribing to multiple blockchain events causes every listener to be fired for every registered event (#6210)
1608+
- Fixed the issue: Unsubscribe at a Web3Subscription class will still have the id of the subscription at the Web3SubscriptionManager (#6210)
1609+
- Fixed the issue: A call to the provider is made for every subscription object (#6210)
1610+
15991611
#### web3-eth-abi
16001612

16011613
- Support for "decoding" indexed string event arguments (returns the keccak256 hash of the string value instead of the actual string value) (#6167)
16021614

1615+
#### web3-eth-accounts
1616+
1617+
- Fixed "The `r` and `s` returned by `signTransaction` to does not always consist of 64 characters #6207" (#6216)
1618+
16031619
#### web3-eth-contract
16041620

16051621
- Event filtering using non-indexed and indexed string event arguments (#6167)
16061622

1607-
#### web3-eth-types
1623+
#### web3-eth-ens
1624+
1625+
- Fixed bug #6185, now web3.js compiles on typescript v5 (#6195)
1626+
1627+
#### web3-providers-ws
1628+
1629+
- Fixed #6162 @types/ws issue (#6205)
1630+
1631+
#### web3-types
1632+
1633+
- Fixed bug #6185, now web3.js compiles on typescript v5 (#6195)
1634+
1635+
### Added
1636+
1637+
#### web3
1638+
1639+
- Exported `Web3Context`, `Web3PluginBase`, `Web3EthPluginBase` from `'web3-core'`, and `Web3Validator` from `'web3-validator'` (#6165)
1640+
1641+
#### web3-core
1642+
1643+
- Web3Subscription constructor accept a Subscription Manager (as an alternative to accepting Request Manager that is now marked marked as deprecated) (#6210)
1644+
1645+
#### web3-types
1646+
1647+
- Added the `SimpleProvider` interface which has only `request(args)` method that is compatible with EIP-1193 (#6210)
1648+
- Added the `Eip1193EventName` type that contains the possible events names according to EIP-1193 (#6210)
1649+
1650+
### Changed
1651+
1652+
#### web3-core
1653+
1654+
- Web3Subscription constructor overloading that accept a Request Manager is marked as deprecated (#6210)
16081655

1609-
- Receive fragment type added (#6204)
1656+
#### web3-errors
1657+
1658+
- Dependencies updated
1659+
1660+
#### web3-eth
1661+
1662+
- Dependencies updated
1663+
1664+
#### web3-eth-iban
1665+
1666+
- Dependencies updated
1667+
1668+
#### web3-eth-personal
1669+
1670+
- Dependencies updated
1671+
1672+
#### web3-net
1673+
1674+
- Dependencies updated
1675+
1676+
#### web3-providers-http
1677+
1678+
- Dependencies updated
1679+
1680+
#### web3-providers-ipc
1681+
1682+
- Dependencies updated
1683+
1684+
#### web3-rpc-methods
1685+
1686+
- Dependencies updated
1687+
1688+
#### web3-types
1689+
1690+
- The `EIP1193Provider` class has now all the events (for `on` and `removeListener`) according to EIP-1193 (#6210)
1691+
1692+
#### web3-utils
1693+
1694+
- Dependencies updated
1695+
1696+
#### web3-validator
1697+
1698+
- Dependencies updated
1699+
1700+
## [Unreleased]

packages/web3-core/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Documentation:
119119
[Web3 API](https://docs.web3js.org/api)
120120
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
121121

122-
## [Unreleased]
122+
## [4.0.2]
123123

124124
### Added
125125

@@ -135,3 +135,5 @@ Documentation:
135135
- Fixed the issue: Subscribing to multiple blockchain events causes every listener to be fired for every registered event (#6210)
136136
- Fixed the issue: Unsubscribe at a Web3Subscription class will still have the id of the subscription at the Web3SubscriptionManager (#6210)
137137
- Fixed the issue: A call to the provider is made for every subscription object (#6210)
138+
139+
## [Unreleased]

packages/web3-errors/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -118,4 +118,10 @@ Documentation:
118118
[Web3 API](https://docs.web3js.org/api)
119119
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
120120

121+
## [1.0.1]
122+
123+
### Changed
124+
125+
- Dependencies updated
126+
121127
## [Unreleased]

packages/web3-eth-abi/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -112,8 +112,10 @@ Documentation:
112112
[Web3 API](https://docs.web3js.org/api)
113113
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
114114

115-
## [Unreleased]
115+
## [4.0.2]
116116

117117
### Fixed
118118

119119
- Support for "decoding" indexed string event arguments (returns the keccak256 hash of the string value instead of the actual string value) (#6167)
120+
121+
## [Unreleased]

packages/web3-eth-accounts/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,10 @@ Documentation:
106106
[Web3 API](https://docs.web3js.org/api)
107107
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
108108

109-
## [Unreleased]
109+
## [4.0.2]
110110

111111
### Fixed
112112

113113
- Fixed "The `r` and `s` returned by `signTransaction` to does not always consist of 64 characters #6207" (#6216)
114+
115+
## [Unreleased]

packages/web3-eth-contract/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -272,8 +272,10 @@ Documentation:
272272
[Web3 API](https://docs.web3js.org/api)
273273
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
274274

275-
## [Unreleased]
275+
## [4.0.2]
276276

277277
### Fixed
278278

279279
- Event filtering using non-indexed and indexed string event arguments (#6167)
280+
281+
## [Unreleased]

packages/web3-eth-ens/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,10 @@ Documentation:
9999
[Web3 API](https://docs.web3js.org/api)
100100
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
101101

102-
## [Unreleased]
102+
## [4.0.2]
103103

104104
### Fixed
105105

106106
- Fixed bug #6185, now web3.js compiles on typescript v5 (#6195)
107+
108+
## [Unreleased]

packages/web3-eth-iban/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,10 @@ Documentation:
8989
[Web3 API](https://docs.web3js.org/api)
9090
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
9191

92+
## [4.0.2]
93+
94+
### Changed
95+
96+
- Dependencies updated
97+
9298
## [Unreleased]

packages/web3-eth-personal/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,10 @@ Documentation:
105105
[Web3 API](https://docs.web3js.org/api)
106106
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
107107

108+
## [4.0.2]
109+
110+
### Changed
111+
112+
- Dependencies updated
113+
108114
## [Unreleased]

packages/web3-eth/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,10 @@ Documentation:
149149
[Web3 API](https://docs.web3js.org/api)
150150
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
151151

152+
## [4.0.2]
153+
154+
### Changed
155+
156+
- Dependencies updated
157+
152158
## [Unreleased]

packages/web3-net/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,10 @@ Documentation:
105105
[Web3 API](https://docs.web3js.org/api)
106106
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
107107

108+
## [4.0.2]
109+
110+
### Changed
111+
112+
- Dependencies updated
113+
108114
## [Unreleased]

packages/web3-providers-http/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,10 @@ Documentation:
8989
[Web3 API](https://docs.web3js.org/api)
9090
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
9191

92+
## [4.0.2]
93+
94+
### Changed
95+
96+
- Dependencies updated
97+
9298
## [Unreleased]

packages/web3-providers-ipc/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,10 @@ Documentation:
9999
[Web3 API](https://docs.web3js.org/api)
100100
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
101101

102+
## [4.0.2]
103+
104+
### Changed
105+
106+
- Dependencies updated
107+
102108
## [Unreleased]

packages/web3-providers-ws/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,10 @@ Documentation:
9292
[Web3 API](https://docs.web3js.org/api)
9393
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
9494

95-
## [Unreleased]
95+
## [4.0.2]
9696

9797
### Fixed
9898

9999
- Fixed #6162 @types/ws issue (#6205)
100+
101+
## [Unreleased]

packages/web3-rpc-methods/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,10 @@ Documentation:
9090
[Web3 API](https://docs.web3js.org/api)
9191
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
9292

93+
## [1.0.1]
94+
95+
### Changed
96+
97+
- Dependencies updated
98+
9399
## [Unreleased]

packages/web3-types/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Documentation:
119119
[Web3 API](https://docs.web3js.org/api)
120120
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
121121

122-
## [Unreleased]
122+
## [1.0.1]
123123

124124
### Added
125125

@@ -133,3 +133,5 @@ Documentation:
133133
### Fixed
134134

135135
- Fixed bug #6185, now web3.js compiles on typescript v5 (#6195)
136+
137+
## [Unreleased]

packages/web3-utils/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -128,4 +128,10 @@ Documentation:
128128
[Web3 API](https://docs.web3js.org/api)
129129
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
130130

131+
## [4.0.2]
132+
133+
### Changed
134+
135+
- Dependencies updated
136+
131137
## [Unreleased]

packages/web3-validator/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,10 @@ Documentation:
108108
[Web3 API](https://docs.web3js.org/api)
109109
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
110110

111+
## [1.0.1]
112+
113+
### Changed
114+
115+
- Dependencies updated
116+
111117
## [Unreleased]

packages/web3/CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Documentation:
112112
[Web3 API](https://docs.web3js.org/api)
113113
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
114114

115-
## [Unreleased]
115+
## [4.0.2]
116116

117117
### Added
118118

@@ -122,3 +122,5 @@ Documentation:
122122

123123
- Fixed bug #6185, now web3.js compiles on typescript v5 (#6195)
124124
- Fixed #6162 @types/ws issue (#6205)
125+
126+
## [Unreleased]

0 commit comments

Comments
 (0)