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 go-modules group with 8 updates #48

Merged
merged 1 commit into from
Nov 11, 2024

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Nov 11, 2024

Bumps the go-modules group with 8 updates:

Package From To
github.com/ProtonMail/gopenpgp/v2 2.7.5 2.8.0
golang.org/x/crypto 0.28.0 0.29.0
golang.org/x/term 0.25.0 0.26.0
golang.org/x/time 0.7.0 0.8.0
github.com/ProtonMail/go-crypto 1.1.0-beta.0-proton 1.1.0
golang.org/x/net 0.30.0 0.31.0
golang.org/x/sys 0.26.0 0.27.0
golang.org/x/text 0.19.0 0.20.0

Updates github.com/ProtonMail/gopenpgp/v2 from 2.7.5 to 2.8.0

Release notes

Sourced from github.com/ProtonMail/gopenpgp/v2's releases.

Release v2.8.0

What's Changed

Support for RFC 9580

Adds support for reading and writing messages with RFC 9580 by updating the underlying go-crypto fork library to the latest version. Note that GopenPGP v2 currently does not support:

  • RFC 9580 intended recipients
  • RFC 9580 key generation

For full RFC 9580 support, we recommend upgrading to GopenPGP v3.

Full Changelog: ProtonMail/gopenpgp@v2.7.5...v2.8.0

Release v2.8.0-proton

This release is v2.8.0 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Pre-release v2.8.0-beta.1-proton

This release is v2.8.0-beta.0 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Pre-Release v2.8.0-beta.0

Added

func (key *Key) GetSHA256Fingerprint() (fingerprint string)

Changed

  • Update go-crypto to 1.1.0-beta.0.

Full Changelog: ProtonMail/gopenpgp@v2.8.0-alpha.1...v2.8.0-beta.0

Pre-release v2.8.0-alpha.1-proton

This release is v2.8.0-alpha.1 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Pre-release v2.8.0-alpha.0-proton

This release is v2.8.0-alpha.0 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Pre-Release v2.8.0-alpha.1

Added

  • API to serialize KeyRings to binary data:
    func (keyRing *KeyRing) Serialize() ([]byte, error)
  • API to parse KeyRings from binary data:
    func NewKeyRingFromBinary(binKeys []byte) (*KeyRing, error)

Pre-Release v2.8.0-alpha.0

... (truncated)

Changelog

Sourced from github.com/ProtonMail/gopenpgp/v2's changelog.

[2.8.0] 2024-10-07

Changed

  • Update go-crypto to 1.1.0.

[2.8.0-beta.0] 2024-10-01

Added

  • Add GetSHA256Fingerprint method to Key.

Changed

  • Update go-crypto to 1.1.0-beta.0.

[2.8.0-alpha.1] 2024-04-09

Added

  • API to serialize KeyRings to binary data:
    func (keyRing *KeyRing) Serialize() ([]byte, error)
  • API to parse KeyRings from binary data:
    func NewKeyRingFromBinary(binKeys []byte) (*KeyRing, error)

[2.8.0-alpha.0] 2024-02-28

Added

  • Adds support for the OpenPGP crypto-refresh by updating the go-crypto dependency to v1.1.0-alpha.1.
  • Adapts the session key logic to handle PKESK/SKESK v6 packets without an algorithm attached
  • Updates the min go version to 1.17 as required by go-crypto v1.1.0-alpha.1.
  • Update the cricl dependency to 1.3.7 matching go-crypto.
Commits

Updates golang.org/x/crypto from 0.28.0 to 0.29.0

Commits
  • 6018723 go.mod: update golang.org/x dependencies
  • 71ed71b README: don't recommend go get
  • 750a45f sha3: add MarshalBinary, AppendBinary, and UnmarshalBinary
  • 36b1725 sha3: avoid trailing permutation
  • 80ea76e sha3: fix padding for long cSHAKE parameters
  • c17aa50 sha3: avoid buffer copy
  • 7cfb916 ssh: return unexpected msg error when server fails keyboard-interactive auth ...
  • b61b08d chacha20: extend ppc64le support to ppc64
  • 6c21748 internal/poly1305: extend ppc64le support to ppc64
  • See full diff in compare view

Updates golang.org/x/term from 0.25.0 to 0.26.0

Commits

Updates golang.org/x/time from 0.7.0 to 0.8.0

Commits

Updates github.com/ProtonMail/go-crypto from 1.1.0-beta.0-proton to 1.1.0

Release notes

Sourced from github.com/ProtonMail/go-crypto's releases.

Release v1.1.0

What's Changed

This release adds full support for the new version of the OpenPGP standard, RFC 9580. In addition, the release introduces an improved non-backwards compatible v2 API. The API in the openpgp package remains fully backwards compatible while the new v2 API is located in a separate v2 package in openpgp.

For the full changes since v1.0.0, see the previous release notes. For the full changelog, see ProtonMail/go-crypto@v1.0.0...v1.1.0.

Changes since v1.1.0-beta.0:

  • Replace expiring curve448 integration test vector by @​lubux
  • Validate input key size in SEIPDv2 decryption by @​lubux

Changelog since v1.1.0-beta.0: ProtonMail/go-crypto@v1.1.0-beta.0...v1.1.0.

Release v1.1.0-proton

What's Changed

