Skip to content

Conversation

red-hat-konflux[bot]
Copy link

@red-hat-konflux red-hat-konflux bot commented May 4, 2025

This PR contains the following updates:

Package Type Update Change
cel.dev/expr indirect minor v0.19.1 -> v0.24.0
cloud.google.com/go/auth indirect minor v0.15.0 -> v0.17.0
cloud.google.com/go/compute/metadata indirect minor v0.6.0 -> v0.9.0
cloud.google.com/go/trace indirect patch v1.11.5 -> v1.11.7
github.com/bgentry/speakeasy indirect minor v0.1.0 -> v0.2.0
github.com/bufbuild/protocompile indirect minor v0.10.0 -> v0.14.1
github.com/cncf/xds/go indirect digest ae57f3c -> 2ac532f
github.com/fatih/color indirect minor v1.15.0 -> v1.18.0
github.com/fullstorydev/grpcurl require patch v1.9.2 -> v1.9.3
github.com/go-logr/logr indirect patch v1.4.2 -> v1.4.3
github.com/go-sql-driver/mysql require minor v1.8.1 -> v1.9.3
github.com/google/trillian require patch v1.7.1 -> v1.7.2
github.com/jackc/pgerrcode require digest 6e2875d -> afb5586
github.com/jhump/protoreflect indirect minor v1.16.0 -> v1.17.0
github.com/jonboulle/clockwork indirect minor v0.4.0 -> v0.5.0
github.com/klauspost/compress indirect minor v1.17.11 -> v1.18.0
github.com/mattn/go-colorable indirect patch v0.1.13 -> v0.1.14
github.com/mattn/go-isatty indirect patch v0.0.19 -> v0.0.20
github.com/mattn/go-runewidth indirect patch v0.0.16 -> v0.0.19
github.com/mattn/go-sqlite3 require patch v1.14.24 -> v1.14.32
github.com/olekukonko/ll indirect minor v0.0.8 -> v0.1.1
github.com/olekukonko/tablewriter indirect minor v1.0.8 -> v1.1.0
github.com/prometheus/client_golang require minor v1.20.5 -> v1.23.2
github.com/prometheus/common indirect minor v0.55.0 -> v0.67.1
github.com/prometheus/procfs indirect minor v0.15.1 -> v0.17.0
github.com/prometheus/prometheus indirect minor v0.51.0 -> v0.306.0
github.com/sergi/go-diff require minor v1.3.1 -> v1.4.0
github.com/spf13/cobra require minor v1.8.1 -> v1.10.1
github.com/spf13/pflag require patch v1.0.6 -> v1.0.10
github.com/urfave/cli indirect patch v1.22.16 -> v1.22.17
go.etcd.io/bbolt indirect minor v1.3.11 -> v1.4.3
go.opentelemetry.io/auto/sdk indirect minor v1.1.0 -> v1.2.1
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc indirect minor v0.59.0 -> v0.63.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp indirect minor v0.59.0 -> v0.63.0
go.opentelemetry.io/proto/otlp indirect minor v1.1.0 -> v1.8.0
golang.org/x/crypto require minor v0.36.0 -> v0.43.0
golang.org/x/mod indirect minor v0.22.0 -> v0.29.0
golang.org/x/net require minor v0.37.0 -> v0.46.0
golang.org/x/oauth2 indirect minor v0.28.0 -> v0.32.0
golang.org/x/sync indirect minor v0.12.0 -> v0.17.0
golang.org/x/sys indirect minor v0.31.0 -> v0.37.0
golang.org/x/text indirect minor v0.23.0 -> v0.30.0
golang.org/x/time require minor v0.10.0 -> v0.14.0
golang.org/x/tools indirect minor v0.29.0 -> v0.38.0
google.golang.org/api indirect minor v0.224.0 -> v0.252.0
google.golang.org/genproto indirect digest de1ac95 -> 49b9836
google.golang.org/genproto/googleapis/api indirect digest de1ac95 -> 49b9836
google.golang.org/genproto/googleapis/rpc indirect digest de1ac95 -> 49b9836
sigs.k8s.io/yaml indirect minor v1.4.0 -> v1.6.0

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

google/cel-spec (cel.dev/expr)

