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 the all-dependencies group with 2 updates #169

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 10, 2025

Bumps the all-dependencies group with 2 updates: go.sia.tech/core and go.sia.tech/coreutils.

Updates go.sia.tech/core from 0.9.1 to 0.10.0

Release notes

Sourced from go.sia.tech/core's releases.

0.10.0 (2025-02-04)

Breaking Changes

Consensus diffs

#270 by @​lukechampine

This replaces the ForEach update API with slices of "diffs" -- new types wrapping the various element types. This was originally intended as an ergonomics improvement (since it's annoying to e.g. break out of a ForEach callback), but it ended up significantly simplifying most MidState-related code: it consolidated the interrelated maps within MidState, and enabled a much saner rewrite of the update JSON types.

I originally left the ForEach methods in place (with a // Deprecated warning), but later removed them entirely; we're going to update all the callsites in coreutils anyway, so there's little reason to keep them around. (ForEachTreeNode remains, though, since it's used by explored.)

Fixed a panic when unmarshalling unknown spend policy types

An error will now be returned when trying to encode a transaction with an unset SpendPolicy

Changelog

Sourced from go.sia.tech/core's changelog.

0.10.0 (2025-02-04)

Breaking Changes

Consensus diffs

##270 by @​lukechampine

This replaces the ForEach update API with slices of "diffs" -- new types wrapping the various element types. This was originally intended as an ergonomics improvement (since it's annoying to e.g. break out of a ForEach callback), but it ended up significantly simplifying most MidState-related code: it consolidated the interrelated maps within MidState, and enabled a much saner rewrite of the update JSON types.

I originally left the ForEach methods in place (with a // Deprecated warning), but later removed them entirely; we're going to update all the callsites in coreutils anyway, so there's little reason to keep them around. (ForEachTreeNode remains, though, since it's used by explored.)

Fixed a panic when unmarshalling unknown spend policy types

An error will now be returned when trying to encode a transaction with an unset SpendPolicy

Commits
  • 22e7564 Merge pull request #269 from SiaFoundation/release
  • 18252d4 chore: prepare release 0.10.0
  • 6ab1f00 Merge pull request #270 from SiaFoundation/update-slices
  • 21dfb17 Auto generate changeset
  • e1f106f consensus: Document revert diff order
  • 212fe28 consensus: Rename Updated -> Diff
  • d2b7e20 consensus: Remove redundant FileContractElement when revising
  • d637c80 consensus: Remove deprecated ForEach methods
  • 2dc4b2b consensus: Remove MidState from ApplyUpdate/RevertUpdate
  • 4bb5a2c consensus: Refactor MidState to use Updated element types
  • Additional commits viewable in compare view

Updates go.sia.tech/coreutils from 0.10.1 to 0.11.0

Release notes

Sourced from go.sia.tech/coreutils's releases.

0.11.0 (2025-02-06)

Breaking Changes

  • Add support for QUIC and WebTransport to RHP4

Fixes

  • Fixed data race in EphemeralContractor related to V2FileContractElement.
  • Fixed syncer deadlocking when Connect is called after Close.
  • Set 2 minute deadline for all incoming RPC in syncer
Changelog

Sourced from go.sia.tech/coreutils's changelog.

0.11.0 (2025-02-06)

Breaking Changes

  • Add support for QUIC and WebTransport to RHP4

Fixes

  • Fixed data race in EphemeralContractor related to V2FileContractElement.
  • Fixed syncer deadlocking when Connect is called after Close.
  • Set 2 minute deadline for all incoming RPC in syncer
Commits
  • 8e9f80e Merge pull request #159 from SiaFoundation/release
  • 885c964 chore: prepare release 0.11.0
  • 922b2c6 Merge pull request #168 from SiaFoundation/wallet-fcid
  • 9a868ab wallet: Fix output IDs in file contract events
  • 0744021 Merge pull request #166 from SiaFoundation/update-slices
  • 5e76b22 mod: Update core dependency
  • 206731f Merge pull request #164 from SiaFoundation/nate/support-quic
  • 88db2af address review comments
  • 83cbafb rhp4: add quic support
  • 3a96ba4 interrupt runPeer loop on shutdown
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-dependencies group with 2 updates: [go.sia.tech/core](https://github.com/SiaFoundation/core) and [go.sia.tech/coreutils](https://github.com/SiaFoundation/coreutils).


Updates `go.sia.tech/core` from 0.9.1 to 0.10.0
- [Release notes](https://github.com/SiaFoundation/core/releases)
- [Changelog](https://github.com/SiaFoundation/core/blob/master/CHANGELOG.md)
- [Commits](SiaFoundation/core@v0.9.1...v0.10.0)

Updates `go.sia.tech/coreutils` from 0.10.1 to 0.11.0
- [Release notes](https://github.com/SiaFoundation/coreutils/releases)
- [Changelog](https://github.com/SiaFoundation/coreutils/blob/master/CHANGELOG.md)
- [Commits](SiaFoundation/coreutils@v0.10.1...v0.11.0)

---
updated-dependencies:
- dependency-name: go.sia.tech/core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: go.sia.tech/coreutils
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 10, 2025
@chris124567 chris124567 requested review from ChrisSchinnerl, chris124567, peterjan and n8maninger and removed request for chris124567 February 10, 2025 20:17
Copy link
Member

@peterjan peterjan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM 👍

@ChrisSchinnerl ChrisSchinnerl merged commit 5030a9f into master Feb 12, 2025
8 checks passed
@ChrisSchinnerl ChrisSchinnerl deleted the dependabot/go_modules/all-dependencies-ebf3b06c6c branch February 12, 2025 09:17
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.

3 participants