Skip to content

Commit

Permalink
revert some package bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
luu-alex committed Nov 29, 2023
1 parent 9ccb2fb commit 4163ad1
Show file tree
Hide file tree
Showing 25 changed files with 78 additions and 174 deletions.
47 changes: 6 additions & 41 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2238,6 +2238,12 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
- Interface `MetaMaskProvider` added and is part of `SupportedProviders` (#6534)
- `gasPrice` was added to `Transaction1559UnsignedAPI` type. (#6539)

#### web3-eth-accounts

- Added public function `privateKeyToPublicKey`
- Added exporting `BaseTransaction` from the package (#6493)
- Added exporting `txUtils` from the package (#6493)

### Changed

#### web3
Expand All @@ -2262,53 +2268,12 @@ If there are any bugs, improvements, optimizations or any new feature proposal f

- Web3config `contractDataInputFill` has been defaulted to `data`, istead of `input`. (#6622)

#### web3-eth-abi

- Dependencies updated

#### web3-eth-accounts

- Dependencies updated

#### web3-eth-contracts

- By default, contracts will fill `data` instead of `input` within method calls (#6622)

#### web3-eth-ens

- Dependencies updated

#### web3-eth-iban

- Dependencies updated

#### web3-eth

- Dependencies updated

#### web3-net

- Dependencies updated

#### web3-providers-http

- Dependencies updated

#### web3-providers-ipc

- Dependencies updated

#### web3-providers-ws

- Dependencies updated

### Added

#### web3-eth-accounts

- Added public function `privateKeyToPublicKey`
- Added exporting `BaseTransaction` from the package (#6493)
- Added exporting `txUtils` from the package (#6493)

#### web3-utils

Expand Down
9 changes: 4 additions & 5 deletions packages/web3-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,15 @@
},
"dependencies": {
"web3-errors": "^1.1.4",
"web3-eth-accounts": "^4.1.1",
"web3-eth-iban": "^4.0.8",
"web3-providers-http": "^4.1.1",
"web3-providers-ws": "^4.0.8",
"web3-eth-iban": "^4.0.7",
"web3-eth-accounts": "^4.1.0",
"web3-providers-http": "^4.1.0",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
},
"optionalDependencies": {
"web3-providers-ipc": "^4.0.8"
"web3-providers-ipc": "^4.0.7"
},
"devDependencies": {
"@types/jest": "^28.1.6",
Expand Down
4 changes: 2 additions & 2 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.5",
"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 Expand Up @@ -43,7 +43,7 @@
},
"dependencies": {
"abitype": "0.7.1",
"web3-errors": "^1.1.4",
"web3-errors": "^1.1.3",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
Expand Down
6 changes: 0 additions & 6 deletions packages/web3-eth-accounts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,10 +149,4 @@ Documentation:

- Fixed `recover` function, `v` will be normalized to value 0,1 (#6344)

## [4.1.1]

### Changed

- Dependencies updated

## [Unreleased]
10 changes: 5 additions & 5 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.1.1",
"version": "4.1.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.8"
"web3-providers-ipc": "^4.0.7"
},
"dependencies": {
"@ethereumjs/rlp": "^4.0.1",
"crc-32": "^1.2.2",
"ethereum-cryptography": "^2.0.0",
"web3-errors": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-errors": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-validator": "^2.0.3"
}
}
6 changes: 3 additions & 3 deletions packages/web3-eth-contract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@
"dependencies": {
"web3-core": "^4.3.2",
"web3-errors": "^1.1.4",
"web3-eth": "^4.3.2",
"web3-eth-abi": "^4.1.5",
"web3-eth": "^4.3.1",
"web3-eth-abi": "^4.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-validator": "^2.0.3"
Expand All @@ -67,6 +67,6 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-eth-accounts": "^4.1.1"
"web3-eth-accounts": "^4.1.0"
}
}
6 changes: 0 additions & 6 deletions packages/web3-eth-ens/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,4 @@ Documentation:

- Dependencies updated

## [4.0.9]

### Changed

- Dependencies updated

## [Unreleased]
16 changes: 8 additions & 8 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.9",
"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 @@ -59,13 +59,13 @@
},
"dependencies": {
"@adraffy/ens-normalize": "^1.8.8",
"web3-core": "^4.3.2",
"web3-errors": "^1.1.4",
"web3-eth": "^4.3.2",
"web3-eth-contract": "^4.1.4",
"web3-net": "^4.0.8",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-core": "^4.3.0",
"web3-errors": "^1.1.3",
"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",
"web3-validator": "^2.0.3"
}
}
6 changes: 0 additions & 6 deletions packages/web3-eth-iban/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,4 @@ Documentation:

- Dependencies updated

## [4.0.8]

### Changed

- Dependencies updated

## [Unreleased]
8 changes: 4 additions & 4 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.8",
"version": "4.0.7",
"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.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-errors": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-validator": "^2.0.3"
}
}
12 changes: 0 additions & 12 deletions packages/web3-eth-personal/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,16 +141,4 @@ Documentation:

- Dependencies updated

## [4.0.8]

### Changed

- Dependencies updated

## [4.0.9]

### 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.9",
"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 All @@ -18,7 +18,7 @@
"node": ">=14",
"npm": ">=6.12.0"
},
"files": [
"files": [
"lib/**/*",
"src/**/*"
],
Expand All @@ -42,11 +42,11 @@
"test:integration": "jest --config=./test/integration/jest.config.js"
},
"dependencies": {
"web3-core": "^4.3.2",
"web3-eth": "^4.3.2",
"web3-rpc-methods": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-core": "^4.3.0",
"web3-eth": "^4.3.1",
"web3-rpc-methods": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-validator": "^2.0.3"
},
"devDependencies": {
Expand All @@ -62,6 +62,6 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-providers-ws": "^4.0.8"
"web3-providers-ws": "^4.0.7"
}
}
6 changes: 0 additions & 6 deletions packages/web3-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,4 @@ Documentation:

- Dependencies updated

## [4.3.2]

### Changed

- Dependencies updated

## [Unreleased]
22 changes: 11 additions & 11 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.2",
"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 @@ -59,19 +59,19 @@
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4",
"web3-providers-http": "^4.1.1"
"web3-providers-http": "^4.1.0"
},
"dependencies": {
"setimmediate": "^1.0.5",
"web3-core": "^4.3.2",
"web3-errors": "^1.1.4",
"web3-eth-abi": "^4.1.5",
"web3-eth-accounts": "^4.1.1",
"web3-net": "^4.0.8",
"web3-providers-ws": "^4.0.8",
"web3-rpc-methods": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0",
"web3-core": "^4.3.0",
"web3-errors": "^1.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",
"web3-rpc-methods": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7",
"web3-validator": "^2.0.3"
}
}
6 changes: 0 additions & 6 deletions packages/web3-net/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,4 @@ Documentation:

- Dependencies updated

## [4.0.8]

### Changed

- Dependencies updated

## [Unreleased]
10 changes: 5 additions & 5 deletions packages/web3-net/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-net",
"version": "4.0.8",
"version": "4.0.7",
"description": "Web3 module to interact with the Ethereum nodes networking properties.",
"main": "./lib/commonjs/index.js",
"module": "./lib/esm/index.js",
Expand Down Expand Up @@ -56,9 +56,9 @@
"typescript": "^4.7.4"
},
"dependencies": {
"web3-core": "^4.3.2",
"web3-rpc-methods": "^1.1.4",
"web3-types": "^1.3.1",
"web3-utils": "^4.1.0"
"web3-core": "^4.3.0",
"web3-rpc-methods": "^1.1.3",
"web3-types": "^1.3.0",
"web3-utils": "^4.0.7"
}
}
6 changes: 0 additions & 6 deletions packages/web3-providers-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,10 +129,4 @@ Documentation:

- Fix issue lquixada/cross-fetch#78, enabling to run web3.js in service worker (#6463)

## [4.1.1]

### Changed

- Dependencies updated

## [Unreleased]
Loading

0 comments on commit 4163ad1

Please sign in to comment.