Skip to content

Releases: ethereum/ethereumj

1.12.0 Release

09 Apr 10:51
Compare
Choose a tag to compare

Changeset

  • Switch StandaloneBlockchain to PetersburgConfig 8731060
  • Fix RC in StandaloneBlockchain inside of Transaction.getHash() call #1267
  • Fix consensus break on Ropsten, block #5,284,326 #1270
  • Update bootnodes for the Mainnet 237259b

Test coverage

1.11.0 Petersburg

25 Jan 16:59
Compare
Choose a tag to compare

Introduces Constantinople hard fork version without EIP-1283 which is internally called Petersburg. Block numbers:

  • Mainnet 7,280,000
  • Ropsten 4,939,394

1.10.1 Constantinople postponed

15 Jan 22:02
Compare
Choose a tag to compare

Cancels Constantinople hard fork on Mainnet at block #7_080_000.
Bug was found in EIP-1283 - reentrance vulnerability, so hardfork is delayed until the issue is solved.

1.10.0 Constantinople on Mainnet

07 Jan 10:13
Compare
Choose a tag to compare

Enables Constantinople hard fork on Mainnet at block #7_080_000.

A couple of fixes is, also, coming with this release:

  • Fix ABI code for multidimensional arrays #1239
  • Compiling with solc 0.5.0 broken #1244, thanks to @tbocek

1.9.1 Post-constantinople fixes

19 Nov 13:18
Compare
Choose a tag to compare

List of fixes:

  • Constantinople is now starts at correct block on Ropsten #1214
  • Headers validation is improved #1222
  • EXTCODEHASH corner case fixed, could result into consensus break #1228

1.9.0 Constantinople on Ropsten

12 Oct 13:32
Compare
Choose a tag to compare

Enables Constantinople hard fork on Ropsten network at block #4_230_000.

Constantinople work

  • EXTCODEHASH opcode, #1162
  • Bitwise shifting instructions in EVM, #1167
  • Net gas metering for SSTORE without dirty maps, #1173
  • Skinny CREATE2, #1178
  • Constantinople Difficulty Bomb Delay and Block Reward Adjustment, #1181
  • CREATE2 gas cost update, #1204

Fixes and improvements

  • Abstract nodeId and nodePrivateKey generating, #1104
  • Race condition in ChannelManager, #1120
  • Immutable DataWord, #1154
  • Discovery improvements, #1160, #1164
  • Add Uint type to SolidityType, #1187
  • Use list of files as a source for configuration, #1169

Special thanks

1.8.2 Hotfix Release

12 Aug 09:44
Compare
Choose a tag to compare

Fixes consensus break happened on the main net, block 6,108,275

1.8.1 Hotfix Release

26 Jun 18:27
Compare
Choose a tag to compare

Fixing Memory referencing with 0 data size in VM #1109
Prevent early switch to SyncState.COMPLETE #1105

1.8.0 Release

15 Jun 09:35
Compare
Choose a tag to compare

This release scope represents an ongoing work in performance improvement area and aims finishing of DB transition made by EthereumJ in the previous release. Though we've switched to RocksDB formally on v1.7.0, that version and consequent updates were very slow in terms of processing blocks during regular synchronization. Moving to the other DB engine is a big task, and we were not able to do it in one step. Now we got 5-10x block processing time improvement comparing to 1.7.x, faster regular sync than we had with LevelDB and speed which puts us to the next target: matching top clients performance. We are still slower but the difference is not in range of an order.

Along with database we were working on network improvements, which affects client speed too. Targeting memory usage, peer abuse and network attacks we've made changes which refines both regular and fast sync. See full change set below.

Features

  • Convenient sync management for private networks #1094, #1050
  • New gas price tracker #1056
  • Ethhash events listener for miners #1084, #1095
  • Local run configuration for Github tests #1087

Improvements

  • Memory limit on outgoing eth messages #1057
  • Reduced sync queue memory footprint #1062,
  • Fast Sync memory improvements #1074, 02de75d
  • Boost RocksDB.get() which increases processing speed from 5 to 10 times depending on the env #1061
  • Resistance to attacks with wrong RLP length #1073
  • Fast Sync peer rotation improvement #1074
  • Basic protection from eclipse attacks #1082
  • Limited outgoing transaction size a3535b0

Fixes

  • Incorrect blocks total difficulty and ETH header responses in sync.fast.skipHistory mode #1060
  • Race condition in BlockchaiNImpl.updateBlockTotDifficulties() 99e22a5
  • Sync fallback into infinite loop in private networks e0730e2

Many thanks to the community

1.7.3 Hotfix Release

04 May 10:37
Compare
Choose a tag to compare

Adds a sanity check for signature recovery result df3350b, quite an important check in some cases.