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

Revert #4437 (@types/bn.js) #4481

Merged
merged 5 commits into from
Oct 20, 2021
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
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,6 @@ Released with 1.0.0-beta.37 code base.
- Change default value for `maxPriorityFeePerGas` from `1 Gwei` to `2.5 Gwei` (#4284)
- Fixed bug in signTransaction (#4295)

## [Unreleased]

## [1.6.0]

### Changed
Expand All @@ -461,7 +459,6 @@ Released with 1.0.0-beta.37 code base.
### Added

- Support for `eth_createAccessList` as both an rpc call (`web3.eth.createAccessList`) and property of contract method wrappers (`contractInstance.methods.getValue().createAccessList`) (#4332)
- `@types/bn.js` as dev-dependency to additional packages (notably web3-utils) (#4437)

### Changed

Expand All @@ -474,3 +471,7 @@ Released with 1.0.0-beta.37 code base.
- Format `block.baseFeePerGas` to number (#4330)
- Correct `web3-eth-personal.sendTransaction` example in documentation (#4409)
- Updated README to include Webpack 5 angular support instructions (#4174)

## [Unreleased]

## [1.6.2]
20 changes: 10 additions & 10 deletions dist/web3.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/web3.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.0",
"version": "1.6.1-rc.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this version not already published? 1.6.1-rc.0, Should not we consider this as 1.6.1-rc.1?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, RC version will get bumped in the release/1.6.1 branch after 1.x branch is updated with these changes. Flow is:

New changes -> 1.x -> release/1.6.1 -> Bump RC version -> release next RC

"lerna": "2.0.0",
"command": {
"init": {
Expand Down
3,762 changes: 1,996 additions & 1,766 deletions package-lock.json

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions packages/web3-bzz/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/web3-bzz/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-bzz",
"version": "1.6.0",
"version": "1.6.1-rc.0",
"description": "Web3 module to interact with the Swarm network.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-bzz",
"license": "LGPL-3.0",
Expand Down
5 changes: 2 additions & 3 deletions packages/web3-core-helpers/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/web3-core-helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-core-helpers",
"version": "1.6.0",
"version": "1.6.1-rc.0",
"description": "Web3 core tools helper for sub packages. This is an internal package.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-core-helpers",
"license": "LGPL-3.0",
Expand All @@ -14,8 +14,8 @@
},
"main": "lib/index.js",
"dependencies": {
"web3-eth-iban": "1.6.0",
"web3-utils": "1.6.0"
"web3-eth-iban": "1.6.1-rc.0",
"web3-utils": "1.6.1-rc.0"
},
"devDependencies": {
"@types/node": "^12.12.6",
Expand Down
5 changes: 2 additions & 3 deletions packages/web3-core-method/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions packages/web3-core-method/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-core-method",
"version": "1.6.0",
"version": "1.6.1-rc.0",
"description": "Creates the methods on the web3 modules. This is an internal package.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-core-method",
"license": "LGPL-3.0",
Expand All @@ -16,10 +16,10 @@
"dependencies": {
"@ethereumjs/common": "^2.4.0",
"@ethersproject/transactions": "^5.0.0-beta.135",
"web3-core-helpers": "1.6.0",
"web3-core-promievent": "1.6.0",
"web3-core-subscriptions": "1.6.0",
"web3-utils": "1.6.0"
"web3-core-helpers": "1.6.1-rc.0",
"web3-core-promievent": "1.6.1-rc.0",
"web3-core-subscriptions": "1.6.1-rc.0",
"web3-utils": "1.6.1-rc.0"
},
"devDependencies": {
"dtslint": "^3.4.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-core-promievent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-core-promievent",
"version": "1.6.0",
"version": "1.6.1-rc.0",
"description": "This package extends the EventEmitter with the Promise class to allow chaining as well as multiple final states of a function.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-core-promievent",
"license": "LGPL-3.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/web3-core-requestmanager/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-core-requestmanager",
"version": "1.6.0",
"version": "1.6.1-rc.0",
"description": "Web3 module to handle requests to external providers.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-core-requestmanager",
"license": "LGPL-3.0",
Expand All @@ -13,9 +13,9 @@
},
"dependencies": {
"util": "^0.12.0",
"web3-core-helpers": "1.6.0",
"web3-providers-http": "1.6.0",
"web3-providers-ipc": "1.6.0",
"web3-providers-ws": "1.6.0"
"web3-core-helpers": "1.6.1-rc.0",
"web3-providers-http": "1.6.1-rc.0",
"web3-providers-ipc": "1.6.1-rc.0",
"web3-providers-ws": "1.6.1-rc.0"
}
}
5 changes: 2 additions & 3 deletions packages/web3-core-subscriptions/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions packages/web3-core-subscriptions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-core-subscriptions",
"version": "1.6.0",
"version": "1.6.1-rc.0",
"description": "Manages web3 subscriptions. This is an internal package.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-core-subscriptions",
"license": "LGPL-3.0",
Expand All @@ -15,7 +15,7 @@
"main": "lib/index.js",
"dependencies": {
"eventemitter3": "4.0.4",
"web3-core-helpers": "1.6.0"
"web3-core-helpers": "1.6.1-rc.0"
},
"devDependencies": {
"dtslint": "^3.4.1",
Expand Down
22 changes: 19 additions & 3 deletions packages/web3-core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions packages/web3-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web3-core",
"version": "1.6.0",
"version": "1.6.1-rc.0",
"description": "Web3 core tools for sub-packages. This is an internal package.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-core",
"license": "LGPL-3.0",
Expand All @@ -14,13 +14,13 @@
},
"main": "lib/index.js",
"dependencies": {
"@types/bn.js": "^4.11.6",
"@types/bn.js": "^4.11.5",
"@types/node": "^12.12.6",
"bignumber.js": "^9.0.0",
"web3-core-helpers": "1.6.0",
"web3-core-method": "1.6.0",
"web3-core-requestmanager": "1.6.0",
"web3-utils": "1.6.0"
"web3-core-helpers": "1.6.1-rc.0",
"web3-core-method": "1.6.1-rc.0",
"web3-core-requestmanager": "1.6.1-rc.0",
"web3-utils": "1.6.1-rc.0"
},
"devDependencies": {
"dtslint": "^3.4.1",
Expand Down
5 changes: 2 additions & 3 deletions packages/web3-eth-abi/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "1.6.0",
"version": "1.6.1-rc.0",
"description": "Web3 module encode and decode EVM in/output.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-eth-abi",
"license": "LGPL-3.0",
Expand All @@ -15,7 +15,7 @@
"main": "lib/index.js",
"dependencies": {
"@ethersproject/abi": "5.0.7",
"web3-utils": "1.6.0"
"web3-utils": "1.6.1-rc.0"
},
"devDependencies": {
"dtslint": "^3.4.1",
Expand Down
5 changes: 2 additions & 3 deletions packages/web3-eth-accounts/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "1.6.0",
"version": "1.6.1-rc.0",
"description": "Web3 module to generate Ethereum accounts and sign data and transactions.",
"repository": "https:/ethereum/web3.js/tree/1.x/packages/web3-eth-accounts",
"license": "LGPL-3.0",
Expand All @@ -21,10 +21,10 @@
"ethereumjs-util": "^7.0.10",
"scrypt-js": "^3.0.1",
"uuid": "3.3.2",
"web3-core": "1.6.0",
"web3-core-helpers": "1.6.0",
"web3-core-method": "1.6.0",
"web3-utils": "1.6.0"
"web3-core": "1.6.1-rc.0",
"web3-core-helpers": "1.6.1-rc.0",
"web3-core-method": "1.6.1-rc.0",
"web3-utils": "1.6.1-rc.0"
},
"devDependencies": {
"dtslint": "^3.4.1",
Expand Down
36 changes: 33 additions & 3 deletions packages/web3-eth-contract/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading