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

Update all patch updates (patch) #559

Merged
merged 1 commit into from
Oct 12, 2020

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 11, 2020

This PR contains the following updates:

Package Type Update Change
ethereumjs-util dependencies patch 7.0.5 -> 7.0.6
solidity-coverage devDependencies patch 0.7.10 -> 0.7.11
truffle devDependencies patch 5.1.47 -> 5.1.48

Release Notes

ethereumjs/ethereumjs-util

v7.0.6

Compare Source

New Account class

This release adds a new Account class intended as a modern replacement for ethereumjs-account. It has a shape of Account(nonce?: BN, balance?: BN, stateRoot?: Buffer, codeHash?: Buffer).

Instantiation

The static factory methods assist in creating an Account object from varying data types: Object: fromAccountData, RLP: fromRlpSerializedAccount, and Array: fromValuesArray.

Methods: isEmpty(): boolean, isContract(): boolean, serialize(): Buffer

Example usage:

import { Account, BN } from 'ethereumjs-util'

const account = new Account(
  new BN(0), // nonce, default: 0
  new BN(10).pow(new BN(18)), // balance, default: 0
  undefined, // stateRoot, default: KECCAK256_RLP (hash of RLP of null)
  undefined, // codeHash, default: KECCAK256_NULL (hash of null)
)

For more info see the documentation, examples of usage in test/account.spec.ts or
PR #​275.

New export: TypeScript types

A new file with helpful TypeScript types has been added to the exports of this project,
see PR #​275.

In this release it contains BNLike, BufferLike, and TransformableToBuffer.

Address.toBuffer()

The Address class has as a new method address.toBuffer() that will give you a copy of the underlying address.buf
(PR #​277).

toBuffer() now converts TransformableToBuffer

The toBuffer() exported function now additionally converts any object with a toBuffer() method
(PR #​277).

sc-forks/solidity-coverage

v0.7.11

Compare Source

========================

  • Upgrade Web3 to ^1.3.0, ganache-cli to 6.11.0
  • Make statement and function coverage measurement optional
trufflesuite/truffle

v5.1.48

Compare Source

Hello all 👋, we're back with another weekly Truffle release!

This week's bite-sized 🍬 release brings various improvements to our ABI JSON schema, both to better allow for old versions of the ABI JSON and to better validate existing versions. We've also fixed a bug that could sometimes prevent Truffle Test from working on Solidity versions 0.7.2 and 0.7.3. 💣 Thanks to @​cameel and @​dddejan for pointing it out! Also, thanks to @​Corfucinas for noticing that we'd omitted the license identifier on one of Truffle Tests's Solidity assertion libraries! That's fixed now.

That's all for now, see you next week!

How to upgrade

We recommend upgrading to the latest version of Truffle by running:

npm uninstall -g truffle
npm install -g truffle
Changelog
Enhancements
Bug fixes
Internal improvements

Renovate configuration

📅 Schedule: "on sunday" in timezone America/Los_Angeles.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@HardlyDifficult HardlyDifficult merged commit 642b290 into master Oct 12, 2020
@HardlyDifficult HardlyDifficult deleted the renovate/patch-all-patch-updates branch October 12, 2020 16:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants