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

Commit 5b5bf87

Browse files
committedJun 5, 2023
changelog updates
1 parent 45d55c3 commit 5b5bf87

File tree

21 files changed

+244
-0
lines changed

21 files changed

+244
-0
lines changed
 

‎CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1556,4 +1556,40 @@ should use 4.0.1-alpha.0 for testing.
15561556

15571557
- `Web3ValidationErrorObject` type is now exported from `web3-types` package (#6102)
15581558

1559+
## [4.0.1]
1560+
1561+
Release Notes:
1562+
1563+
Web3.js 4.0.1 is written in TypeScript and has many exciting features such as:
1564+
Easy extensibility ( with web3 Plugins feature )
1565+
In compliance with ETH EL Specification
1566+
Dynamic Contract Typing
1567+
Native typescript
1568+
ESM CJS native builds
1569+
85%+ test coverage
1570+
Custom data formatting feature
1571+
Reduced package size
1572+
New packages ( web3-types, web3-errors, web3-validator, web3-rpc-methods )
1573+
Validation functionality using schema
1574+
1575+
Documentation:
1576+
[Web3.js documentation](https://docs.web3js.org/)
1577+
[Web3 API](https://docs.web3js.org/api)
1578+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
1579+
[Plugin Developers](https://docs.web3js.org/guides/web3_plugin_guide/plugin_authors)
1580+
[Plugin Users](https://docs.web3js.org/guides/web3_plugin_guide/plugin_users)
1581+
1582+
Detailed List of changes are mentioned under:
1583+
4.0.0-alpha.0
1584+
4.0.1-alpha.1
1585+
4.0.1-alpha.2
1586+
4.0.1-alpha.3
1587+
4.0.1-alpha.4
1588+
4.0.1-alpha.5
1589+
4.0.1-rc.0
1590+
4.0.1-rc.1
1591+
4.0.1-rc.2
1592+
1593+
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.
1594+
15591595
## [Unreleased]

‎packages/web3-core/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108108

109109
- Replaced Buffer for Uint8Array (#6004)
110110

111+
## [4.0.1]
112+
113+
Release Notes:
114+
115+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
116+
117+
Documentation:
118+
[Web3.js documentation](https://docs.web3js.org/)
119+
[Web3 API](https://docs.web3js.org/api)
120+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
121+
111122
## [Unreleased]

‎packages/web3-errors/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
107107

108108
- Nested Smart Contract error data is extracted at `Eip838ExecutionError` constructor and the nested error is set at `innerError` (#6045)
109109

110+
## [1.0.0]
111+
112+
Release Notes:
113+
114+
Detailed List of change logs are mentioned under previous 1.x alpha and RC releases.
115+
116+
Documentation:
117+
[Web3.js documentation](https://docs.web3js.org/)
118+
[Web3 API](https://docs.web3js.org/api)
119+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
120+
110121
## [Unreleased]

‎packages/web3-eth-abi/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
101101

102102
- Nested Smart Contract error data hex string is decoded when the error contains the data as object (when the data hex string is inside data.originalError.data or data.data) (#6045)
103103

104+
## [4.0.1]
105+
106+
Release Notes:
107+
108+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
109+
110+
Documentation:
111+
[Web3.js documentation](https://docs.web3js.org/)
112+
[Web3 API](https://docs.web3js.org/api)
113+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
114+
104115
## [Unreleased]

‎packages/web3-eth-accounts/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -95,4 +95,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9595
- The methods `recover`, `encrypt`, `privateKeyToAddress` does not support type `Buffer` but supports type `Uint8Array` (#6004)
9696
- The method `parseAndValidatePrivateKey` returns a type `Uint8Array` instead of type `Buffer` (#6004)
9797

98+
## [4.0.1]
99+
100+
Release Notes:
101+
102+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
103+
104+
Documentation:
105+
[Web3.js documentation](https://docs.web3js.org/)
106+
[Web3 API](https://docs.web3js.org/api)
107+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
108+
98109
## [Unreleased]

‎packages/web3-eth-contract/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -261,4 +261,15 @@ const transactionHash = receipt.transactionHash;
261261
- Added `maxPriorityFeePerGas` and `maxFeePerGas` in `ContractOptions` type and updated function using it in utils (#6118)
262262
- Added method's type autodetection by ABI param (#6137)
263263

264+
## [4.0.1]
265+
266+
Release Notes:
267+
268+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
269+
270+
Documentation:
271+
[Web3.js documentation](https://docs.web3js.org/)
272+
[Web3 API](https://docs.web3js.org/api)
273+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
274+
264275
## [Unreleased]

‎packages/web3-eth-ens/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8888

8989
- Removed non read-only methods (#6084)
9090

91+
## [4.0.1]
92+
93+
Release Notes:
94+
95+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
96+
97+
Documentation:
98+
[Web3.js documentation](https://docs.web3js.org/)
99+
[Web3 API](https://docs.web3js.org/api)
100+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
101+
91102
## [Unreleased]

‎packages/web3-eth-iban/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7878

7979
- Dependencies updated
8080

81+
## [4.0.1]
82+
83+
Release Notes:
84+
85+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
86+
87+
Documentation:
88+
[Web3.js documentation](https://docs.web3js.org/)
89+
[Web3 API](https://docs.web3js.org/api)
90+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
91+
8192
## [Unreleased]

‎packages/web3-eth-personal/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9494

9595
- Dependencies updated
9696

97+
## [4.0.1]
98+
99+
Release Notes:
100+
101+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
102+
103+
Documentation:
104+
[Web3.js documentation](https://docs.web3js.org/)
105+
[Web3 API](https://docs.web3js.org/api)
106+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
107+
97108
## [Unreleased]

‎packages/web3-eth/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -138,4 +138,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
138138
- Refactored `defaultTransactionTypeParser` to return correct EIP-2718 types, prior implementation was prioritizing `transaction.hardfork` and ignoring the use of `transaction.gasLimit`. `defaultTransactionTypeParser` will now throw `InvalidPropertiesForTransactionTypeError`s for properties are used that are incompatible with `transaction.type` (#6102)
139139
- `prepareTransactionForSigning` and `defaultTransactionBuilder` now accepts optional `fillGasPrice` flag and by default will not fill gas(#6071)
140140

141+
## [4.0.1]
142+
143+
Release Notes:
144+
145+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
146+
147+
Documentation:
148+
[Web3.js documentation](https://docs.web3js.org/)
149+
[Web3 API](https://docs.web3js.org/api)
150+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
151+
141152
## [Unreleased]

‎packages/web3-net/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9494

9595
- Dependencies updated
9696

97+
## [4.0.1]
98+
99+
Release Notes:
100+
101+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
102+
103+
Documentation:
104+
[Web3.js documentation](https://docs.web3js.org/)
105+
[Web3 API](https://docs.web3js.org/api)
106+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
107+
97108
## [Unreleased]

‎packages/web3-providers-http/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -78,4 +78,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7878

7979
- Dependencies updated
8080

81+
## [4.0.1]
82+
83+
Release Notes:
84+
85+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
86+
87+
Documentation:
88+
[Web3.js documentation](https://docs.web3js.org/)
89+
[Web3 API](https://docs.web3js.org/api)
90+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
91+
8192
## [Unreleased]

‎packages/web3-providers-ipc/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8888

8989
- Replaced Buffer for Uint8Array (#6004)
9090

91+
## [4.0.1]
92+
93+
Release Notes:
94+
95+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
96+
97+
Documentation:
98+
[Web3.js documentation](https://docs.web3js.org/)
99+
[Web3 API](https://docs.web3js.org/api)
100+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
101+
91102
## [Unreleased]

‎packages/web3-providers-ws/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8181

8282
- Dependencies updated
8383

84+
## [4.0.1]
85+
86+
Release Notes:
87+
88+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
89+
90+
Documentation:
91+
[Web3.js documentation](https://docs.web3js.org/)
92+
[Web3 API](https://docs.web3js.org/api)
93+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
94+
8495
## [Unreleased]

‎packages/web3-rpc-methods/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7979

8080
- Dependencies updated
8181

82+
## [1.0.0]
83+
84+
Release Notes:
85+
86+
Detailed List of change logs are mentioned under previous 1.x alpha and RC releases.
87+
88+
Documentation:
89+
[Web3.js documentation](https://docs.web3js.org/)
90+
[Web3 API](https://docs.web3js.org/api)
91+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
92+
8293
## [Unreleased]

‎packages/web3-types/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108108
- types `FMT_BYTES.BUFFER`, `Bytes` and `FormatType` and encryption option types for `salt` and `iv` has replaced support for `Buffer` for `Uint8Array` (#6004)
109109
- Added `internalType` property to the `AbiParameter` type.
110110

111+
## [1.0.0]
112+
113+
Release Notes:
114+
115+
Detailed List of change logs are mentioned under previous 1.x alpha and RC releases.
116+
117+
Documentation:
118+
[Web3.js documentation](https://docs.web3js.org/)
119+
[Web3 API](https://docs.web3js.org/api)
120+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
121+
111122
## [Unreleased]

‎packages/web3-utils/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -117,4 +117,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
117117
- The methods `sha3` and `keccak256Wrapper` does not accept type `Buffer` but type `Uint8Array` (#6004)
118118
- The method `bytesToBuffer` has been removed for the usage of `bytesToUint8Array` (#6004)
119119

120+
## [4.0.1]
121+
122+
Release Notes:
123+
124+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
125+
126+
Documentation:
127+
[Web3.js documentation](https://docs.web3js.org/)
128+
[Web3 API](https://docs.web3js.org/api)
129+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
130+
120131
## [Unreleased]

‎packages/web3-validator/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9797

9898
- `Web3ValidationErrorObject` type is now exported from `web3-types` package (#6102)
9999

100+
## [1.0.0]
101+
102+
Release Notes:
103+
104+
Detailed List of change logs are mentioned under previous 1.x alpha and RC releases.
105+
106+
Documentation:
107+
[Web3.js documentation](https://docs.web3js.org/)
108+
[Web3 API](https://docs.web3js.org/api)
109+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
110+
100111
## [Unreleased]

‎packages/web3/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,15 @@ web3.currentProvider.disconnect();
101101

102102
- Dependencies updated
103103

104+
## [4.0.1]
105+
106+
Release Notes:
107+
108+
Detailed List of change logs are mentioned under previous 4.x alpha and RC releases.
109+
110+
Documentation:
111+
[Web3.js documentation](https://docs.web3js.org/)
112+
[Web3 API](https://docs.web3js.org/api)
113+
[Migration Guide from 1.x](https://docs.web3js.org/guides/web3_upgrade_guide/x/)
114+
104115
## [Unreleased]

‎tools/web3-packagetemplate/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4242
- Added source files (#5956)
4343
- Added hybrid build (ESM and CJS) of library (#5904)
4444

45+
## [1.1.1]
46+
47+
- Stable release
48+
4549
## [Unreleased]

‎tools/web3-plugin-example/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6060

6161
- Added source files (#5956)
6262

63+
## [1.0.0]
64+
65+
- Stable release
66+
67+
## [Unreleased]
68+
6369
## [Unreleased]

0 commit comments

Comments
 (0)
This repository has been archived.