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.1.2 #6437

Merged
merged 2 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all 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
66 changes: 64 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1993,22 +1993,31 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Dependencies updated

## [Unreleased]
## [4.1.2]

### Fixed

#### web3

- Fix of incorrect provider warning behaviour
- Fix of incorrect provider warning behavior

#### web3-eth-accounts

- Fixed "The `r` and `s` returned by `sign` to does not always consist of 64 characters" (#6411)

#### web3-eth-contract


#### web3-utils

- `soliditySha3()` with BigInt support

### Added

#### web3-core

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

#### web3-eth

- 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)
Expand All @@ -2021,3 +2030,56 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
#### web3-types

- add `asEIP1193Provider` to `Web3BaseProvider` so every inherited class can have the returned value of `request` method, fully compatible with EIP-1193. (#6407)

### Changed

#### web3-core

- Dependencies updated

#### web3-errors

- Dependencies updated

#### web3-eth-abi

- 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-providers-ws

- Dependencies updated

#### web3-rpc-methods

- Dependencies updated

#### web3-validator

- Dependencies updated


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

- To fix issue #6190, added the functionality to introduce different timeout value for Web3. (#6336)

## [Unreleased]
## [4.2.0]

### Added

- 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]
20 changes: 10 additions & 10 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.1.1",
"version": "4.2.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,25 +42,25 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"web3-errors": "^1.1.1",
"web3-eth-iban": "^4.0.5",
"web3-providers-http": "^4.0.5",
"web3-providers-ws": "^4.0.5",
"web3-types": "^1.1.1",
"web3-utils": "^4.0.5",
"web3-validator": "^2.0.1"
"web3-errors": "^1.1.2",
"web3-eth-iban": "^4.0.6",
"web3-providers-http": "^4.0.6",
"web3-providers-ws": "^4.0.6",
"web3-types": "^1.2.0",
"web3-utils": "^4.0.6",
"web3-validator": "^2.0.2"
},
"optionalDependencies": {
"web3-providers-ipc": "^4.0.5"
"web3-providers-ipc": "^4.0.6"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/jest-when": "^3.5.2",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-base-web3": "0.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"jest-extended": "^3.0.1",
Expand Down
8 changes: 7 additions & 1 deletion packages/web3-errors/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,10 @@ Documentation:

- ESM import bug (#6359)

## [Unreleased]
## [1.1.2]

### Changed

- Dependencies updated

## [Unreleased]
6 changes: 3 additions & 3 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.1.1",
"version": "1.1.2",
"description": "This package has web3 error classes",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -41,15 +41,15 @@
"test:integration": "jest --config=./test/integration/jest.config.js --passWithNoTests"
},
"dependencies": {
"web3-types": "^1.1.1"
"web3-types": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-base-web3": "0.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"jest-extended": "^3.0.1",
Expand Down
8 changes: 7 additions & 1 deletion packages/web3-eth-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.1.2]

### Changed

- Dependencies updated

## [Unreleased]
10 changes: 5 additions & 5 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.1",
"version": "4.1.2",
"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.1.1",
"web3-types": "^1.1.1",
"web3-utils": "^4.0.5"
"web3-errors": "^1.1.2",
"web3-types": "^1.2.0",
"web3-utils": "^4.0.6"
},
"devDependencies": {
"@humeris/espresso-shot": "^4.0.0",
Expand All @@ -55,8 +55,8 @@
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-base-web3": "0.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"jest-extended": "^3.0.1",
Expand Down
5 changes: 4 additions & 1 deletion packages/web3-eth-accounts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,11 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.0.6]

### Fixed

- Fixed "The `r` and `s` returned by `sign` to does not always consist of 64 characters" (#6411)


## [Unreleased]
14 changes: 7 additions & 7 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.5",
"version": "4.0.6",
"description": "Package for managing Ethereum accounts and signing",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -46,24 +46,24 @@
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-base-web3": "0.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"jest-extended": "^3.0.1",
"jest-when": "^3.5.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-providers-ipc": "^4.0.5"
"web3-providers-ipc": "^4.0.6"
},
"dependencies": {
"@ethereumjs/rlp": "^4.0.1",
"crc-32": "^1.2.2",
"ethereum-cryptography": "^2.0.0",
"web3-errors": "^1.1.1",
"web3-types": "^1.1.1",
"web3-utils": "^4.0.5",
"web3-validator": "^2.0.1"
"web3-errors": "^1.1.2",
"web3-types": "^1.2.0",
"web3-utils": "^4.0.6",
"web3-validator": "^2.0.2"
}
}
7 changes: 4 additions & 3 deletions packages/web3-eth-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,11 +300,12 @@ Documentation:

- In case of error events there will be inner error also available for details

## [Unreleased]

### Fixed
## [4.1.0]

### Added

- Added `dataInputFill` as a ContractInitOption, allowing users to have the choice using property `data`, `input` or `both` for contract methods to be sent to the RPC provider. (#6355)
- 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]
20 changes: 10 additions & 10 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.5",
"version": "4.1.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,28 +45,28 @@
"test:e2e:firefox": "npx cypress run --headless --browser firefox --env grep='ignore',invert=true"
},
"dependencies": {
"web3-core": "^4.1.1",
"web3-errors": "^1.1.1",
"web3-eth": "^4.1.1",
"web3-eth-abi": "^4.1.1",
"web3-types": "^1.1.1",
"web3-utils": "^4.0.5",
"web3-validator": "^2.0.1"
"web3-core": "^4.2.0",
"web3-errors": "^1.1.2",
"web3-eth": "^4.2.0",
"web3-eth-abi": "^4.1.2",
"web3-types": "^1.2.0",
"web3-utils": "^4.0.6",
"web3-validator": "^2.0.2"
},
"devDependencies": {
"@humeris/espresso-shot": "^4.0.0",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-base-web3": "0.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"jest-extended": "^3.0.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-eth-accounts": "^4.0.5"
"web3-eth-accounts": "^4.0.6"
}
}
8 changes: 7 additions & 1 deletion packages/web3-eth-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,10 @@ Documentation:

- Dependencies updated

## [Unreleased]
## [4.0.6]

### Changed

- Dependencies updated

## [Unreleased]
20 changes: 10 additions & 10 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.5",
"version": "4.0.6",
"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 @@ -48,8 +48,8 @@
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-base-web3": "0.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.3",
"jest-extended": "^3.0.1",
Expand All @@ -59,13 +59,13 @@
},
"dependencies": {
"@adraffy/ens-normalize": "^1.8.8",
"web3-core": "^4.1.1",
"web3-errors": "^1.1.1",
"web3-eth": "^4.1.1",
"web3-eth-contract": "^4.0.5",
"web3-net": "^4.0.5",
"web3-types": "^1.1.1",
"web3-utils": "^4.0.5",
"web3-validator": "^2.0.1"
"web3-core": "^4.2.0",
"web3-errors": "^1.1.2",
"web3-eth": "^4.2.0",
"web3-eth-contract": "^4.1.0",
"web3-net": "^4.0.6",
"web3-types": "^1.2.0",
"web3-utils": "^4.0.6",
"web3-validator": "^2.0.2"
}
}
Loading
Loading