Skip to content

Commit

Permalink
Release/4.0.3 (#6266)
Browse files Browse the repository at this point in the history
* version bumps 4.0.3

* changelog updates
  • Loading branch information
jdevcs committed Jul 11, 2023
1 parent 602dada commit ebd0c57
Show file tree
Hide file tree
Showing 40 changed files with 298 additions and 133 deletions.
75 changes: 72 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -1697,13 +1697,82 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Dependencies updated

## [Unreleased]
## [4.0.3]

### Fixed

#### web3

- Fixed bug #6236 by adding personal type in web3.eth (#6245)

#### web3-rpc-methods

- Rpc method `getPastLogs` accept blockHash as a parameter https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getlogs (#6181)

#### web3-types

- type `Filter` includes `blockHash` (#6206)

#### web3-utils

- BigInts pass validation within the method `numberToHex` (#6206)

#### web3-rpc-methods
### Changed

#### web3-core

- Dependencies updated

#### web3-errors

- Dependencies updated

#### web3-eth

- Dependencies updated

#### web3-eth-abi

- Dependencies updated

#### web3-eth-accounts

- Dependencies updated

#### web3-eth-contract

- Rpc method `getPastLogs` accept blockHash as a parameter https://ethereum.org/en/developers/docs/apis/json-rpc/#eth_getlogs (#6181)
- 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-validator

- Dependencies updated

## [Unreleased]
6 changes: 6 additions & 0 deletions packages/web3-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,10 @@ Documentation:
- Fixed the issue: Unsubscribe at a Web3Subscription class will still have the id of the subscription at the Web3SubscriptionManager (#6210)
- Fixed the issue: A call to the provider is made for every subscription object (#6210)

## [4.0.3]

### Changed

- Dependencies updated

## [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.2",
"version": "4.0.3",
"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.1",
"web3-eth-iban": "^4.0.2",
"web3-providers-http": "^4.0.2",
"web3-providers-ws": "^4.0.2",
"web3-types": "^1.0.1",
"web3-utils": "^4.0.2",
"web3-validator": "^1.0.1"
"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"
},
"optionalDependencies": {
"web3-providers-ipc": "^4.0.2"
"web3-providers-ipc": "^4.0.3"
},
"devDependencies": {
"@types/jest": "^28.1.6",
Expand Down
6 changes: 6 additions & 0 deletions packages/web3-errors/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,4 +124,10 @@ Documentation:

- Dependencies updated

## [1.0.2]

### Changed

- Dependencies updated

## [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.1",
"version": "1.0.2",
"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.1"
"web3-types": "^1.0.2"
},
"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 @@ -118,4 +118,10 @@ Documentation:

- Support for "decoding" indexed string event arguments (returns the keccak256 hash of the string value instead of the actual string value) (#6167)

## [4.0.3]

### 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.0.2",
"version": "4.0.3",
"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.1",
"web3-types": "^1.0.1",
"web3-utils": "^4.0.2"
"web3-errors": "^1.0.2",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3"
},
"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 @@ -112,4 +112,10 @@ Documentation:

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

## [4.0.3]

### 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.2",
"version": "4.0.3",
"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.2"
"web3-providers-ipc": "^4.0.3"
},
"dependencies": {
"@ethereumjs/rlp": "^4.0.1",
"crc-32": "^1.2.2",
"ethereum-cryptography": "^2.0.0",
"web3-errors": "^1.0.1",
"web3-types": "^1.0.1",
"web3-utils": "^4.0.2",
"web3-validator": "^1.0.1"
"web3-errors": "^1.0.2",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3",
"web3-validator": "^1.0.2"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,4 +278,10 @@ Documentation:

- Event filtering using non-indexed and indexed string event arguments (#6167)

## [4.0.3]

### 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.2",
"version": "4.0.3",
"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.2",
"web3-errors": "^1.0.1",
"web3-eth": "^4.0.2",
"web3-eth-abi": "^4.0.2",
"web3-types": "^1.0.1",
"web3-utils": "^4.0.2",
"web3-validator": "^1.0.1"
"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"
},
"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.2"
"web3-eth-accounts": "^4.0.3"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,10 @@ Documentation:

- Fixed bug #6185, now web3.js compiles on typescript v5 (#6195)

## [4.0.3]

### 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.2",
"version": "4.0.3",
"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.2",
"web3-errors": "^1.0.1",
"web3-eth": "^4.0.2",
"web3-eth-contract": "^4.0.2",
"web3-net": "^4.0.2",
"web3-types": "^1.0.1",
"web3-utils": "^4.0.2",
"web3-validator": "^1.0.1"
"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"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-iban/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,10 @@ Documentation:

- Dependencies updated

## [4.0.3]

### 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.2",
"version": "4.0.3",
"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.1",
"web3-types": "^1.0.1",
"web3-utils": "^4.0.2",
"web3-validator": "^1.0.1"
"web3-errors": "^1.0.2",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3",
"web3-validator": "^1.0.2"
}
}
6 changes: 6 additions & 0 deletions packages/web3-eth-personal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,4 +111,10 @@ Documentation:

- Dependencies updated

## [4.0.3]

### Changed

- Dependencies updated

## [Unreleased]
16 changes: 8 additions & 8 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.2",
"version": "4.0.3",
"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,12 +42,12 @@
"test:integration": "jest --config=./test/integration/jest.config.js"
},
"dependencies": {
"web3-core": "^4.0.2",
"web3-eth": "^4.0.2",
"web3-rpc-methods": "^1.0.1",
"web3-types": "^1.0.1",
"web3-utils": "^4.0.2",
"web3-validator": "^1.0.1"
"web3-core": "^4.0.3",
"web3-eth": "^4.0.3",
"web3-rpc-methods": "^1.0.2",
"web3-types": "^1.0.2",
"web3-utils": "^4.0.3",
"web3-validator": "^1.0.2"
},
"devDependencies": {
"@types/jest": "^28.1.6",
Expand All @@ -62,6 +62,6 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-providers-ws": "^4.0.2"
"web3-providers-ws": "^4.0.3"
}
}
Loading

0 comments on commit ebd0c57

Please sign in to comment.