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

4.2.1 release #6545

Merged
merged 2 commits into from
Oct 25, 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
24 changes: 22 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2199,10 +2199,30 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Dependencies updated

## [Unreleased]
## [4.2.1]

### Fixed

#### web3-eth-abi

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

### Changed

#### web3-eth-contract

- Dependencies updated

#### web3-eth

- Dependencies updated

#### web3-eth-ens

- Dependencies updated

#### web3-eth-personal

- Dependencies updated

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

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

## [Unreleased]
## [4.1.4]

### Fixed

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

## [Unreleased]
2 changes: 1 addition & 1 deletion 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.3",
"version": "4.1.4",
"description": "Web3 module encode and decode EVM in/output.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down
8 changes: 7 additions & 1 deletion packages/web3-eth-contract/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -314,4 +314,10 @@ Documentation:

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

## [Unreleased]
## [4.1.2]

### Changed

- Dependencies updated

## [Unreleased]
6 changes: 3 additions & 3 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.1",
"version": "4.1.2",
"description": "Web3 module to interact with Ethereum smart contracts.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -47,8 +47,8 @@
"dependencies": {
"web3-core": "^4.3.0",
"web3-errors": "^1.1.3",
"web3-eth": "^4.3.0",
"web3-eth-abi": "^4.1.3",
"web3-eth": "^4.3.1",
"web3-eth-abi": "^4.1.4",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-validator": "^2.0.3"
Expand Down
6 changes: 6 additions & 0 deletions packages/web3-eth-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,10 @@ Documentation:

- Dependencies updated

## [4.0.8]

### Changed

- Dependencies updated

## [Unreleased]
6 changes: 3 additions & 3 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.7",
"version": "4.0.8",
"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 @@ -61,8 +61,8 @@
"@adraffy/ens-normalize": "^1.8.8",
"web3-core": "^4.3.0",
"web3-errors": "^1.1.3",
"web3-eth": "^4.3.0",
"web3-eth-contract": "^4.1.1",
"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",
Expand Down
6 changes: 6 additions & 0 deletions packages/web3-eth-personal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,10 @@ Documentation:

- Dependencies updated

## [4.0.8]

### Changed

- Dependencies updated

## [Unreleased]
4 changes: 2 additions & 2 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.7",
"version": "4.0.8",
"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 @@ -43,7 +43,7 @@
},
"dependencies": {
"web3-core": "^4.3.0",
"web3-eth": "^4.3.0",
"web3-eth": "^4.3.1",
"web3-rpc-methods": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
Expand Down
6 changes: 6 additions & 0 deletions packages/web3-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,10 @@ Documentation:

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

## [4.3.1]

### Changed

- Dependencies updated

## [Unreleased]
4 changes: 2 additions & 2 deletions packages/web3-eth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-eth",
"version": "4.3.0",
"version": "4.3.1",
"description": "Web3 module to interact with the Ethereum blockchain and smart contracts.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -65,7 +65,7 @@
"setimmediate": "^1.0.5",
"web3-core": "^4.3.0",
"web3-errors": "^1.1.3",
"web3-eth-abi": "^4.1.3",
"web3-eth-abi": "^4.1.4",
"web3-eth-accounts": "^4.1.0",
"web3-net": "^4.0.7",
"web3-providers-ws": "^4.0.7",
Expand Down
6 changes: 6 additions & 0 deletions packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,10 @@ Documentation:

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

## [4.2.1]

### Changed

- Dependencies updated

## [Unreleased]
12 changes: 6 additions & 6 deletions packages/web3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3",
"version": "4.2.0",
"version": "4.2.1",
luu-alex marked this conversation as resolved.
Show resolved Hide resolved
"description": "Ethereum JavaScript API",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -83,13 +83,13 @@
"dependencies": {
"web3-core": "^4.3.0",
"web3-errors": "^1.1.3",
"web3-eth": "^4.3.0",
"web3-eth-abi": "^4.1.3",
"web3-eth": "^4.3.1",
"web3-eth-abi": "^4.1.4",
"web3-eth-accounts": "^4.1.0",
"web3-eth-contract": "^4.1.1",
"web3-eth-ens": "^4.0.7",
"web3-eth-contract": "^4.1.2",
"web3-eth-ens": "^4.0.8",
"web3-eth-iban": "^4.0.7",
"web3-eth-personal": "^4.0.7",
"web3-eth-personal": "^4.0.8",
"web3-net": "^4.0.7",
"web3-providers-http": "^4.1.0",
"web3-providers-ws": "^4.0.7",
Expand Down
2 changes: 1 addition & 1 deletion packages/web3/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.2.0' };
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.2.1' };
6 changes: 3 additions & 3 deletions tools/web3-plugin-example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3": "^4.2.0",
"web3": "^4.2.1",
"web3-core": "^4.3.0",
"web3-eth-abi": "^4.1.3",
"web3-eth-contract": "^4.1.1",
"web3-eth-abi": "^4.1.4",
"web3-eth-contract": "^4.1.2",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7"
},
Expand Down
Loading