-
Notifications
You must be signed in to change notification settings - Fork 9
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
Conversation
a64c239
to
ad09385
Compare
5f949bc
to
d5a2b6a
Compare
8b39f30
to
39ece15
Compare
f177b7d
to
aab50af
Compare
a24dc2b
to
523e193
Compare
c751b33
to
d48ad0f
Compare
10eb950
to
2c3543a
Compare
⚠ Artifact update problemRenovate 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:
The artifact failure details are included below: File name: go.sum
|
f9f350e
to
f570a98
Compare
Signed-off-by: Platform Engineering Bot <[email protected]>
f570a98
to
8750396
Compare
go 1.22.0 | ||
|
||
toolchain go1.22.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be downgraded to 1.21, to match the other repos?
This PR contains the following updates:
v0.6.1
->v0.6.2
v0.5.0
->v0.6.0
v24.0.7+incompatible
->v26.1.1+incompatible
v0.4.0
->v0.5.0
v3.11.0
->v3.12.0
v1.2.4
->v1.4.1
v0.20.0
->v0.21.0
v0.20.2
->v0.21.0
v0.22.4
->v0.23.0
v1.5.3
->v1.5.4
v0.5.9
->v0.6.0
v1.3.1
->v1.6.0
v1.0.2
->v1.1.0
v1.0.0
->v1.1.0
v2.0.0
->v2.1.0
v0.4.0
->v0.5.0
v0.5.0
->v0.7.0
v0.8.0
->v0.9.1
v0.5.1
->v0.11.1
v0.6.2
->v0.10.0
v0.12.0
->v0.17.0
v0.15.0
->v0.24.0
v0.12.0
->v0.20.0
v0.12.0
->v0.20.0
v0.12.0
->v0.20.0
v0.13.0
->v0.15.0
v0.3.0
->v0.5.0
v0.13.0
->v0.20.0
v1.6.7
->v2.0.6
v1.31.0
->v1.34.0
v2.4.0
->v3.0.1
v0.28.2
->v0.30.0
v0.28.2
->v0.30.0
v0.28.2
->v0.30.0
v2.100.1
->v2.120.1
a781456
->f0e62f9
3b25d92
->fe8a2dd
v4.3.0
->v4.4.1
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
v3.11.2
Compare Source
v3.11.1
Compare Source
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
andlogr.NewContextWithSlogLogger
use the same context key, which allowslogr.FromContext
andlogr.FromContextAsSlogLogger
to returnlogr.Logger
or*slog.Logger
respectively, including transparently converting each to the other as needed.Functions
logr/slogr.NewLogr
andlogr/slogr.ToSlogHandler
have been superceded bylogr.FromSlogHandler
andlogr.ToSlogHandler
respectively, and typelogr/slogr.SlogSink
has been superceded bylogr.SlogSink
. All of the old names inlogr/slogr
remain, for compatibility.Package
logr/funcr
now supportslogr.SlogSink
, meaning that it's output passes all but one of the Slog conformance tests (that exception being thatfuncr
handles the timestamp itself).Users who have a
logr.Logger
and need a*slog.Logger
can callslog.New(logr.ToSlogHandler(...))
and all output will go through the same stack.Users who have a
*slog.Logger
orslog.Handler
can calllogr.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 alogr.LogSink
are encouraged, but not required, to extend their implementation to improve the quality of log output coming from aslog
API call.Breaking change: the call depth for
LogSink.Enabled
when called viaLogger.Enabled
was fixed to be the same as for other call paths. Implementers of aLogSink
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
google/go-cmp (github.com/google/go-cmp)
v0.6.0
Compare Source
New API:
cmpopts.EquateComparable
Documentation changes:
Build changes:
Testing changes:
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
Fixes
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/Cnk6H9C4aagRelease 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.21Compare 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.21Compare 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.21Compare 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 ContainersCompare Source
What's Changed
20ef8d9
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/377b56a66
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/381338a5c
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/4035fbcb9
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/4202cbd1a
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/43cc0d7d5
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/44cb10b58
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/45f61b2ab
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/46Full Changelog: arcalot/arcaflow-engine-deployer-docker@v0.6.1...v0.7.0
v0.6.1
: Update for CVECompare 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.21Compare Source
What's Changed
e7f228f
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/22ce6ec04
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/245917fa6
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/2534aaf87
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/28a8692b3
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/29e12d46a
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/304771b56
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/33abb6017
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-docker/pull/34Full 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 CVECompare Source
What's Changed
Full Changelog: arcalot/arcaflow-engine-deployer-kubernetes@v0.9.0...v0.9.1
v0.9.0
: Upgrade Golang to 1.21Compare Source
What's Changed
694cdab
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-kubernetes/pull/3326f96df
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-kubernetes/pull/35Full 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
RootObject()
function to access the scope's root with validation.v0.10.0-beta1
PRs
Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.8.0...v0.11.0
v0.8.0
: Upgrade Golang to 1.21Compare 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
e12d46a
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-plugin-sdk-go/pull/71Full 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 UnserializationCompare 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 SupportCompare Source
Add privileged as an option to the Podman deployment config under
HostConfig
.What's Changed
cc0d7d5
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-podman/pull/55cb10b58
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-podman/pull/57f61b2ab
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-podman/pull/59Full Changelog: arcalot/arcaflow-engine-deployer-podman@v0.9.0...v0.10.0
v0.9.0
: : added support for bind-mounting optionsCompare Source
What's changed?
Pull Requests
20ef8d9
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-podman/pull/441338a5c
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-podman/pull/4535fbcb9
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-podman/pull/5002cbd1a
by @platform-engineering-bot in https://github.com/arcalot/arcaflow-engine-deployer-podman/pull/53New 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.
This PR has been generated by Renovate Bot.