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

New EVM (EIP-3540) and Blockchain (ensure Lock) Releases #2380

Merged
merged 3 commits into from
Oct 25, 2022
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
10,004 changes: 2,271 additions & 7,733 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions packages/blockchain/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
(modification: no type change headlines) and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 6.0.2 - 2022-10-25

- Updated `@ethereumjs/util` minimal package version to `v8.0.2` to ensure functioning of the library (otherwise the newly exported `Lock` functionality might be missing)

## 6.0.1 - 2022-10-18

### Support for Geth genesis.json Genesis Format
Expand Down
2 changes: 1 addition & 1 deletion packages/blockchain/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereumjs/blockchain",
"version": "6.0.1",
"version": "6.0.2",
"description": "A module to store and interact with blocks",
"keywords": [
"ethereum",
Expand Down
4 changes: 2 additions & 2 deletions packages/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@
"dependencies": {
"@chainsafe/libp2p-noise": "^4.1.1",
"@ethereumjs/block": "4.0.1",
"@ethereumjs/blockchain": "6.0.1",
"@ethereumjs/blockchain": "6.0.2",
"@ethereumjs/common": "3.0.1",
"@ethereumjs/devp2p": "5.0.1",
"@ethereumjs/ethash": "2.0.1",
"@ethereumjs/evm": "1.2.0",
"@ethereumjs/evm": "1.2.1",
"@ethereumjs/rlp": "4.0.0",
"@ethereumjs/statemanager": "1.0.1",
"@ethereumjs/trie": "5.0.1",
Expand Down
4 changes: 4 additions & 0 deletions packages/evm/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
(modification: no type change headlines) and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 1.2.1 - 2022-10-25

- Various [EIP-3540](https://eips.ethereum.org/EIPS/eip-3540) EVM Object Format (EOF) related fixes, PR [#2368](https://github.com/ethereumjs/ethereumjs-monorepo/pull/2368)

## 1.2.0 - 2022-10-21

This release replaces the `v1.1.0` release from a couple of days ago which now becomes deprecated. The async event emitter library switch from the `async-eventemitter` package to the `eventemitter2` package turned out to be breaking along parts of the functionality.
Expand Down
2 changes: 1 addition & 1 deletion packages/evm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ethereumjs/evm",
"version": "1.2.0",
"version": "1.2.1",
"description": "JavaScript Ethereum Virtual Machine (EVM) implementation",
"keywords": [
"ethereum",
Expand Down
4 changes: 2 additions & 2 deletions packages/vm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
},
"dependencies": {
"@ethereumjs/block": "^4.0.1",
"@ethereumjs/blockchain": "^6.0.1",
"@ethereumjs/blockchain": "^6.0.2",
"@ethereumjs/common": "^3.0.1",
"@ethereumjs/evm": "^1.2.0",
"@ethereumjs/evm": "^1.2.1",
"@ethereumjs/rlp": "^4.0.0",
"@ethereumjs/statemanager": "^1.0.1",
"@ethereumjs/trie": "^5.0.1",
Expand Down