Skip to content

Commit 68f7149

Browse files
authored
patch releases: common v2.6.2, vm v5.7.1 (#1692)
* update changelog, versions, package-lock * nit: flatten if statement
1 parent 4ff89e8 commit 68f7149

File tree

12 files changed

+282
-255
lines changed

12 files changed

+282
-255
lines changed

package-lock.json

Lines changed: 259 additions & 235 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/block/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"test:browser": "karma start karma.conf.js"
3434
},
3535
"dependencies": {
36-
"@ethereumjs/common": "^2.6.1",
36+
"@ethereumjs/common": "^2.6.2",
3737
"merkle-patricia-tree": "^4.2.3",
3838
"@ethereumjs/tx": "^3.5.0",
3939
"ethereumjs-util": "^7.1.4"

packages/blockchain/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"author": "mjbecze <mjbecze@gmail.com>",
3535
"dependencies": {
3636
"@ethereumjs/block": "^3.6.1",
37-
"@ethereumjs/common": "^2.6.1",
37+
"@ethereumjs/common": "^2.6.2",
3838
"@ethereumjs/ethash": "^1.1.0",
3939
"debug": "^4.3.3",
4040
"ethereumjs-util": "^7.1.4",

packages/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252
"@chainsafe/libp2p-noise": "^4.1.1",
5353
"@ethereumjs/block": "^3.6.1",
5454
"@ethereumjs/blockchain": "^5.5.1",
55-
"@ethereumjs/common": "^2.6.1",
55+
"@ethereumjs/common": "^2.6.2",
5656
"@ethereumjs/devp2p": "^4.2.1",
5757
"@ethereumjs/ethash": "^1.1.0",
5858
"@ethereumjs/tx": "^3.5.0",
59-
"@ethereumjs/vm": "^5.7.0",
59+
"@ethereumjs/vm": "^5.7.1",
6060
"chalk": "^4.1.2",
6161
"debug": "^4.3.3",
6262
"ethereumjs-util": "^7.1.4",

packages/common/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
(modification: no type change headlines) and this project adheres to
77
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

9+
# 2.6.2 - 2022-02-4
10+
11+
- Adds support for [EIP-3607](https://eips.ethereum.org/EIPS/eip-3607) (Reject transactions from senders with deployed code), PR [#1691](https://github.com/ethereumjs/ethereumjs-monorepo/pull/1691)
12+
913
## 2.6.1 - 2022-02-01
1014

1115
- Added support for [EIP-3855](https://eips.ethereum.org/EIPS/eip-3855) `push0` opcode, PR [#1616](https://github.com/ethereumjs/ethereumjs-monorepo/pull/1616)

packages/common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ethereumjs/common",
3-
"version": "2.6.1",
3+
"version": "2.6.2",
44
"description": "Resources common to all Ethereum implementations",
55
"license": "MIT",
66
"keywords": [

packages/devp2p/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"test": "npm run tape -- ./test/index.ts"
4242
},
4343
"dependencies": {
44-
"@ethereumjs/common": "^2.6.1",
44+
"@ethereumjs/common": "^2.6.2",
4545
"@types/bl": "^2.1.0",
4646
"@types/k-bucket": "^5.0.0",
4747
"@types/lru-cache": "^5.1.0",

packages/ethash/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"miller-rabin": "^4.0.0"
3939
},
4040
"devDependencies": {
41-
"@ethereumjs/common": "^2.6.1",
41+
"@ethereumjs/common": "^2.6.2",
4242
"@types/tape": "^4.13.2",
4343
"eslint": "^6.8.0",
4444
"level-mem": "^5.0.1",

packages/tx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"examples": "ts-node ../../scripts/examples-runner.ts -- tx"
3535
},
3636
"dependencies": {
37-
"@ethereumjs/common": "^2.6.1",
37+
"@ethereumjs/common": "^2.6.2",
3838
"ethereumjs-util": "^7.1.4"
3939
},
4040
"devDependencies": {

packages/vm/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
(modification: no type change headlines) and this project adheres to
77
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

9+
## 5.7.1 - 2022-02-04
10+
11+
This patch release adds a guard to not enable the recently added EIP-3607 by default. This helps downstream users who may emulate contract accounts as part of their testing strategies.
12+
13+
- Add guard to not enable EIP-3607 by default, PR [#1691](https://github.com/ethereumjs/ethereumjs-monorepo/pull/1691)
14+
915
## 5.7.0 - 2022-02-01
1016

1117
### Dynamic Gas Costs

0 commit comments

Comments
 (0)