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

build(deps-dev): Bump @hashgraph/sdk from 2.41.0 to 2.45.0 #750

Merged
merged 2 commits into from
May 20, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 15, 2024

Bumps @hashgraph/sdk from 2.41.0 to 2.45.0.

Release notes

Sourced from @​hashgraph/sdk's releases.

v2.45.0

What's Changed

New Contributors

Full Changelog: hashgraph/hedera-sdk-js@v2.44.0...v2.45.0

v2.45.0-beta.1

What's Changed

Full Changelog: hashgraph/hedera-sdk-js@v2.44.0...v2.45.0-beta.1

v2.44.0

What's Changed

Full Changelog: hashgraph/hedera-sdk-js@v2.43.0...v2.44.0

v2.43.0

What's Changed

Full Changelog: hashgraph/hedera-sdk-js@v2.29.0...v2.43.0

v2.43.0-beta.1

What's Changed

... (truncated)

Changelog

Sourced from @​hashgraph/sdk's changelog.

v2.45.0

What's Changed

v2.45.0-beta.1

What's Changed

v2.44.0

What's Changed

v2.43.0

What's Changed

v2.43.0-beta.1

What's Changed

v2.42.0

What's Changed

... (truncated)

Commits
  • 985f844 release: v2.45.0 (#2288)
  • 7b38c8a fix: typo on PrivateKey.fromBytes warning (#2264)
  • c49352a update: release wrkflow (#2273)
  • 5f5c1b4 release: v2.45.0-beta.1 (#2270)
  • 5fffabe feature: update metadata field of fungible and non-fungible tokens, and dynam...
  • 473d67c fix: solve backward compatibility issues between the SDK and hedera-services ...
  • 65a2323 release: stable version 2.44.0 (#2262)
  • def492a fix: set correct autoRenrewAccountId (#2217)
  • f067bbb update: add a new getter to the TransferTransaction class (#2214)
  • f868f1f fix: integer overflow isuue for defaultMaxQueryPayment field (#2213)
  • Additional commits viewable in compare view

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)

@dependabot dependabot bot requested a review from a team as a code owner May 15, 2024 20:47
@dependabot dependabot bot requested a review from acuarica May 15, 2024 20:47
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 15, 2024
@dependabot dependabot bot requested a review from david-bakin-sl May 15, 2024 20:47
Bumps [@hashgraph/sdk](https://github.com/hashgraph/hedera-sdk-js) from 2.41.0 to 2.45.0.
- [Release notes](https://github.com/hashgraph/hedera-sdk-js/releases)
- [Changelog](https://github.com/hashgraph/hedera-sdk-js/blob/main/CHANGELOG.md)
- [Commits](hashgraph/hedera-sdk-js@v2.41.0...v2.45.0)

---
updated-dependencies:
- dependency-name: "@hashgraph/sdk"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@quiet-node
Copy link
Member

Bug is reported in hashgraph/hedera-sdk-js#2291

@quiet-node
Copy link
Member

The issue was resolved in this pull request. Previously, the accountId set for the auto-renew account was ignored and replaced by the operator account ID, which is why it passed without any exceptions. With this update, the autoRenewAccountID must sign the transaction.

@quiet-node quiet-node merged commit 9a3ef3e into main May 20, 2024
23 of 24 checks passed
@quiet-node quiet-node deleted the dependabot/npm_and_yarn/hashgraph/sdk-2.45.0 branch May 20, 2024 21:51
quiet-node added a commit that referenced this pull request May 20, 2024
* build(deps-dev): Bump @hashgraph/sdk from 2.41.0 to 2.45.0

Bumps [@hashgraph/sdk](https://github.com/hashgraph/hedera-sdk-js) from 2.41.0 to 2.45.0.
- [Release notes](https://github.com/hashgraph/hedera-sdk-js/releases)
- [Changelog](https://github.com/hashgraph/hedera-sdk-js/blob/main/CHANGELOG.md)
- [Commits](hashgraph/hedera-sdk-js@v2.41.0...v2.45.0)

---
updated-dependencies:
- dependency-name: "@hashgraph/sdk"
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix: updated autoRenewAccountID to use operator account ID

Signed-off-by: Logan Nguyen <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Logan Nguyen <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Logan Nguyen <[email protected]>
@quiet-node quiet-node added this to the 0.8.0 milestone Jul 12, 2024
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant