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 go updates #72

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

Conversation

platform-engineering-bot
Copy link
Contributor

@platform-engineering-bot platform-engineering-bot commented Dec 11, 2023

This PR contains the following updates:

Package Type Update Change
github.com/Microsoft/go-winio indirect patch v0.6.1 -> v0.6.2
github.com/distribution/reference indirect minor v0.5.0 -> v0.6.0
github.com/docker/docker indirect major v24.0.7+incompatible -> v26.1.1+incompatible
github.com/docker/go-connections indirect minor v0.4.0 -> v0.5.0
github.com/emicklei/go-restful/v3 indirect minor v3.11.0 -> v3.12.0
github.com/go-logr/logr indirect minor v1.2.4 -> v1.4.1
github.com/go-openapi/jsonpointer indirect minor v0.20.0 -> v0.21.0
github.com/go-openapi/jsonreference indirect minor v0.20.2 -> v0.21.0
github.com/go-openapi/swag indirect minor v0.22.4 -> v0.23.0
github.com/golang/protobuf indirect patch v1.5.3 -> v1.5.4
github.com/google/go-cmp indirect minor v0.5.9 -> v0.6.0
github.com/google/uuid indirect minor v1.3.1 -> v1.6.0
github.com/opencontainers/image-spec indirect minor v1.0.2 -> v1.1.0
go.arcalot.io/lang indirect minor v1.0.0 -> v1.1.0
go.arcalot.io/log/v2 indirect minor v2.0.0 -> v2.1.0
go.flow.arcalot.io/deployer indirect minor v0.4.0 -> v0.5.0
go.flow.arcalot.io/dockerdeployer require minor v0.5.0 -> v0.7.0
go.flow.arcalot.io/kubernetesdeployer require minor v0.8.0 -> v0.9.1
go.flow.arcalot.io/pluginsdk require minor v0.5.1 -> v0.11.1
go.flow.arcalot.io/podmandeployer require minor v0.6.2 -> v0.10.0
golang.org/x/mod indirect minor v0.12.0 -> v0.17.0
golang.org/x/net indirect minor v0.15.0 -> v0.24.0
golang.org/x/oauth2 indirect minor v0.12.0 -> v0.20.0
golang.org/x/sys indirect minor v0.12.0 -> v0.20.0
golang.org/x/term indirect minor v0.12.0 -> v0.20.0
golang.org/x/text indirect minor v0.13.0 -> v0.15.0
golang.org/x/time indirect minor v0.3.0 -> v0.5.0
golang.org/x/tools indirect minor v0.13.0 -> v0.20.0
google.golang.org/appengine indirect major v1.6.7 -> v2.0.6
google.golang.org/protobuf indirect minor v1.31.0 -> v1.34.0
gopkg.in/yaml.v2 indirect major v2.4.0 -> v3.0.1
k8s.io/api indirect minor v0.28.2 -> v0.30.0
k8s.io/apimachinery indirect minor v0.28.2 -> v0.30.0
k8s.io/client-go indirect minor v0.28.2 -> v0.30.0
k8s.io/klog/v2 indirect minor v2.100.1 -> v2.120.1
k8s.io/kube-openapi indirect digest a781456 -> f0e62f9
k8s.io/utils indirect digest 3b25d92 -> fe8a2dd
sigs.k8s.io/structured-merge-diff/v4 indirect minor v4.3.0 -> v4.4.1
sigs.k8s.io/yaml indirect minor v1.3.0 -> v1.4.0

Release Notes

Microsoft/go-winio (github.com/Microsoft/go-winio)

v0.6.2

Compare Source

What's Changed

New Contributors

Full Changelog: microsoft/go-winio@v0.6.1...v0.6.2

distribution/reference (github.com/distribution/reference)

v0.6.0

Compare Source

What's Changed

New Contributors

Full Changelog: distribution/reference@v0.5.0...v0.6.0

docker/docker (github.com/docker/docker)

v26.1.1+incompatible

Compare Source

v26.1.0+incompatible

Compare Source

v26.0.2+incompatible

Compare Source

v26.0.1+incompatible

Compare Source

v26.0.0+incompatible

Compare Source

v25.0.5+incompatible

Compare Source

v25.0.4+incompatible

Compare Source

v25.0.3+incompatible

Compare Source

v25.0.2+incompatible

Compare Source

v25.0.1+incompatible

Compare Source

v25.0.0+incompatible

Compare Source

v24.0.9+incompatible

Compare Source

v24.0.8+incompatible

Compare Source

docker/go-connections (github.com/docker/go-connections)

v0.5.0

Compare Source

emicklei/go-restful (github.com/emicklei/go-restful/v3)

v3.12.0

Compare Source

v3.11.3

Compare Source

  • better not have 2 tags on one commit

v3.11.2

Compare Source

  • fix by restoring custom JSON handler functions (Mike Beaumont #​540)

v3.11.1

Compare Source

  • fix by restoring custom JSON handler functions (Mike Beaumont #​540)
go-logr/logr (github.com/go-logr/logr)

v1.4.1

Compare Source

What's Changed

Full Changelog: go-logr/logr@v1.4.0...v1.4.1

v1.4.0

Compare Source

This release dramatically improves interoperability with Go's log/slog package. In particular, logr.NewContext and logr.NewContextWithSlogLogger use the same context key, which allows logr.FromContext and logr.FromContextAsSlogLogger to return logr.Logger or *slog.Logger respectively, including transparently converting each to the other as needed.

Functions logr/slogr.NewLogr and logr/slogr.ToSlogHandler have been superceded by logr.FromSlogHandler and logr.ToSlogHandler respectively, and type logr/slogr.SlogSink has been superceded by logr.SlogSink. All of the old names in logr/slogr remain, for compatibility.

Package logr/funcr now supports logr.SlogSink, meaning that it's output passes all but one of the Slog conformance tests (that exception being that funcr handles the timestamp itself).

Users who have a logr.Logger and need a *slog.Logger can call slog.New(logr.ToSlogHandler(...)) and all output will go through the same stack.

Users who have a *slog.Logger or slog.Handler can call logr.FromSlogHandler(...) and all output will go through the same stack.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.3.0...v1.4.0

v1.3.0

Compare Source

This release adds support for slog in a new, self-contained logr/slogr package. Implementers of a logr.LogSink are encouraged, but not required, to extend their implementation to improve the quality of log output coming from a slog API call.

Breaking change: the call depth for LogSink.Enabled when called via Logger.Enabled was fixed to be the same as for other call paths. Implementers of a LogSink who have worked around this bug will need to remove their workarounds.

Security best practices were improved. Only Go versions >= 1.18 are supported by this release.

What's Changed


New Contributors

Full Changelog: go-logr/logr@v1.2.4...v1.3.0

go-openapi/jsonpointer (github.com/go-openapi/jsonpointer)

v0.21.0

Compare Source

v0.20.3

Compare Source

v0.20.2

Compare Source

v0.20.1

Compare Source

go-openapi/jsonreference (github.com/go-openapi/jsonreference)

v0.21.0

Compare Source

v0.20.5

Compare Source

v0.20.4

Compare Source

v0.20.3

Compare Source

go-openapi/swag (github.com/go-openapi/swag)

v0.23.0

Compare Source

v0.22.10

Compare Source

v0.22.9

Compare Source

v0.22.8

Compare Source

v0.22.7

Compare Source

v0.22.6

Compare Source

v0.22.5

Compare Source

golang/protobuf (github.com/golang/protobuf)

v1.5.4

Compare Source

Notable changes

  • update descriptor.proto to latest version
google/go-cmp (github.com/google/go-cmp)

v0.6.0

Compare Source

New API:

  • (#​340) Add cmpopts.EquateComparable

Documentation changes:

  • (#​337) Use of hotlinking of Go identifiers

Build changes:

  • (#​325) Remove purego fallbacks

Testing changes:

  • (#​322) Run tests for Go 1.20 version
  • (#​332) Pin GitHub action versions
  • (#​327) set workflow permission to read-only
google/uuid (github.com/google/uuid)

v1.6.0

Compare Source

Features
Bug Fixes

v1.5.0

Compare Source

Features

v1.4.0

Compare Source

Features
  • UUIDs slice type with Strings() convenience method (#​133) (cd5fbbd)
Fixes
  • Clarify that Parse's job is to parse but not necessarily validate strings. (Documents current behavior)
opencontainers/image-spec (github.com/opencontainers/image-spec)

v1.1.0

Compare Source

Vote Passed [+7-0] - https://groups.google.com/a/opencontainers.org/g/dev/c/Cnk6H9C4aag
Release PR : https://github.com/opencontainers/image-spec/pull/1161
Full Changelog: opencontainers/image-spec@v1.0.2...v1.1.0

Associated Distribution Specification Release - https://github.com/opencontainers/distribution-spec/releases/tag/v1.1.0

arcalot/go-lang (go.arcalot.io/lang)

v1.1.0: 1.1.0 Upgrade Golang to 1.21

Compare Source

What's Changed

New Contributors

Full Changelog: arcalot/go-lang@v1.0.0...v1.1.0

arcalot/go-log (go.arcalot.io/log/v2)

v2.1.0: 2.1.0 Upgrade Golang to 1.21

Compare Source

What's Changed

New Contributors

Full Changelog: arcalot/go-log@v2.0.0...v2.1.0

arcalot/arcaflow-engine-deployer (go.flow.arcalot.io/deployer)

v0.5.0: 0.5.0 Upgrade Golang to 1.21

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-engine-deployer@v0.4.0...v0.5.0

arcalot/arcaflow-engine-deployer-docker (go.flow.arcalot.io/dockerdeployer)

v0.7.0: Support Privileged Containers

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-engine-deployer-docker@v0.6.1...v0.7.0

v0.6.1: Update for CVE

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-engine-deployer-docker@v0.6.0...v0.6.1

v0.6.0: 0.6.0 Upgrade Golang to 1.21

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-engine-deployer-docker@v0.5.0...v0.6.0

arcalot/arcaflow-engine-deployer-kubernetes (go.flow.arcalot.io/kubernetesdeployer)

v0.9.1: Update for CVE

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-engine-deployer-kubernetes@v0.9.0...v0.9.1

v0.9.0: Upgrade Golang to 1.21

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-engine-deployer-kubernetes@v0.8.0...v0.9.0

arcalot/arcaflow-plugin-sdk-go (go.flow.arcalot.io/pluginsdk)

v0.11.1

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.11.0...v0.11.1

v0.11.0

Compare Source

Changes

  • Added RootObject() function to access the scope's root with validation.
  • Added namespaced scopes in v0.10.0-beta1
  • Added a helper function to use object-like schemas.

PRs

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.8.0...v0.11.0

v0.8.0: Upgrade Golang to 1.21

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.7.1...v0.8.0

v0.7.1

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.7.0...v0.7.1

v0.7.0

Compare Source

This doesn't break anything. It just adds functions.

What's Changed

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.6.0...v0.7.0

v0.6.0: Fix Unserialization

Compare Source

What's Changed

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.5.1...v0.6.0

arcalot/arcaflow-engine-deployer-podman (go.flow.arcalot.io/podmandeployer)

v0.10.0: Add Privileged Support

Compare Source

Add privileged as an option to the Podman deployment config under HostConfig.

What's Changed

Full Changelog: arcalot/arcaflow-engine-deployer-podman@v0.9.0...v0.10.0

v0.9.0: : added support for bind-mounting options

Compare Source

What's changed?

  • added support for bind-mounting options
  • updated dependencies

Pull Requests

New Contributors


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 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 Renovate Bot.

@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 6 times, most recently from a64c239 to ad09385 Compare December 17, 2023 18:21
@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 7 times, most recently from 5f949bc to d5a2b6a Compare December 27, 2023 19:15
@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 8 times, most recently from 8b39f30 to 39ece15 Compare January 8, 2024 19:18
@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 2 times, most recently from f177b7d to aab50af Compare January 12, 2024 01:00
@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 7 times, most recently from a24dc2b to 523e193 Compare January 24, 2024 10:19
@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 6 times, most recently from c6e09f0 to b5576c3 Compare April 11, 2024 17:35
@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 7 times, most recently from 959a07f to 9bbed14 Compare April 22, 2024 17:15
@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 6 times, most recently from a88c969 to a3788a7 Compare April 29, 2024 19:14
@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 5 times, most recently from 10eb950 to 2c3543a Compare May 2, 2024 13:32
@platform-engineering-bot
Copy link
Contributor Author

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
/bin/sh: line 1: go: command not found

@platform-engineering-bot platform-engineering-bot force-pushed the renovate/go-updates branch 3 times, most recently from f9f350e to f570a98 Compare May 5, 2024 14:09
Signed-off-by: Platform Engineering Bot <platform-engineering@redhat.com>
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