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.0.4 RC #6331

Closed
wants to merge 5 commits into from
Closed
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
61 changes: 60 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1775,13 +1775,23 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Dependencies updated

## [Unreleased]
## [4.0.4]

### Added

#### web3

- Added minimum support of web3.extend function

#### web3-core

- Added minimum support of web3.extend function

#### web3-errors

- `RpcErrorMessages` that contains mapping for standard RPC Errors and their messages. (#6230)
- created `TransactionGasMismatchInnerError` for clarity on the error in `TransactionGasMismatchError` (#6215)
- created `MissingGasInnerError` for clarity on the error in `MissingGasError` (#6215)

#### web3-eth

Expand Down Expand Up @@ -1817,7 +1827,13 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

#### web3-eth

- sendTransaction will have gas filled by default using method `estimateGas` unless transaction builder `options.fillGas` is false. (#6249)
- Missing `blockHeaderSchema` properties causing some properties to not appear in response of `newHeads` subscription (#6243)
- Missing `blockHeaderSchema` properties causing some properties to not appear in response of `newHeads` subscription (#6243)

#### web3-providers-ws

- Ensure a fixed version for "@types/ws": "8.5.3" (#6309)

### Changed

Expand All @@ -1830,12 +1846,53 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

#### web3-eth

- `MissingGasError` error message changed for clarity (#6215)
- `input` and `data` are no longer auto populated for transaction objects if they are not present. Instead, whichever property is provided by the user is formatted and sent to the RPC provider. Transaction objects returned from RPC responses are still formatted to contain both `input` and `data` properties (#6294)

#### web3-eth-accounts

- Dependencies updated

#### web3-eth-contract

- Dependencies updated

#### web3-eth-ens

- Dependencies updated

#### web3-eth-iban

- Dependencies updated

#### web3-eth-personal

- Dependencies updated

#### web3-net

- Dependencies updated

#### web3-providers-http

- Dependencies updated

#### web3-providers-ipc

- Dependencies updated

#### web3-rpc-methods

- Dependencies updated

#### web3-types

- `input` and `data` are now optional properties on `PopulatedUnsignedBaseTransaction` (previously `input` was a required property, and `data` was not available) (#6294)

#### web3-utils

- Dependencies updated

#### web3-validator

- Replace `is-my-json-valid` with `zod` dependency. Related code was changed (#6264)
Expand All @@ -1851,3 +1908,5 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
#### web3-validator

- Type `RawValidationError` was removed (#6264)

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

- Dependencies updated

## [Unreleased]
## [4.0.4]

### Changed

Expand All @@ -159,6 +159,8 @@ Documentation:

- Fixed the issue: "Version 4.x does not fire connected event for subscriptions. #6252". (#6262)

## Added
### Added

- Added minimum support of web3.extend function

## [Unreleased]
18 changes: 9 additions & 9 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.0.3",
"version": "4.0.4-rc.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 @@ -42,16 +42,16 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"web3-errors": "^1.0.2",
"web3-eth-iban": "^4.0.3",
"web3-providers-http": "^4.0.3",
"web3-providers-ws": "^4.0.3",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3",
"web3-validator": "^1.0.2"
"web3-errors": "^1.0.3-rc.0",
"web3-eth-iban": "^4.0.4-rc.0",
"web3-providers-http": "^4.0.4-rc.0",
"web3-providers-ws": "^4.0.4-rc.0",
"web3-types": "^1.0.3-rc.0",
"web3-utils": "^4.0.4-rc.0",
"web3-validator": "^2.0.0-rc.0"
},
"optionalDependencies": {
"web3-providers-ipc": "^4.0.3"
"web3-providers-ipc": "^4.0.4-rc.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-errors/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [1.0.3]

### Added

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

- Fixed: "'disconnect' in Eip1193 provider must emit ProviderRpcError #6003".(#6230)

## [Unreleased]
4 changes: 2 additions & 2 deletions packages/web3-errors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-errors",
"version": "1.0.2",
"version": "1.0.3-rc.0",
"description": "This package has web3 error classes",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -41,7 +41,7 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"web3-types": "^1.0.2"
"web3-types": "^1.0.3-rc.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-eth-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.0.4]

### Added

- A `getEncodedEip712Data` method that takes an EIP-712 typed data object and returns the encoded data with the option to also keccak256 hash it (#6286)

## [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.0.3",
"version": "4.0.4-rc.0",
"description": "Web3 module encode and decode EVM in/output.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -44,9 +44,9 @@
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"web3-errors": "^1.0.2",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3"
"web3-errors": "^1.0.3-rc.0",
"web3-types": "^1.0.3-rc.0",
"web3-utils": "^4.0.4-rc.0"
},
"devDependencies": {
"@humeris/espresso-shot": "^4.0.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/web3-eth-accounts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,10 @@ Documentation:

- Dependencies updated

## [4.0.4]

### Changed

- Dependencies updated

## [Unreleased]
12 changes: 6 additions & 6 deletions packages/web3-eth-accounts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth-accounts",
"version": "4.0.3",
"version": "4.0.4-rc.0",
"description": "Package for managing Ethereum accounts and signing",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -55,15 +55,15 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-providers-ipc": "^4.0.3"
"web3-providers-ipc": "^4.0.4-rc.0"
},
"dependencies": {
"@ethereumjs/rlp": "^4.0.1",
"crc-32": "^1.2.2",
"ethereum-cryptography": "^2.0.0",
"web3-errors": "^1.0.2",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3",
"web3-validator": "^1.0.2"
"web3-errors": "^1.0.3-rc.0",
"web3-types": "^1.0.3-rc.0",
"web3-utils": "^4.0.4-rc.0",
"web3-validator": "^2.0.0-rc.0"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -284,4 +284,10 @@ Documentation:

- Dependencies updated

## [4.0.4]

### Changed

- Dependencies updated

## [Unreleased]
18 changes: 9 additions & 9 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.0.3",
"version": "4.0.4-rc.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,13 +45,13 @@
"test:e2e:firefox": "npx cypress run --headless --browser firefox --env grep='ignore',invert=true"
},
"dependencies": {
"web3-core": "^4.0.3",
"web3-errors": "^1.0.2",
"web3-eth": "^4.0.3",
"web3-eth-abi": "^4.0.3",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3",
"web3-validator": "^1.0.2"
"web3-core": "^4.0.4-rc.0",
"web3-errors": "^1.0.3-rc.0",
"web3-eth": "^4.0.4-rc.0",
"web3-eth-abi": "^4.0.4-rc.0",
"web3-types": "^1.0.3-rc.0",
"web3-utils": "^4.0.4-rc.0",
"web3-validator": "^2.0.0-rc.0"
},
"devDependencies": {
"@humeris/espresso-shot": "^4.0.0",
Expand All @@ -67,6 +67,6 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-eth-accounts": "^4.0.3"
"web3-eth-accounts": "^4.0.4-rc.0"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,10 @@ Documentation:

- Dependencies updated

## [4.0.4]

### Changed

- Dependencies updated

## [Unreleased]
18 changes: 9 additions & 9 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.3",
"version": "4.0.4-rc.0",
"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.0.3",
"web3-errors": "^1.0.2",
"web3-eth": "^4.0.3",
"web3-eth-contract": "^4.0.3",
"web3-net": "^4.0.3",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3",
"web3-validator": "^1.0.2"
"web3-core": "^4.0.4-rc.0",
"web3-errors": "^1.0.3-rc.0",
"web3-eth": "^4.0.4-rc.0",
"web3-eth-contract": "^4.0.4-rc.0",
"web3-net": "^4.0.4-rc.0",
"web3-types": "^1.0.3-rc.0",
"web3-utils": "^4.0.4-rc.0",
"web3-validator": "^2.0.0-rc.0"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-iban/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,10 @@ Documentation:

- Dependencies updated

## [4.0.4]

### Changed

- Dependencies updated

## [Unreleased]
10 changes: 5 additions & 5 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.3",
"version": "4.0.4-rc.0",
"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.0.2",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3",
"web3-validator": "^1.0.2"
"web3-errors": "^1.0.3-rc.0",
"web3-types": "^1.0.3-rc.0",
"web3-utils": "^4.0.4-rc.0",
"web3-validator": "^2.0.0-rc.0"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-personal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,10 @@ Documentation:

- Dependencies updated

## [4.0.4]

### Changed

- Dependencies updated

## [Unreleased]
Loading
Loading