v0.24.0

Compare Source

What's Changed

New Contributors

Full Changelog: google/cel-spec@v0.23.1...v0.24.0

v0.23.1

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.23.0...v0.23.1

v0.23.0

Compare Source

What's Changed

New Contributors

Full Changelog: google/cel-spec@v0.22.1...v0.23.0

v0.22.1

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.22.0...v0.22.1

v0.22.0

Compare Source

What's Changed

  • Add test_suite and test_config under conformance [#​441]

New Contributors

Full Changelog: google/cel-spec@v0.21.2...v0.22.0

v0.21.2

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.21.1...v0.21.2

v0.21.1

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.21.0...v0.21.1

v0.21.0

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.20.0...v0.21.0

v0.20.0

What's Changed

Full Changelog: google/cel-spec@v0.19.2...v0.20.0

v0.19.2

Compare Source

What's Changed

Full Changelog: google/cel-spec@v0.19.1...v0.19.2

googleapis/google-cloud-go (cloud.google.com/go/auth)

v0.17.0

  • firestore BREAKING CHANGES:
    • Remove UpdateMap and UpdateStruct; rename UpdatePaths to Update.
      Change
      docref.UpdateMap(ctx, map[string]interface{}{"a.b", 1})
      to
      docref.Update(ctx, []firestore.Update{{Path: "a.b", Value: 1}})

      Change
      docref.UpdateStruct(ctx, []string{"Field"}, aStruct)
      to
      docref.Update(ctx, []firestore.Update{{Path: "Field", Value: aStruct.Field}})

    • Rename MergePaths to Merge; require args to be FieldPaths

    • A value stored as an integer can be read into a floating-point field, and vice versa.

  • bigtable/cmd/cbt:
    • Support deleting a column.
    • Add regex option for row read.
  • spanner: Mark stable.
  • storage:
    • Add Reader.ContentEncoding method.
    • Fix handling of SignedURL headers.
  • bigquery:
    • If Uploader.Put is called with no rows, it returns nil without making a
      call.
    • Schema inference supports the "nullable" option in struct tags for
      non-required fields.
    • TimePartitioning supports "Field".

v0.16.0

Compare Source

  • Other bigquery changes:

    • JobIterator.Next returns *Job; removed JobInfo (BREAKING CHANGE).
    • UseStandardSQL is deprecated; set UseLegacySQL to true if you need
      Legacy SQL.
    • Uploader.Put will generate a random insert ID if you do not provide one.
    • Support time partitioning for load jobs.
    • Support dry-run queries.
    • A Job remembers its last retrieved status.
    • Support retrieving job configuration.
    • Support labels for jobs and tables.
    • Support dataset access lists.
    • Improve support for external data sources, including data from Bigtable and
      Google Sheets, and tables with external data.
    • Support updating a table's view configuration.
    • Fix uploading civil times with nanoseconds.
  • storage:

    • Support PubSub notifications.
    • Support Requester Pays buckets.
  • profiler: Support goroutine and mutex profile types.

bgentry/speakeasy (github.com/bgentry/speakeasy)

v0.2.0

Compare Source

What's Changed

Full Changelog: bgentry/speakeasy@v0.1.0...v0.2.0

bufbuild/protocompile (github.com/bufbuild/protocompile)

v0.14.1

Compare Source

What's Changed

Bugfixes changes
  • Fix bug where extension declarations marked as reserved would not allow the full_name or type fields to be specified. This failed to mirror the corresponding rule in the reference compiler protoc, which allows them to be set for documentation purposes. Now these two fields can be used on reserved declarations as long as both are present. By @​jhump in #​327
  • Fix panic and error-reporting anomalies that can occur when interpreting options in lenient mode via calling either options.InterpretOptionsLenient or options.InterpretUnlinkedOptions. By @​jhump in #​331

Full Changelog: bufbuild/protocompile@v0.14.0...v0.14.1

v0.14.0

Compare Source

This version makes Protobuf Editions available to users of this package, without needing to use a special opt-in that is documented as test-only. It contains one backwards-incompatible change, only for users that used that Editions opt-in: it has been removed since the functionality is now generally available.

What's Changed

Bugfixes
  • Correctly handle groups in the TextName method of field descriptors created by the compiler in #​297
  • Fix bug in extension declarations: presence of a declaration implies the range is verified in #​303
  • Fix a typo in code that adapts/re-parses features to match a descriptor; addresses a bug in protoutil.ResolveCustomFeature in #​305
  • Add more thorough checks for when to adapt a value when resolving custom feature; addresses a deficiency in protoutil.ResolveCustomFeature in #​306
  • Correctly handle maps in the Kind method of field descriptors created by the compiler, in files that define a file-wide default of delimited encoding for messages in #​312
Enhancements
  • Add google/protobuf/cpp_features.proto, google/protobuf/java_features.proto, and google/protobuf/go_features.proto to the set of files provided by protocomile.WithStandardImports in #​295
  • Add some final checks to mirror logic of protoc v27.0: files cannot use custom features defined in the same file, enforce "feature support" options, which define the editions in which a feature and/or feature value can be used in #​301 and #​309
  • Enable support for Protobuf Editions. To start, this only supports edition 2023. Added in #​301
    • This contains a backwards-incompatible change: the editionstesting.AllowEditions() function (which was documented as temporary when introduced in v0.10.0) has been removed.
  • Add wellknownimports package, for providing actual source code for the standard imports (wellknownimports.WithStandardImports is an alternative to protocompile.WithStandardImports) in #​310
Other changes
  • Update linker tests to use protodesc to create descriptors from compilation results, to verify compilation results can be correctly processed by protobuf-go runtime in #​302
  • Add another (missing) test case for extension declarations in #​304

Full Changelog: bufbuild/protocompile@v0.13.0...v0.14.0

v0.13.0

Compare Source

This release includes a single addition to the protocompile.Compiler type.

What's Changed

Enhancements
  • Provide ability for caller to seed/re-use symbol table across compile jobs by @​jhump in #​294

Full Changelog: bufbuild/protocompile@v0.12.0...v0.13.0

v0.12.0

Compare Source

This release mostly contains performance improvements. It also includes an addition that makes it possible to implement a descriptor resolver on top of linker.Files much more efficiently, using a *linker.Symbols as an index.

What's Changed

Enhancements
Other changes
  • Disallow options that use message-set-wire-format if Protobuf runtime can't support them by @​jhump in #​284
  • Changes ast.NoSourceNode so that its methods now require a pointer receiver by @​jhump in #​291
    • This is a backwards-incompatible change. The impact should be low (likely even zero) since most users of this module will not be directly constructing ast.NoSourceNode values or type-asserting ast.Node values to ast.NoSourceNode. The change was made because of non-trivial performance gains, by greatly reducing the number of NoSourceNode values that need to be allocated on the heap when working with a parser.Result that has no AST.

Full Changelog: bufbuild/protocompile@v0.11.0...v0.12.0

v0.11.0

Compare Source

This release includes some more Editions-related work.

What's Changed

Bugfixes
  • Validate target type for all option fields, not just features by @​jhump in #​279
    • Previously, the targets field option was only validated for fields of google.protobuf.FeatureSet, but it is now validated for all fields set on option values.
  • Fix issues with reporting of redundant/inaccurate errors by @​jhump in #​281
Enhancements
  • Add Editions-related helper functions, for resolving features, to protoutil sub-package by @​jhump in #​283
  • Allow access to original descriptor when wrapped in a linker.File via new Unwrap method by @​jhump in #​278
Other changes
  • Proto2 group fields can use lower-case name in the text format (in option values that use message literals) by @​jhump in #​268
    • This aligns protocompile with a small change that is coming in protoc v27.0.

Full Changelog: bufbuild/protocompile@v0.10.0...v0.11.0

fatih/color (github.com/fatih/color)

v1.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: fatih/color@v1.17.0...v1.18.0

v1.17.0

Compare Source

What's Changed

New Contributors

Full Changelog: fatih/color@v1.16.0...v1.17.0

v1.16.0

Compare Source

What's Changed

Dependency updates

New Contributors

Full Changelog: fatih/color@v1.15.0...v1.16.0

fullstorydev/grpcurl (github.com/fullstorydev/grpcurl)

v1.9.3

Compare Source

Changelog

go-logr/logr (github.com/go-logr/logr)

v1.4.3

Compare Source

Minor release.

What's Changed

New Contributors

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

go-sql-driver/mysql (github.com/go-sql-driver/mysql)

v1.9.3

Compare Source

What's Changed

Full Changelog: go-sql-driver/mysql@v1.9.2...v1.9.3

v1.9.2

Compare Source

v1.9.2 is a re-release of v1.9.1 due to a release process issue; no changes were made to the content.

v1.9.1

Compare Source

Major Changes
Bugfixes
  • go.mod: fix go version format (#​1682)
  • Fix FormatDSN missing ConnectionAttributes (#​1619)

v1.9.0

Compare Source

Major Changes
  • Implement zlib compression. (#​1487)
  • Supported Go version is updated to Go 1.21+. (#​1639)
  • Add support for VECTOR type introduced in MySQL 9.0. (#​1609)
  • Config object can have custom dial function. (#​1527)
Bugfixes
  • Fix auth errors when username/password are too long. (#​1625)
  • Check if MySQL supports CLIENT_CONNECT_ATTRS before sending client attributes. (#​1640)
  • Fix auth switch request handling. (#​1666)
Other changes
  • Add "filename:line" prefix to log in go-mysql. Custom loggers now show it. (#​1589)
  • Improve error handling. It reduces the "busy buffer" errors. (#​1595, #​1601, #​1641)
  • Use strconv.Atoi to parse max_allowed_packet. (#​1661)
  • rejectReadOnly option now handles ER_READ_ONLY_MODE (1290) error too. (#​1660)
google/trillian (github.com/google/trillian)

v1.7.2

Compare Source

  • Recommended go version for development: 1.23
    • This is the version used by the cloudbuild presubmits. Using a
      different version can lead to presubmits failing due to unexpected
      diffs.
Storage
Election system
Misc
Dependency update
jhump/protoreflect (github.com/jhump/protoreflect)

v1.17.0

Compare Source

This release deprecates some packages that have newer alternatives in the Protobuf runtime. It also includes some small additions to the grpcreflect and desc/sourceinfo packages. The rest of the changes are bug fixes.

"github.com/jhump/protoreflect/desc"

Changes:

  • This package is now deprecated. Though use of this package is still needed in order to use a handful of other packages in this repo, many usages should instead prefer the "google.golang.org/protobuf/reflect/protoreflect" package in the Protobuf runtime. In a v2 of this repo, this package will no longer be present.
  • A performance improvement was contributed that speeds up the MessageDescriptor.FindFieldByName method.
"github.com/jhump/protoreflect/desc/protoparse"

Changes and bugfixes:

  • This package is now deprecated. Most usages should instead prefer the "github.com/bufbuild/protocompile" package. There are some behavioral differences that we hope to address with additional API and enhancements to protocompile. But the protoparse package here is just a veneer on top of protocompile and we plan to do as little maintenance as possible here. In a v2 of this repo, this package will no longer be present.
  • The protocompile dependency has been updated to use a more recent version of that package. This addresses potential panics when calling Parser.ParseButDontLink.
"github.com/jhump/protoreflect/desc/sourceinfo"

Changes and bugfixes:

  • A possible panic when calling sourceinfo.GlobalFiles.FindDescriptorByName has been fixed.
  • Descriptors returned from the sourceinfo.GlobalFiles registry or from the various Wrap* functions could induce panics in user code if querying for non-existent elements. For example, calling messageDescriptor.Fields().ByNumber(123) could return a typed-nil value on failure, instead of a nil interface. This would result in nil-dereference panics if methods were called on this later. These have been fixed.
  • Descriptors returned from the sourceinfo.GlobalFiles registry and from the various Wrap* functions had concrete types defined in this package, not in the Protobuf runtime. But the protoreflect.Descriptor interface has a "do not implement" marker, indicating that concrete types implementing the interface should not be implemented outside of that module. To avoid future issues with the Protobuf runtime, there are no more implementations in this repo. Instead of wrapping other descriptor implementations (via embedding, and then overriding some methods), this package now builds new descriptors, using the protodesc package in the Protobuf runtime module.
  • The various Wrap* functions are now deprecated. The name is no longer accurate since they no longer return wrapper values. Also the new implementation, which builds new descriptors, can fail (though unlikely), but the existing signature of these functions did not allow for returning an error. So these functions could possibly panic in the face of malformed input descriptors. Users should use the new AddSourceInfoTo* versions of these functions instead.

Additions:

  • Adds AddSourceInfoTo* functions to replace the Wrap* functions. These functions augment the input descriptors by adding source code information to them.
"github.com/jhump/protoreflect/dynamic"

Changes:

  • This package is now deprecated. Most usages should instead prefer the "google.golang.org/protobuf/types/dynamicpb" package in the Protobuf runtime. In a v2 of this repo, this package will no longer be present.
"github.com/jhump/protoreflect/grpcreflect"

Additions:

  • Adds a new NewClientV1 function to return a client that uses v1 of the server reflection service. This fills the gap in the existing factory functions, NewClientV1Alpha and NewClientAuto.
  • Adds a new AllowFallbackResolver method to the *grpcreflect.Client type. This allows the client to be configured with an alternate resolver that can be used as a backup when trying to satisfy dependencies, for cases where the remote server is non-authoritative and unable to provide all of them.
jonboulle/clockwork (github.com/jonboulle/clockwork)

v0.5.0

Compare Source

What's Changed

Enhancements 🚀
Dependency Updates ⬆️

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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

To execute skipped test pipelines write comment /ok-to-test.

This PR has been generated by MintMaker (powered by Renovate Bot).

@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch from 04d0d8d to 2cdb73c Compare May 11, 2025 05:40
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch from 2cdb73c to e421098 Compare May 18, 2025 06:46
@red-hat-konflux red-hat-konflux bot changed the title fix(deps): update go dependencies chore(deps): update go dependencies May 18, 2025
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch from e421098 to 409b671 Compare May 25, 2025 10:32
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 2 times, most recently from 0d23bae to 12b79e0 Compare June 8, 2025 09:59
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch from 12b79e0 to dc8321b Compare June 15, 2025 05:48
Copy link
Author

red-hat-konflux bot commented Jun 15, 2025

ℹ 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):

  • 14 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.23.0 -> 1.24.0
go (toolchain) 1.23.7 -> 1.24.6
github.com/golang/mock v1.6.0 -> v1.7.0-rc.1
google.golang.org/grpc v1.71.0 -> v1.75.1
google.golang.org/protobuf v1.36.6 -> v1.36.10
cloud.google.com/go/monitoring v1.24.1 -> v1.24.2
github.com/aws/aws-sdk-go v1.51.8 -> v1.55.7
github.com/cpuguy83/go-md2man/v2 v2.0.6 -> v2.0.7
github.com/googleapis/gax-go/v2 v2.14.1 -> v2.15.0
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 -> v2.27.2
go.opentelemetry.io/otel v1.34.0 -> v1.38.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.24.0 -> v1.36.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0 -> v1.36.0
go.opentelemetry.io/otel/metric v1.34.0 -> v1.38.0
go.opentelemetry.io/otel/sdk v1.34.0 -> v1.38.0
go.opentelemetry.io/otel/trace v1.34.0 -> v1.38.0

@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 4 times, most recently from 393457c to f1fc861 Compare June 22, 2025 05:20
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 5 times, most recently from 6764470 to 3359e98 Compare June 29, 2025 08:23
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 4 times, most recently from 5e84aa9 to b579a28 Compare July 6, 2025 12:26
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 3 times, most recently from b760827 to a080168 Compare July 13, 2025 11:40
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 2 times, most recently from 67fffbc to 82b2029 Compare July 20, 2025 06:30
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 3 times, most recently from 7982bc0 to cd02c0f Compare July 27, 2025 14:13
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 18 times, most recently from 0035f25 to f388742 Compare October 7, 2025 20:31
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch 10 times, most recently from 529f7da to de860b1 Compare October 10, 2025 04:37
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
@red-hat-konflux red-hat-konflux bot force-pushed the konflux/mintmaker/main/go-deps branch from de860b1 to 2fc6430 Compare October 10, 2025 12:27
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants