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 #22

Merged
merged 1 commit into from
Jul 29, 2024
Merged

Update go updates #22

merged 1 commit into from
Jul 29, 2024

Conversation

redhat-renovate-bot
Copy link
Contributor

@redhat-renovate-bot redhat-renovate-bot commented Jul 22, 2024

This PR contains the following updates:

Package Type Update Change
github.com/emicklei/go-restful/v3 indirect minor v3.11.0 -> v3.12.1
github.com/go-logr/logr indirect minor v1.2.4 -> v1.4.2
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/uuid indirect minor v1.3.0 -> v1.6.0
github.com/stretchr/testify require minor v1.8.4 -> v1.9.0
go.flow.arcalot.io/pluginsdk require minor v0.8.0 -> v0.12.3
golang.org/x/net indirect minor v0.17.0 -> v0.27.0
golang.org/x/oauth2 indirect minor v0.13.0 -> v0.21.0
golang.org/x/sys indirect minor v0.13.0 -> v0.22.0
golang.org/x/term indirect minor v0.13.0 -> v0.22.0
golang.org/x/text indirect minor v0.13.0 -> v0.16.0
golang.org/x/time indirect minor v0.3.0 -> v0.5.0
google.golang.org/appengine indirect major v1.6.7 -> v2.0.6
google.golang.org/protobuf indirect minor v1.31.0 -> v1.34.2
gopkg.in/yaml.v2 indirect major v2.4.0 -> v3.0.1
k8s.io/api require minor v0.28.4 -> v0.30.3
k8s.io/apimachinery indirect minor v0.28.4 -> v0.30.3
k8s.io/client-go require minor v0.28.4 -> v0.30.3
k8s.io/klog/v2 indirect minor v2.100.1 -> v2.130.1
k8s.io/kube-openapi indirect digest a781456 -> 6f6746f
k8s.io/utils indirect digest 3b25d92 -> 18e509b
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

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

v3.12.1

Compare Source

  • fix misroute when dealing multiple webservice with regex (#​549) (thanks Haitao Chen)

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.2

Compare Source

What's Changed

Dependencies:

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

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/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)

v1.3.1

Compare Source

Bug Fixes
stretchr/testify (github.com/stretchr/testify)

v1.9.0

Compare Source

What's Changed

New Contributors

Full Changelog: stretchr/testify@v1.8.4...v1.9.0

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

v0.12.3: : Dependency Updates & Channel Fix

Compare Source

What's changed

  • Dependencies have been updated
  • The program to plugin signal channel is not closed by this code anymore. It is up to the program to close it if desired.

Pull Requests

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.12.2...v0.12.3

v0.12.2: : Concurrency Improvement Bug Fixes

Compare Source

What's changed

The main improvements in this release are bug fixes that fix concurrency problems and race conditions that could lead to deadlocks.

Pull Requests

New Contributors

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.12.1...v0.12.2

v0.12.1: : Dependency updates

Compare Source

What's Changed

New Contributors

Full Changelog: arcalot/arcaflow-plugin-sdk-go@v0.12.0...v0.12.1

v0.12.0

Compare Source

What's Changed

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

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

golang/appengine (google.golang.org/appengine)

v2.0.6

Compare Source

What's Changed

New Contributors

Full Changelog: golang/appengine@v1.6.8...v2.0.6

v2.0.5

Compare Source

What's Changed

New Contributors

Full Changelog: golang/appengine@v2.0.4...v2.0.5

v2.0.4

Compare Source

What's Changed

New Contributors

Full Changelog: golang/appengine@v2.0.3...v2.0.4

v2.0.3

Compare Source

What's Changed


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.

@redhat-renovate-bot
Copy link
Contributor Author

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.21 -> 1.22.5

@redhat-renovate-bot redhat-renovate-bot force-pushed the renovate/go-updates branch 2 times, most recently from 25e52c0 to 3a5ab69 Compare July 26, 2024 04:06
@webbnh webbnh force-pushed the renovate/go-updates branch from 3a5ab69 to b5e0643 Compare July 29, 2024 18:35
@webbnh webbnh force-pushed the renovate/go-updates branch from b5e0643 to ba3d80e Compare July 29, 2024 18:44
@webbnh webbnh self-assigned this Jul 29, 2024
@webbnh
Copy link
Contributor

webbnh commented Jul 29, 2024

Declined the update to Go; added a toolchain directive specifying 1.21 to get a consistent set of dependencies.

@webbnh webbnh merged commit 2714bef into main Jul 29, 2024
2 checks passed
@webbnh webbnh deleted the renovate/go-updates branch July 29, 2024 18:48
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.

2 participants