Skip to content

Latest commit

 

History

History
285 lines (242 loc) · 14.9 KB

CHANGELOG.md

File metadata and controls

285 lines (242 loc) · 14.9 KB

Change Log

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

[0.5.10]

Added

  • Eth/client: add transfer_erc20 function #197
  • Eth/client: add resolve_ens function #192

Changed

  • Eth/ens: restore docs for normalize #198
  • Docs: update readme #195
  • Eth/contract: ensure address arrays support #194
  • Eth/client: do not allow accessing local accounts on remote connections #193
  • Eth/client: correctly select functions #191
  • Docs: create security policy #190
  • Docs: add contribution guidelines #189
  • Docs: add coc #188
  • Docs: update changelog for 0.5.9 #187

[0.5.9]

Added

  • Eth/abi: dynamic struct encoding (#135) #185
  • Eth/client: support camel case (convert before sending the tx) #172
  • Eth/client: add tx_succeeded? #173

Changed

  • Eth/client: raise an error if a contract interaction reverts #186
  • Eth/client: dup params to prevent marshalling on client obj #184
  • Eth/client: add test for tx_succeeded? #183
  • Eth: rename functions prefixed with is_ #182
  • Eth/chain: update available chains #181
  • Docs: update changelog for 0.5.8 #180
  • Eth: happy new 2023 #179
  • Docs: fix readme workflow badge #178
  • Solidity: sanitize the contract path before compiling #176
  • Ci: add libyaml on ubuntu #175

[0.5.8]

Added

  • Client: ability to manual set nonce of tx for transfer, deploy, transact methods was added. #169
  • Client: ability for call contract methods with specific transaction value was added #168
  • Client: add ENS resolve support #150

Changed

  • Client: satisfy yard docs for transfer kwargs #170
  • Client: remove invalid parameters from call_raw method #166
  • Gem: bump required ruby version to 3 #165
  • Build(deps): bump JamesIves/github-pages-deploy-action from 4.4.0 to 4.4.1 #162
  • Gem: bump version to 0.5.8 #161
  • Docs: update changelog #160

[0.5.7]

Added

  • Eth/client: add http basic support auth (#151)
  • Chore: add polygon chain test case (#146)

Changed

  • Docs: add readme header for yard (#159)
  • Eth/client: fix api documentation (#158)
  • Eth/client: update default fees (#157)
  • Docs: move readme usage to wiki (#156)
  • Eth/signature: fix allowing ledger v values of 0 (#155)
  • Eth/client: rename http basic to http auth (#154)
  • Fix Eth:Tx.decode for transaction with s length < 64 chars (#148)
  • Build(deps): bump JamesIves/github-pages-deploy-action from 4.3.4 to 4.4.0 (#140)
  • Fixed to return uint256[] correctly when passed as type (#147)
  • Build(deps): bump JamesIves/github-pages-deploy-action from 4.3.3 to 4.3.4 (#133)
  • Docs: update CHANGELOG (#132)
  • Gem: bump version to 0.5.7 (#131)

[0.5.6]

Added

  • Eth/client: Add gas limit override option for contract deployments (#128)
  • Eth/abi: support dynamic array encoding (#122)

Changed

  • Eth/client: Include contract constructor args when estimating intrinsic gas (#111)
  • Eth/abi: allow parsing numerics from string inputs (#112)
  • Eth/signature: fix prefix_message for multibyte characters (#120)
  • Eth/abi: raise error if numeric comes as string (#114)
  • Gem: bump version to 0.5.6 (#130)

[0.5.5]

Added

  • Eth/contract: Add missing def_delegator for constructor_inputs (#96)
  • Eth/client: Enable passing in constructor params to deploy (#106)
  • Eth/chain: add matic/mumbai (#107)

Changed

  • Gem: bump version to 0.5.5 (#89)
  • Docs: update changelog for 0.5.4 (#90)
  • Ci: add weekly dependency checks (#91)
  • Build(deps): bump github/codeql-action from 1 to 2 (#92)
  • Build(deps): bump actions/checkout from 2 to 3 (#93)
  • Build(deps): bump JamesIves/github-pages-deploy-action from 4.1.7 to 4.3.3 (#94)
  • Eth/abi: fix handling of hex values for byte strings (#100)
  • Eth/abi: add a testcase for handling hex and bin strings (#101)
  • Eth/abi: Fix Eth::Abi::DecodingError in call method (#105)
  • Eth: some docs and cleanups (#108)

[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.