Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/4.3.0 #6630

Merged
merged 11 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2226,6 +2226,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
- Dependencies updated

## [4.2.2]

### Added

#### web3-core
Expand Down Expand Up @@ -2253,4 +2254,80 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Will populate `data` for transactions in contract for metamask provider instead of `input` (#6534)

## [4.3.0]

### Changed

#### web3-core

- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)

#### web3-eth-abi

- Dependencies updated

#### web3-eth-accounts

- Dependencies updated

#### web3-eth-contracts

- By default, contracts will fill `data` instead of `input` within method calls (#6622)

#### web3-eth-ens

- Dependencies updated

#### web3-eth-iban

- Dependencies updated

#### web3-eth

- Dependencies updated

#### web3-net

- Dependencies updated

#### web3-providers-http

- Dependencies updated

#### web3-providers-ipc

- Dependencies updated

#### web3-providers-ws

- Dependencies updated

### Added

#### web3-eth-accounts

- Added public function `privateKeyToPublicKey`
- Added exporting `BaseTransaction` from the package (#6493)
- Added exporting `txUtils` from the package (#6493)

#### web3-utils

- `SocketProvider` now contains public function `getPendingRequestQueueSize`, `getSentRequestsQueueSize` and `clearQueues` (#6479)
- Added `safeDisconnect` as a `SocketProvider` method to disconnect only when request queue size and send request queue size is 0 (#6479)
- Add `isContractInitOptions` method (#6555)

### Fixed

#### web3-eth-accounts

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

#### web3-rpc-methods

- Fix web3-types import #6590 (#6589)

#### web3-utils

- Fix unecessary array copy when pack encoding (#6553)

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

- Added `isMetaMaskProvider` function to check if provider is metamask (#6534)

## [Unreleased]
## [4.4.0]
luu-alex marked this conversation as resolved.
Show resolved Hide resolved

### Changed

- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)
- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)

## [Unreleased]
12 changes: 6 additions & 6 deletions packages/web3-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-core",
"version": "4.3.1",
"version": "4.4.0",
"description": "Web3 core tools for sub-packages. This is an internal package.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -43,16 +43,16 @@
},
"dependencies": {
"web3-errors": "^1.1.4",
"web3-eth-iban": "^4.0.7",
"web3-eth-accounts": "^4.1.0",
"web3-providers-http": "^4.1.0",
"web3-providers-ws": "^4.0.7",
"web3-eth-iban": "^4.0.8",
"web3-providers-http": "^4.1.1",
"web3-providers-ws": "^4.0.8",
"web3-types": "^1.3.1",
"web3-utils": "^4.0.7",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
},
"optionalDependencies": {
"web3-providers-ipc": "^4.0.7"
"web3-providers-ipc": "^4.0.8"
},
"devDependencies": {
"@types/jest": "^28.1.6",
Expand Down
6 changes: 6 additions & 0 deletions packages/web3-eth-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,10 @@ Documentation:

- Bug fix of `ERR_UNSUPPORTED_DIR_IMPORT` in ABI (#6535)

## [4.1.5]

### Changed

- Dependencies updated

## [Unreleased]
8 changes: 4 additions & 4 deletions packages/web3-eth-abi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-abi",
"version": "4.1.4",
"version": "4.1.5",
"description": "Web3 module encode and decode EVM in/output.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -43,9 +43,9 @@
},
"dependencies": {
"abitype": "0.7.1",
"web3-errors": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-errors": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
},
"devDependencies": {
Expand Down
4 changes: 4 additions & 0 deletions packages/web3-eth-accounts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,4 +149,8 @@ Documentation:

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

### Changed
luu-alex marked this conversation as resolved.
Show resolved Hide resolved

- Dependencies updated

## [Unreleased]
8 changes: 4 additions & 4 deletions packages/web3-eth-accounts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-providers-ipc": "^4.0.7"
"web3-providers-ipc": "^4.0.8"
},
"dependencies": {
"@ethereumjs/rlp": "^4.0.1",
"crc-32": "^1.2.2",
"ethereum-cryptography": "^2.0.0",
"web3-errors": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-errors": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
}
}
6 changes: 4 additions & 2 deletions packages/web3-eth-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -347,8 +347,10 @@ Documentation:

- Will populate `data` for transactions in contract for metamask provider instead of `input` (#6534)

## [Unreleased]
## [4.2.0]

### Changed

- `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)
- By default, contracts will fill `data` instead of `input` within method calls (#6622)

## [Unreleased]
10 changes: 5 additions & 5 deletions packages/web3-eth-contract/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-contract",
"version": "4.1.3",
"version": "4.2.0",
"description": "Web3 module to interact with Ethereum smart contracts.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -45,12 +45,12 @@
"test:e2e:firefox": "npx cypress run --headless --browser firefox --env grep='ignore',invert=true"
},
"dependencies": {
"web3-core": "^4.3.1",
"web3-core": "^4.4.0",
"web3-errors": "^1.1.4",
"web3-eth": "^4.3.1",
"web3-eth-abi": "^4.1.4",
"web3-eth": "^4.4.0",
"web3-eth-abi": "^4.1.5",
"web3-types": "^1.3.1",
"web3-utils": "^4.0.7",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
},
"devDependencies": {
Expand Down
8 changes: 7 additions & 1 deletion packages/web3-eth-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.0.9]

### Changed

- Dependencies updated

## [Unreleased]
16 changes: 8 additions & 8 deletions packages/web3-eth-ens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-ens",
"version": "4.0.8",
"version": "4.0.9",
"description": "This package has ENS functions for interacting with Ethereum Name Service.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -59,13 +59,13 @@
},
"dependencies": {
"@adraffy/ens-normalize": "^1.8.8",
"web3-core": "^4.3.0",
"web3-errors": "^1.1.3",
"web3-eth": "^4.3.1",
"web3-eth-contract": "^4.1.2",
"web3-net": "^4.0.7",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-core": "^4.4.0",
"web3-errors": "^1.1.4",
"web3-eth": "^4.4.0",
"web3-eth-contract": "^4.2.0",
"web3-net": "^4.0.8",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-iban/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,4 +125,10 @@ Documentation:

- Dependencies updated

## [4.0.8]

### Changed

- Dependencies updated

## [Unreleased]
8 changes: 4 additions & 4 deletions packages/web3-eth-iban/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-iban",
"version": "4.0.7",
"version": "4.0.8",
"description": "This package converts Ethereum addresses to IBAN addresses and vice versa.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -56,9 +56,9 @@
"typescript": "^4.7.4"
},
"dependencies": {
"web3-errors": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-errors": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-personal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,4 +147,10 @@ Documentation:

- Dependencies updated

## [4.0.9]

### Changed

- Dependencies updated
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if there are only patch & minor dep updates we can skip changes in these packages,

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

skipped packages that are only patch/minor dep updates


## [Unreleased]
14 changes: 7 additions & 7 deletions packages/web3-eth-personal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-personal",
"version": "4.0.8",
"version": "4.0.9",
"description": "Web3 module to interact with the Ethereum blockchain accounts stored in the node.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -42,11 +42,11 @@
"test:integration": "jest --config=./test/integration/jest.config.js"
},
"dependencies": {
"web3-core": "^4.3.0",
"web3-eth": "^4.3.1",
"web3-rpc-methods": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-core": "^4.4.0",
"web3-eth": "^4.4.0",
"web3-rpc-methods": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
},
"devDependencies": {
Expand All @@ -62,6 +62,6 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-providers-ws": "^4.0.7"
"web3-providers-ws": "^4.0.8"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,10 @@ Documentation:

- Dependencies updated

## [4.4.0]

### Changed

- Dependencies updated

## [Unreleased]
Loading
Loading