Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 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
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2802,7 +2802,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Fix Contract methods input param type any[] (#7340)

## [Unreleased]
## [4.16.0]

### Fixed

Expand All @@ -2813,3 +2813,17 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
#### web3-utils

- Make `fromWei` return "0" when input is `0` (#7387)

### Removed

#### web3-eth-accounts

- Move signature related types to web3-types. Re-export them for backwards compatibility. (#7374)

### Added

#### web3-types

- Add signature related types. (#7374)

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

- `hashMessage` now has a new optional param `skipPrefix` with a default value of `false`. A new function `signRaw` was added to sign a message without prefix. (#7346)

## [Unreleased]
## [4.3.1]

### Removed

- Move signature related types to web3-types. Re-export them for backwards compatibility. (#7374)

## [Unreleased]
6 changes: 3 additions & 3 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.3.0",
"version": "4.3.1",
"description": "Package for managing Ethereum accounts and signing",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -62,8 +62,8 @@
"crc-32": "^1.2.2",
"ethereum-cryptography": "^2.0.0",
"web3-errors": "^1.3.0",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-types": "^1.10.0",
"web3-utils": "^4.3.3",
"web3-validator": "^2.0.6"
}
}
4 changes: 3 additions & 1 deletion packages/web3-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,10 @@ Documentation:

- `FilterParams` type added (#7353)

## [Unreleased]
## [1.10.0]

#### Added

- Add signature related types. (#7374)

## [Unreleased]
2 changes: 1 addition & 1 deletion packages/web3-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-types",
"version": "1.9.0",
"version": "1.10.0",
"description": "Provide the common data structures and interfaces for web3 modules.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down
4 changes: 3 additions & 1 deletion packages/web3-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,10 @@ Documentation:

- fix `padRight` validation failure on large `uint` (#7265)

## [Unreleased]
## [4.3.3]

### Fixed

- Make `fromWei` return "0" when input is `0` (#7387)

## [Unreleased]
4 changes: 2 additions & 2 deletions packages/web3-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "web3-utils",
"sideEffects": false,
"version": "4.3.2",
"version": "4.3.3",
"description": "Collection of utility functions used in web3.js.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -66,7 +66,7 @@
"ethereum-cryptography": "^2.0.0",
"eventemitter3": "^5.0.1",
"web3-errors": "^1.3.0",
"web3-types": "^1.8.1",
"web3-types": "^1.10.0",
"web3-validator": "^2.0.6"
}
}
14 changes: 13 additions & 1 deletion packages/web3/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -560,10 +560,22 @@ Documentation:

- Fix Contract methods input param type any[] (#7340)

## [Unreleased]
## [4.16.0]

### Fixed

#### web3

- Export Web3Account, Wallet and signature related types. (#7374)

#### web3-utils

- Make `fromWei` return "0" when input is `0` (#7387)

### Removed

#### web3-eth-accounts

- Move signature related types to web3-types. Re-export them for backwards compatibility. (#7374)

## [Unreleased]
8 changes: 4 additions & 4 deletions packages/web3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3",
"version": "4.15.0",
"version": "4.16.0",
"description": "Ethereum JavaScript API",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -90,7 +90,7 @@
"web3-errors": "^1.3.0",
"web3-eth": "^4.11.0",
"web3-eth-abi": "^4.4.0",
"web3-eth-accounts": "^4.3.0",
"web3-eth-accounts": "^4.3.1",
"web3-eth-contract": "^4.7.1",
"web3-eth-ens": "^4.4.0",
"web3-eth-iban": "^4.0.7",
Expand All @@ -100,8 +100,8 @@
"web3-providers-ws": "^4.0.8",
"web3-rpc-methods": "^1.3.0",
"web3-rpc-providers": "^1.0.0-rc.3",
"web3-types": "^1.9.0",
"web3-utils": "^4.3.2",
"web3-types": "^1.10.0",
"web3-utils": "^4.3.3",
"web3-validator": "^2.0.6"
}
}
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.15.0' };
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.16.0' };
Loading