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

Bump ethereumjs-wallet from 0.6.5 to 1.0.2 #63

Open
wants to merge 1 commit into
base: v4main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 2, 2023

Bumps ethereumjs-wallet from 0.6.5 to 1.0.2.

Release notes

Sourced from ethereumjs-wallet's releases.

v1.0.2 - Dependency Updates and Browser Build

  • Updated dependencies to latest, added browser build, PR #157

Included Source Files

Source files from the src folder are now included in the distribution build. This allows for a better debugging experience in debug tools like Chrome DevTools by having working source map references to the original sources available for inspection.

v1.0.1 - Bugfix Release

  • Fixed a browser issue in Wallet.fromV3() and Wallet.toV3() triggered when using web bundlers using Buffer v4 shim (Webpack 4), see PR #135

v1.0.0 - TypeScript Release

This is the first TypeScript release on the library (thanks @​the-jackalope for the rewrite! ❤️), see PR #93 for the main PR here. The release comes with various breaking changes.

Libray Import / API Documentation

The way submodules are exposed has been changed along the TypeScript rewrite and you will likely have to update your imports. Here is an example for the hdkey submodule:

Node.js / ES5:

const { hdkey } = require('ethereumjs-wallet')

ESM / TypeScript:

import { hdkey } from 'ethereumjs-wallet'

See README for examples on the other submodules.

Together with the switch to TypeScript the previously static documentation has been automated to now being generated with TypeDoc to reflect all latest changes, see PR #98. See the new docs for an overview on the TypeScript based API.

API Changes

The API of the library hasn't been changed intentionally but has become more strict on type input by the explcit type definitions from the TypeScript code in function signatures together with the introduction of the ethereumjs-util v7 library within the Wallet library, which behaves more strict on type input on the various utility functions.

This leads to cases where some input - while not having been the intended way to use the library - might have been worked before through implicit type conversion and is now not possible any more.

One example for this is the Wallet.fromPublicKey() function, here is the old code of the function:

Wallet.fromPublicKey = function(pub, nonStrict) {
  if (nonStrict) {
    pub = ethUtil.importPublic(pub)
  }
  return new Wallet(null, pub)
}

... (truncated)

Changelog

Sourced from ethereumjs-wallet's changelog.

1.0.2 - 2021-10-08

  • Updated dependencies to latest, added browser build, PR #157

Included Source Files

Source files from the src folder are now included in the distribution build. This allows for a better debugging experience in debug tools like Chrome DevTools by having working source map references to the original sources available for inspection.

1.0.1 - 2020-09-25

  • Fixed a browser issue in Wallet.fromV3() and Wallet.toV3() triggered when using web bundlers using Buffer v4 shim (Webpack 4), see PR #135

[1.0.0] - 2020-06-23

This is the first TypeScript release on the library (thanks @​the-jackalope for the rewrite! ❤️), see PR #93 for the main PR here. The release comes with various breaking changes.

Libray Import / API Documentation

The way submodules are exposed has been changed along the TypeScript rewrite and you will likely have to update your imports. Here is an example for the hdkey submodule:

Node.js / ES5:

const { hdkey } = require('ethereumjs-wallet')

ESM / TypeScript:

import { hdkey } from 'ethereumjs-wallet'

See README for examples on the other submodules.

Together with the switch to TypeScript the previously static documentation has been automated to now being generated with TypeDoc to reflect all latest changes, see PR #98. See the new docs for an overview on the TypeScript based API.

API Changes

The API of the library hasn't been changed intentionally but has become more strict on type input by the explcit type definitions from the TypeScript code in function signatures together with the introduction of the ethereumjs-util v7 library within the Wallet library, which behaves more strict on type input on the various utility functions.

This leads to cases where some input - while not having been the intended way to use the library - might have been worked before through implicit type conversion and is now not possible any more.

One example for this is the Wallet.fromPublicKey() function, here is the old code of the function:

</tr></table> 

... (truncated)

Commits
  • 2bc21b4 Update deps to latest, add browser build, fix readme es5 import, prepare rele...
  • a04b5ca Corrected README example Wallet import to reference default parameter
  • eae95ab Corrected README example Wallet import to reference default parameter
  • 0d81c40 Merge pull request #139 from ethereumjs/new-release
  • 698e068 Bumped version to v1.0.1, added CHANGELOG entry
  • 744a79d Merge pull request #135 from torusresearch/master
  • 9b5f5fe Fix derviedKey Buffer in toV3
  • 5d21dda Fix issue with buffer concatenation while using scrypt
  • 0681d67 Merge pull request #134 from ethereumjs/discord-badge
  • 214d87f Replace gitter badge
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by ralxz, a new releaser for ethereumjs-wallet since your current version.


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [ethereumjs-wallet](https://github.com/ethereumjs/ethereumjs-wallet) from 0.6.5 to 1.0.2.
- [Release notes](https://github.com/ethereumjs/ethereumjs-wallet/releases)
- [Changelog](https://github.com/ethereumjs/ethereumjs-wallet/blob/master/CHANGELOG.md)
- [Commits](ethereumjs/ethereumjs-wallet@v0.6.5...v1.0.2)

---
updated-dependencies:
- dependency-name: ethereumjs-wallet
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants