Skip to content

Latest commit

 

History

History
188 lines (157 loc) · 8.56 KB

CHANGELOG.md

File metadata and controls

188 lines (157 loc) · 8.56 KB

Change Log

All notable changes to this project will be documented in this file.

[0.5.4]

Added

  • Eth/client: method for eip-1271 (#80)

Changed

  • Docs: update changelog (#77)
  • Gem: bump version to 0.5.4 (#78)
  • Ci: bump ruby version to 3.1 on ci (#79)
  • Fix typos (#81)
  • Eth/contract: allow creating from file, abi, bin (#83)
  • Eth/client: fix account requirement for client.call() (#85)
  • Add dependency support for openssl 2.2 and greater, including 3.x (#88)

[0.5.3]

Added

  • Smart contract support (#68)

Changed

  • Eth/abi: decode event log (#69)
  • Gem: bump version (#70)
  • Eth/abi/event: batch log decoder (#71)

[0.5.2]

Added

  • Eth/solidity: add solidity compiler bindings (#66)

Changed

  • Eth: remove duplicated code (#62)
  • Ci: allow coverage to drop to 99% without failing (#63)
  • Docs: update readme (#64)
  • Docs: add wiki to readme (#65)

[0.5.1]

Added

  • Add eth::rlp module (#52)
  • Eth/client: implement http/ipc (#37)

Changed

  • Docs: update changelog (#61)
  • Eth/chain: add sepolia chain id; docs (#60)
  • Eth/rlp: cleanup (#59)
  • Eth/tx: properly serialize signatures (#58)
  • Eth/client: fix legacy transfer (#57)
  • Gem: relax openssl requirement (#56)
  • Docs: update changelog (#53)
  • Spec: add upstream test fixtures for keystore (#50)

[0.5.0]

Added

  • Eth/tx: create legacy, type-1, and type-2 transactions #33
  • Signature: implement eip 712 typed structured data signing #27
  • Lib: import ABI to eth/abi #29
  • Eth/chains: implement eip 155 for replay protection #20

Changed

  • Docs: update readme with features #49
  • Eth/tx: add method to estimate intrinsic gas costs #48
  • Eth/key: allow chain_id empty for signing messages/data #47
  • Gem: prepare for release #46
  • Eth/sig: allow v values > 0xff, fix #30 #43
  • Eth/abi: refactor for maintainability #42
  • Docs: improve readme #41
  • Lib: improve error handling #39
  • Docs: update readme for tx and keys #40
  • Implement encrypt/decrypt #22
  • Gem: clean up some docs and scripts #32
  • Rename util and chain to singular #26
  • Docs: add some examples to readme #25
  • Key/signature: personal sign and verify #24
  • Ci: only run coverage on CI #23
  • Lib/signature: implement personal_recover (eip 191 #21
  • Eth/util: public_key_to_address should return an eth::address #19
  • Ci: add docs workflow #18
  • Address class implementation and tests #13
  • Spec: improve util tests #12
  • Spec: improve key tests #11
  • Gems: bump keccak and secp256k1 #10
  • Docs: add code climate badge #8
  • Ci: enable codecov #7
  • Docs: add AUTHORS file #6
  • Lib: implement Eth::Key class #4
  • Ci: add nightly schedule #2
  • Reset gem to point blank #1

[0.4.18]

Changed

[0.4.17]

Changed

[0.4.16]

Changed

[0.4.13], [0.4.14], [0.4.15]

Released as eth-patched from a different source tree.

[0.4.12]

Changed

  • Bump rake version because of security vulnerability

[0.4.11]

Added

  • Support for recovering signatures with a V value below 27 (like from Ledger hardware wallets)

[0.4.10]

Changed

  • Use updated sha3 dependency
  • Improved OpenSSL support

Changed

  • Changed Eth::Configuration.default_chain_id back to .chain_id for dependent libraries.

[0.4.9]

Changed

  • escoffon added support for chain IDs larger than 120.

[0.4.8]

Added

  • @buhrmi added Eth::Key#personal_sign.
  • @buhrmi added Eth::Key#personal_recover.

[0.4.7]

Changed

  • Updated MoneyTree dependency.

[0.4.6]

Added

  • Support scrypt private key decryption

[0.4.5]

Changed

  • Further improve Open SSL configurability

[0.4.4]

Changed

  • Support old versions of SSL to help avoid preious breaking changes

[0.4.3]

Added

  • Eth::Key::Encrypter class to handle encrypting keys.
  • Eth::Key.encrypt as a nice wrapper around Encrypter class.
  • Eth::Key::Decrypter class to handle encrypting keys.
  • Eth::Key.decrypt as a nice wrapper around Decrypter class.

[0.4.2]

Added

  • Address#valid? to validate EIP55 checksums.
  • Address#checksummed to generate EIP55 checksums.
  • Utils.valid_address? to easily validate EIP55 checksums.
  • Utils.format_address to easily convert an address to EIP55 checksummed.

Changed

  • Dependencies no longer include Ethereum::Base. Eth now implements those helpers directly and includes ffi, digest-sha3, and rlp directly.

[0.4.1]

Changed

  • Tx#hash includes the '0x' hex prefix.

[0.4.0]

Added

  • Tx#data_bin returns the data field of a transaction in binary.
  • Tx#data_hex returns the data field of a transaction as a hexadecimal string.
  • Tx#id is an alias of Tx#hash

Changed

  • Tx#data is configurable to return either hex or binary: config.tx_data_hex = true.
  • Tx#hex includes the '0x' hex prefix.
  • Key#address getter is prepended by '0x'.
  • Extract public key to address method into Utils.public_key_to_address.
  • Tx#from returns an address instead of a public key.
  • Chain ID is updated to the later version of the spec.