This release is v1.1.0 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Commits
  • b97cc3c feat: Validate input key size in SEIPDv2 decryption (#236)
  • 20ab0e4 Replace expiring curve448 integration test vector (#235)
  • ef6d672 Fix SEIPDv2 packet parsing error messages (#215)
  • 4333135 Randomize v4 and v5 signatures via custom notation (#209)
  • 196c8f5 Allow parsing empty Key Flags subpackets (#214)
  • c25e074 Put support for reading v5 packets behind a feature flag (#212)
  • 3df78a3 Restrict S2K types (#213)
  • 3272cd7 ECDH with a v6 key must use the full fingerprint (#211)
  • 140b3d6 Fix session key length generation (#198)
  • 3a86725 Update to use PrepareVerify (#210)
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.30.0 to 0.31.0

Commits
  • 334afa0 go.mod: update golang.org/x dependencies
  • d7f220d quic: add LocalAddr and RemoteAddr to quic.Conn
  • 858db1a http2: surface errors occurring very early in a client conn's lifetime
  • 0aa844c http2: support unencrypted HTTP/2 handoff from net/http
  • f35fec9 http2: detect hung client connections by confirming stream resets
  • e883dae README: don't recommend go get
  • 511cc3a html: add Node.{Ancestors,ChildNodes,Descendants}()
  • 4783315 http2: limit 1xx based on size, do not limit when delivered
  • 5716b98 internal/socket: execute gofmt
  • 42b1186 http2: support ResponseController.EnableFullDuplex
  • See full diff in compare view

Updates golang.org/x/sys from 0.26.0 to 0.27.0

Commits
  • e0753d4 Revert "windows/mkwinsyscall: use syscall.SyscallN instead of syscall.Syscall...
  • c29efe3 windows: add iphlpapi functions for change notifications
  • 8f2aa9f cpu: conditionally re-enable AVX512 support on darwin/amd64
  • 054f1fc README: don't recommend go get
  • ca04041 unix: extend z/OS support
  • 18e038c unix: move NETLINK_* consts to own section
  • d045236 windows: implement Ftruncate using a single syscall on Windows
  • cff53d5 unix: gofmt after CL 610296
  • 123459f unix: update z/OS implementation of fcntl and mmap
  • df4a4da unix/linux: adjust Dockerfile ENV key value format
  • Additional commits viewable in compare view

Updates golang.org/x/text from 0.19.0 to 0.20.0

Commits
  • efd25da go.mod: update golang.org/x dependencies
  • 8a0e65e README: don't recommend go get
  • fefda1a internal/texttest: remove Run and Bench helpers
  • a457f47 all: normalize subtest names to NFC
  • See full diff 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 go-modules group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/ProtonMail/gopenpgp/v2](https://github.com/ProtonMail/gopenpgp) | `2.7.5` | `2.8.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.28.0` | `0.29.0` |
| [golang.org/x/term](https://github.com/golang/term) | `0.25.0` | `0.26.0` |
| [golang.org/x/time](https://github.com/golang/time) | `0.7.0` | `0.8.0` |
| [github.com/ProtonMail/go-crypto](https://github.com/ProtonMail/go-crypto) | `1.1.0-beta.0-proton` | `1.1.0` |
| [golang.org/x/net](https://github.com/golang/net) | `0.30.0` | `0.31.0` |
| [golang.org/x/sys](https://github.com/golang/sys) | `0.26.0` | `0.27.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.19.0` | `0.20.0` |


Updates `github.com/ProtonMail/gopenpgp/v2` from 2.7.5 to 2.8.0
- [Release notes](https://github.com/ProtonMail/gopenpgp/releases)
- [Changelog](https://github.com/ProtonMail/gopenpgp/blob/v2.8.0/CHANGELOG.md)
- [Commits](ProtonMail/gopenpgp@v2.7.5...v2.8.0)

Updates `golang.org/x/crypto` from 0.28.0 to 0.29.0
- [Commits](golang/crypto@v0.28.0...v0.29.0)

Updates `golang.org/x/term` from 0.25.0 to 0.26.0
- [Commits](golang/term@v0.25.0...v0.26.0)

Updates `golang.org/x/time` from 0.7.0 to 0.8.0
- [Commits](golang/time@v0.7.0...v0.8.0)

Updates `github.com/ProtonMail/go-crypto` from 1.1.0-beta.0-proton to 1.1.0
- [Release notes](https://github.com/ProtonMail/go-crypto/releases)
- [Commits](ProtonMail/go-crypto@v1.1.0-beta.0-proton...v1.1.0)

Updates `golang.org/x/net` from 0.30.0 to 0.31.0
- [Commits](golang/net@v0.30.0...v0.31.0)

Updates `golang.org/x/sys` from 0.26.0 to 0.27.0
- [Commits](golang/sys@v0.26.0...v0.27.0)

Updates `golang.org/x/text` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.19.0...v0.20.0)

---
updated-dependencies:
- dependency-name: github.com/ProtonMail/gopenpgp/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/term
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/time
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/ProtonMail/go-crypto
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: golang.org/x/net
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/sys
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: golang.org/x/text
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner November 11, 2024 04:17
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 11, 2024
Copy link

Conventional Commits Report

😢 No conventional commits found.

👉 Learn more about the conventional commits usage at Greenbone.

@mgoetzegb mgoetzegb merged commit 95618ba into main-gb Nov 11, 2024
4 of 5 checks passed
@mgoetzegb mgoetzegb deleted the dependabot/go_modules/go-modules-200cb6d1c3 branch November 11, 2024 17:21
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 go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant