Skip to content

Commit

Permalink
changelog bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
jdevcs committed Oct 18, 2023
1 parent 50a2469 commit c8799b0
Show file tree
Hide file tree
Showing 20 changed files with 145 additions and 18 deletions.
59 changes: 57 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2081,10 +2081,14 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Dependencies updated

## [Unreleased]
## [4.2.0]

### Added

#### web3

- Various web3 sub packages has new functions details are in root changelog

#### web3-eth

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

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

#### web3-errors

- Added new SchemaFormatError (#6434)

#### web3-eth

- Ensure provider.supportsSubscriptions exists before watching by subscription (#6440)
- Fixed param sent to `checkRevertBeforeSending` in `sendSignedTransaction`
- Fixed `defaultTransactionBuilder` for value issue (#6509)

#### web3-eth-abi

- Fix issue with default config with babel (and React): "TypeError: Cannot convert a BigInt value to a number #6187" (#6506)

#### web3-eth-accounts

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

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

#### web3-providers-ipc

- Fixed bug in chunks processing logic (#6496)

#### web3-providers-ws

- Fixed bug in chunks processing logic (#6496)

#### web3-utils

- Fix issue with default config with babel (and React): "TypeError: Cannot convert a BigInt value to a number #6187" (#6506)
- Fixed bug in chunks processing logic (#6496)

#### web3-validator

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

### Changed

#### web3

- Dependencies updated

#### web3-core

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

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

#### web3-eth-ens

- Dependencies updated

#### web3-eth-iban

- Dependencies updated

#### web3-eth-personal

- Dependencies updated

#### web3-net

- Dependencies updated

#### web3-providers-http

- Bump cross-fetch to version 4 (#6463).

#### web3-rpc-methods

- Dependencies updated

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ Documentation:

- 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)

## [Unreleased]
## [4.3.0]

### Changed

Expand All @@ -190,3 +190,5 @@ Documentation:
### Fixed

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

## [Unreleased]
8 changes: 6 additions & 2 deletions packages/web3-errors/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [1.1.3]

- Added new SchemaFormatError (#6434)
### Fixed

- Added new SchemaFormatError (#6434)

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-eth-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.1.3]

### Fixed

- Fix issue with default config with babel (and React): "TypeError: Cannot convert a BigInt value to a number #6187" (#6506)

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-eth-accounts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ Documentation:
- Fixed "The `r` and `s` returned by `sign` to does not always consist of 64 characters" (#6411)


## [Unreleased]
## [4.1.0]

### Added

Expand All @@ -148,3 +148,5 @@ Documentation:
### Fixed

- Fixed `recover` function, `v` will be normalized to value 0,1 (#6344)

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-eth-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -308,8 +308,10 @@ Documentation:
- 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)


## [Unreleased]
## [4.1.1]

### Changed

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

## [Unreleased]
6 changes: 6 additions & 0 deletions packages/web3-eth-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,10 @@ Documentation:

- Dependencies updated

## [4.0.7]

### Changed

- Dependencies updated

## [Unreleased]
6 changes: 6 additions & 0 deletions packages/web3-eth-iban/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,10 @@ Documentation:

- Dependencies updated

## [4.0.7]

### Changed

- Dependencies updated

## [Unreleased]
6 changes: 6 additions & 0 deletions packages/web3-eth-personal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,10 @@ Documentation:

- Dependencies updated

## [4.0.7]

### Changed

- Dependencies updated

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ Documentation:

- 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)

## [Unreleased]
## [4.3.0]

### Changed

Expand All @@ -206,3 +206,5 @@ Documentation:
### Added

- Added `ALL_EVENTS` and `ALL_EVENTS_ABI` constants, `SendTransactionEventsBase` type, `decodeEventABI` method (#6410)

## [Unreleased]
6 changes: 6 additions & 0 deletions packages/web3-net/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,10 @@ Documentation:

- Dependencies updated

## [4.0.7]

### Changed

- Dependencies updated

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-providers-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.1.0]

### Changed

Expand All @@ -128,3 +128,5 @@ Documentation:
### Fixed

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

## [Unreleased]
6 changes: 4 additions & 2 deletions packages/web3-providers-ipc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.0.7]

### Fixed

- Fixed bug in chunks processing logic (#6496)
- Fixed bug in chunks processing logic (#6496)

## [Unreleased]
6 changes: 4 additions & 2 deletions packages/web3-providers-ws/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,10 @@ Documentation:
- Dependencies updated


## [Unreleased]
## [4.0.7]

### Fixed

- Fixed bug in chunks processing logic (#6496)
- Fixed bug in chunks processing logic (#6496)

## [Unreleased]
6 changes: 6 additions & 0 deletions packages/web3-rpc-methods/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,10 @@ Documentation:

- Dependencies updated

## [1.1.3]

### Changed

- Dependencies updated

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,8 +164,10 @@ Documentation:
- add `asEIP1193Provider` to `Web3BaseProvider` so every inherited class can have the returned value of `request` method, fully compatible with EIP-1193. (#6407)


## [Unreleased]
## [1.3.0]

### Added

- Interface `EventLog` was added. (#6410)

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ Documentation:

- `soliditySha3()` with BigInt support

## [Unreleased]
## [4.0.7]

### Added

Expand All @@ -168,3 +168,5 @@ Documentation:

- Fix issue with default config with babel (and React): "TypeError: Cannot convert a BigInt value to a number #6187" (#6506)
- Fixed bug in chunks processing logic (#6496)

## [Unreleased]
4 changes: 3 additions & 1 deletion packages/web3-validator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,13 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [2.0.3]

### Fixed

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

## [Unreleased]
10 changes: 10 additions & 0 deletions packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,14 @@ Documentation:

- Fix of incorrect provider warning behavior

## [4.2.0]

### Changed

- Dependencies updated

### Added

- Various web3 sub packages has new functions details are in root changelog

## [Unreleased]
8 changes: 7 additions & 1 deletion tools/web3-plugin-example/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,4 +82,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Dependencies updated

## [Unreleased]
## [1.0.6]

### Changed

- Dependencies updated

## [Unreleased]

0 comments on commit c8799b0

Please sign in to comment.