Skip to content
This repository has been archived by the owner on Dec 11, 2023. It is now read-only.

Update etc modules - autoclosed #610

Closed
wants to merge 2 commits into from
Closed

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 10, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/getsentry/sentry-go require minor v0.12.0 -> v0.21.0
github.com/prometheus/client_golang require minor v1.12.1 -> v1.15.1
github.com/prometheus/client_model require minor v0.2.0 -> v0.4.0
github.com/spf13/viper replace minor v1.9.0 -> v1.15.0
github.com/stretchr/testify require minor v1.7.0 -> v1.8.3

Release Notes

getsentry/sentry-go

v0.21.0: 0.21.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.21.0.

Note: this release includes one breaking change and some deprecations, which are listed below.

Breaking Changes

This change does not apply if you use https://sentry.io

  • Remove support for the /store endpoint (#​631)
    • This change requires a self-hosted version of Sentry 20.6.0 or higher. If you are using a version of self-hosted Sentry (aka on-premise) older than 20.6.0, then you will need to upgrade your instance.
Features
  • Rename four span option functions (#​611, #​624)
    • TransctionSource -> WithTransactionSource
    • SpanSampled -> WithSpanSampled
    • OpName -> WithOpName
    • TransactionName -> WithTransactionName
    • Old functions TransctionSource, SpanSampled, OpName, and TransactionName are still available but are now deprecated and will be removed in a future release.
  • Make client.EventFromMessage and client.EventFromException methods public (#​607)
  • Add client.SetException method (#​607)
    • This allows to set or add errors to an existing Event.
Bug Fixes
  • Protect from panics while doing concurrent reads/writes to Span data fields (#​609)
  • [otel] Improve detection of Sentry-related spans (#​632, #​636)
    • Fixes cases when HTTP spans containing requests to Sentry were captured by Sentry (#​627)
Misc

v0.20.0: 0.20.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.20.0.

Note: this release has some breaking changes, which are listed below.

Breaking Changes
  • Remove the following methods: Scope.SetTransaction(), Scope.Transaction() (#​605)

    Span.Name should be used instead to access the transaction's name.

    For example, the following TracesSampler function should be now written as follows:

    Before:

    TracesSampler: func(ctx sentry.SamplingContext) float64 {
      hub := sentry.GetHubFromContext(ctx.Span.Context())
      if hub.Scope().Transaction() == "GET /health" {
        return 0
      }
      return 1
    },

    After:

    TracesSampler: func(ctx sentry.SamplingContext) float64 {
      if ctx.Span.Name == "GET /health" {
        return 0
      }
      return 1
    },
Features
  • Add Span.SetContext() method (#​599)
    • It is recommended to use it instead of hub.Scope().SetContext when setting or updating context on transactions.
  • Add DebugMeta interface to Event and extend Frame structure with more fields (#​606)
    • More about DebugMeta interface here.
Bug Fixes
  • [otel] Fix missing OpenTelemetry context on some events (#​599, #​605)
  • [otel] Better handling for HTTP span attributes (#​610)
Misc

v0.19.0: 0.19.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.19.0.

Features
  • Add support for exception mechanism metadata (#​564)
    • More about exception mechanisms here.
Bug Fixes
  • [otel] Use the correct "trace" context when sending a Sentry error (#​580)
Misc
  • Drop support for Go 1.17, add support for Go 1.20 (#​563)
    • According to our policy, we're officially supporting the last three minor releases of Go.
  • Switch repository license to MIT (#​583)
    • More about Sentry licensing here.
  • Bump golang.org/x/text minimum required version to 0.3.8 (#​586)

v0.18.0: 0.18.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.18.0.
This release contains initial support for OpenTelemetry and various other bug fixes and improvements.

Note: This is the last release supporting Go 1.17.

Features
  • Initial support for OpenTelemetry.
    You can now send all your OpenTelemetry spans to Sentry.

    Install the otel module

    go get github.com/getsentry/sentry-go \
           github.com/getsentry/sentry-go/otel

    Configure the Sentry and OpenTelemetry SDKs

    import (
        "go.opentelemetry.io/otel"
        sdktrace "go.opentelemetry.io/otel/sdk/trace"
        "github.com/getsentry/sentry-go"
        "github.com/getsentry/sentry-go/otel"
        // ...
    )
    
    // Initlaize the Sentry SDK
    sentry.Init(sentry.ClientOptions{
        Dsn:              "__DSN__",
        EnableTracing:    true,
        TracesSampleRate: 1.0,
    })
    
    // Set up the Sentry span processor
    tp := sdktrace.NewTracerProvider(
        sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()),
        // ...
    )
    otel.SetTracerProvider(tp)
    
    // Set up the Sentry propagator
    otel.SetTextMapPropagator(sentryotel.NewSentryPropagator())

    You can read more about using OpenTelemetry with Sentry in our docs.

Bug Fixes
  • Do not freeze the Dynamic Sampling Context when no Sentry values are present in the baggage header (#​532)
  • Create a frozen Dynamic Sampling Context when calling span.ToBaggage() (#​566)
  • Fix baggage parsing and encoding in vendored otel package (#​568)
Misc
  • Add Span.SetDynamicSamplingContext() (#​539)
  • Add various getters for Dsn (#​540)
  • Add SpanOption::SpanSampled (#​546)
  • Add Span.SetData() (#​542)
  • Add Span.IsTransaction() (#​543)
  • Add Span.GetTransaction() method (#​558)

v0.17.0: 0.17.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.17.0.
This release contains a new BeforeSendTransaction hook option and corrects two regressions introduced in 0.16.0.

Features
  • Add BeforeSendTransaction hook to ClientOptions (#​517)
    • Here's an example of how BeforeSendTransaction can be used to modify or drop transaction events.
Bug Fixes
  • Do not crash in Span.Finish() when the Client is empty (#​520)
  • Attach non-PII/non-sensitive request headers to events when ClientOptions.SendDefaultPii is set to false (#​524)
Misc
  • Clarify how to handle logrus.Fatalf events (#​501)
  • Rename the examples directory to _examples (#​521)
    • This removes an indirect dependency to github.com/golang-jwt/jwt

v0.16.0: 0.16.0

Compare Source

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.16.0.
Due to ongoing work towards a stable API for v1.0.0, we sadly had to include two breaking changes in this release.

Breaking Changes
  • Add EnableTracing, a boolean option flag to enable performance monitoring (false by default).
    • If you're using TracesSampleRate or TracesSampler, this option is required to enable performance monitoring.

      sentry.Init(sentry.ClientOptions{
          EnableTracing: true,
          TracesSampleRate: 1.0,
      })
  • Unify TracesSampler #​498
    • TracesSampler was changed to a callback that must return a float64 between 0.0 and 1.0.

      For example, you can apply a sample rate of 1.0 (100%) to all /api transactions, and a sample rate of 0.5 (50%) to all other transactions.
      You can read more about this in our SDK docs.

      sentry.Init(sentry.ClientOptions{
          TracesSampler: sentry.TracesSampler(func(ctx sentry.SamplingContext) float64 {
               hub := sentry.GetHubFromContext(ctx.Span.Context())
               name := hub.Scope().Transaction()
      
               if strings.HasPrefix(name, "GET /api") {
                   return 1.0
               }
      
               return 0.5
           }),
       }
Features
  • Send errors logged with Logrus to Sentry.
  • Add support for Dynamic Sampling #​491
    • You can read more about Dynamic Sampling in our product docs.
  • Add detailed logging about the reason transactions are being dropped.
    • You can enable SDK logging via sentry.ClientOptions.Debug: true.
Bug Fixes
  • Do not clone the hub when calling StartTransaction #​505

v0.15.0: 0.15.0

Compare Source

  • fix: Scope values should not override Event values (#​446)
  • feat: Make maximum amount of spans configurable (#​460)
  • feat: Add a method to start a transaction (#​482)
  • feat: Extend User interface by adding Data, Name and Segment (#​483)
  • feat: Add ClientOptions.SendDefaultPII (#​485)

v0.14.0: 0.14.0

Compare Source

  • feat: Add function to continue from trace string (#​434)
  • feat: Add max-depth options (#​428)
  • [breaking] ref: Use a Context type mapping to a map[string]interface{} for all event contexts (#​444)
  • [breaking] ref: Replace deprecated ioutil pkg with os & io (#​454)
  • ref: Optimize stacktrace.go from size and speed (#​467)
  • ci: Test against go1.19 and go1.18, drop go1.16 and go1.15 support (#​432, #​477)
  • deps: Dependency update to fix CVEs (#​462, #​464, #​477)

NOTE: This version drops support for Go 1.16 and Go 1.15. The currently supported Go versions are the last 3 stable releases: 1.19, 1.18 and 1.17.

v0.13.0

Compare Source

  • ref: Change DSN ProjectID to be a string (#​420)
  • fix: When extracting PCs from stack frames, try the PC field (#​393)
  • build: Bump gin-gonic/gin from v1.4.0 to v1.7.7 (#​412)
  • build: Bump Go version in go.mod (#​410)
  • ci: Bump golangci-lint version in GH workflow (#​419)
  • ci: Update GraphQL config with appropriate permissions (#​417)
  • ci: ci: Add craft release automation (#​422)
prometheus/client_golang

v1.15.1

Compare Source

Changes

  • [BUGFIX] Fixed promhttp.Instrument* handlers wrongly trying to attach exemplar to unsupported metrics (e.g. summary),
    causing panics #​1253

Full Changelog: prometheus/client_golang@v1.15.0...v1.15.1

v1.15.0

Compare Source

Changed

[BUGFIX] Fix issue with atomic variables on ppc64le #​1171
[BUGFIX] Support for multiple samples within same metric #​1181
[BUGFIX] Bump golang.org/x/text to v0.3.8 to mitigate CVE-2022-32149 #​1187
[ENHANCEMENT] Add exemplars and middleware examples #​1173
[ENHANCEMENT] Add more context to "duplicate label names" error to enable debugging #​1177
[ENHANCEMENT] Add constrained labels and constrained variant for all MetricVecs #​1151
[ENHANCEMENT] Moved away from deprecated github.com/golang/protobuf package #​1183
[ENHANCEMENT] Add possibility to dynamically get label values for http instrumentation #​1066
[ENHANCEMENT] Add ability to Pusher to add custom headers #​1218
[ENHANCEMENT] api: Extend and improve efficiency of json-iterator usage #​1225
[ENHANCEMENT] Added (official) support for go 1.20 #​1234
[ENHANCEMENT] timer: Added support for exemplars #​1233
[ENHANCEMENT] Filter expected metrics as well in CollectAndCompare #​1143
[ENHANCEMENT] ⚠️ Only set start/end if time is not Zero. This breaks compatibility in experimental api package. If you strictly depend on empty time.Time as actual value, the behavior is now changed #​1238

All commits

New Contributors

Full Changelog: prometheus/client_golang@v1.14.0...v1.15.0

v1.14.0: 1.14.0 / 2022-11-08

Compare Source

It might look like a small release, but it's quite opposite 😱 There were many non user facing changes and fixes and enormous work from engineers from Grafana to add native histograms in 💪🏾 Enjoy! 😍

What's Changed

  • [FEATURE] Add Support for Native Histograms. #​1150
  • [CHANGE] Extend prometheus.Registry to implement prometheus.Collector interface. #​1103

New Contributors

Full Changelog: prometheus/client_golang@v1.13.1...v1.14.0

v1.13.1: 1.13.1 / 2022-11-02

Compare Source

  • [BUGFIX] Fix race condition with Exemplar in Counter. #​1146
  • [BUGFIX] Fix CumulativeCount value of +Inf bucket created from exemplar. #​1148
  • [BUGFIX] Fix double-counting bug in promhttp.InstrumentRoundTripperCounter. #​1118

Full Changelog: prometheus/client_golang@v1.13.0...v1.13.1

v1.13.0: 1.13.0 / 2022-08-06

Compare Source

  • [CHANGE] Minimum required Go version is now 1.17 (we also test client_golang against the new 1.19 version).
  • [ENHANCEMENT] Added prometheus.TransactionalGatherer interface for promhttp.Handler use which allows using low allocation update techniques for custom collectors. #​989
  • [ENHANCEMENT] Added exemplar support to prometheus.NewConstHistogram. See ExampleNewConstHistogram_WithExemplar example on how to use it. #​986
  • [ENHANCEMENT] Query requests are now retried after network error. #​1022
  • [ENHANCEMENT] prometheus/push.Pusher now has context-aware methods that pass context to HTTP requests. #​1028
  • [ENHANCEMENT] prometheus/push.Pusher has now Error method that retrieve last error. #​1075
  • [ENHANCEMENT] testutil.GatherAndCompare provides now readable diff on failed comparisons. #​998
  • [ENHANCEMENT] Query API now supports timeouts. #​1014
  • [ENHANCEMENT] New MetricVec method DeletePartialMatch(labels Labels) for deleting all metrics that match provided labels. #​1013
  • [ENHANCEMENT] api.Config now accepts passing custom *http.Client. #​1025
  • [BUGFIX] Raise exemplar labels limit from 64 to 128 bytes as specified in OpenMetrics spec. #​1091
  • [BUGFIX] Allow adding exemplar to +Inf bucket to const histograms. #​1094
  • [ENHANCEMENT] Most promhttp.Instrument* middlewares now support adding exemplars to metrics. This allows hooking those to your tracing middleware that retrieves trace ID and puts it in exemplar if present. #​1055
  • [ENHANCEMENT] Added testutil.ScrapeAndCompare method. #​1043
  • [BUGFIX] Fixed GopherJS build support. #​897
  • [ENHANCEMENT] ⚠️ Added way to specify what runtime/metrics collectors.NewGoCollector should use. See ExampleGoCollector_WithAdvancedGoMetrics. #​1102

New Contributors ❤️

Commits

v1.12.2: 1.12.2 / 2022-05-13

Compare Source

  • [CHANGE] Added collectors.WithGoCollections that allows to choose what collection of Go runtime metrics user wants: Equivalent of MemStats structure configured using GoRuntimeMemStatsCollection, new based on dedicated runtime/metrics metrics represented by GoRuntimeMetricsCollection option, or both by specifying GoRuntimeMemStatsCollection | GoRuntimeMetricsCollection flag.
  • [CHANGE] ⚠️ Change in collectors.NewGoCollector metrics: Reverting addition of new ~80 runtime metrics by default. You can enable this back with GoRuntimeMetricsCollection option or GoRuntimeMemStatsCollection | GoRuntimeMetricsCollection for smooth transition.
  • [BUGFIX] Fixed the bug that causes generated histogram metric names to end with _total. ⚠️ This changes 3 metric names in the new Go collector that was reverted from default in this release.
    • go_gc_heap_allocs_by_size_bytes_total -> go_gc_heap_allocs_by_size_bytes,
    • go_gc_heap_frees_by_size_bytes_total -> go_gc_heap_allocs_by_size_bytes
    • go_gc_pauses_seconds_total -> go_gc_pauses_seconds.
  • [CHANGE] Removed -Inf buckets from new Go Collector histograms.

Full Changelog: prometheus/client_golang@v1.12.1...v1.12.2

prometheus/client_model

v0.4.0: 0.4.0 / 2023-05-03

Compare Source

What's Changed

New Contributors

Full Changelog: prometheus/client_model@v0.3.0...v0.4.0

v0.3.0

Compare Source

spf13/viper

v1.15.0

Compare Source

What's Changed

Exciting New Features 🎉
Enhancements 🚀
Breaking Changes 🛠
Dependency Updates ⬆️

New Contributors

Full Changelog: spf13/viper@v1.14.0...v1.15.0

v1.14.0

Compare Source

What's Changed

Enhancements 🚀
Breaking Changes 🛠
Dependency Updates ⬆️

Configuration

📅 Schedule: Branch creation - "after 6am on thursday" (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 Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner March 10, 2022 15:08
@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 10, 2022
@renovate renovate bot changed the title Update module github.com/getsentry/sentry-go to v0.13.0 Update etc modules Mar 15, 2022
@renovate renovate bot force-pushed the renovate/etc-modules branch 3 times, most recently from 1fa3c7d to 1aad3d7 Compare June 24, 2022 04:19
@renovate renovate bot force-pushed the renovate/etc-modules branch 3 times, most recently from b625861 to c3d10b4 Compare July 21, 2022 11:58
@renovate renovate bot force-pushed the renovate/etc-modules branch 2 times, most recently from 1772998 to 10e48f6 Compare August 6, 2022 11:09
@renovate
Copy link
Contributor Author

renovate bot commented Jan 23, 2023

⚠ 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: docker run --rm --name=renovate_sidecar --label=renovate_child -v "/mnt/renovate/gh/giantswarm/operatorkit":"/mnt/renovate/gh/giantswarm/operatorkit" -v "/tmp/renovate-cache":"/tmp/renovate-cache" -v "/tmp/containerbase":"/tmp/containerbase" -e GOPATH -e GOPROXY -e GOFLAGS -e CGO_ENABLED -e GIT_CONFIG_KEY_0 -e GIT_CONFIG_VALUE_0 -e GIT_CONFIG_KEY_1 -e GIT_CONFIG_VALUE_1 -e GIT_CONFIG_KEY_2 -e GIT_CONFIG_VALUE_2 -e GIT_CONFIG_COUNT -e BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w "/mnt/renovate/gh/giantswarm/operatorkit" ghcr.io/containerbase/sidecar bash -l -c "install-tool golang 1.20.4 && go get -d -t ./... && go mod tidy && go mod tidy"
go: downloading k8s.io/apimachinery v0.20.15
go: downloading github.com/giantswarm/microerror v0.4.0
go: downloading github.com/giantswarm/k8sclient/v7 v7.0.1
go: downloading github.com/giantswarm/micrologger v0.6.0
go: downloading k8s.io/api v0.20.15
go: downloading k8s.io/client-go v0.20.15
go: downloading sigs.k8s.io/controller-runtime v0.8.3
go: downloading k8s.io/apiextensions-apiserver v0.20.15
go: downloading sigs.k8s.io/yaml v1.3.0
go: downloading github.com/giantswarm/backoff v1.0.0
go: downloading github.com/giantswarm/to v0.4.0
go: downloading github.com/patrickmn/go-cache v2.1.0+incompatible
go: downloading github.com/prometheus/client_golang v1.15.1
go: downloading github.com/giantswarm/exporterkit v1.0.0
go: downloading github.com/prometheus/client_model v0.4.0
go: downloading github.com/stretchr/testify v1.8.3
go: downloading github.com/getsentry/sentry-go v0.21.0
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading github.com/google/gofuzz v1.1.0
go: downloading k8s.io/klog/v2 v2.9.0
go: downloading sigs.k8s.io/structured-merge-diff/v4 v4.1.2
go: downloading github.com/go-kit/log v0.2.1
go: downloading github.com/go-stack/stack v1.8.1
go: downloading github.com/evanphx/json-patch v4.11.0+incompatible
go: downloading k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/cenkalti/backoff/v4 v4.1.2
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.2.0
go: downloading github.com/prometheus/common v0.42.0
go: downloading github.com/prometheus/procfs v0.9.0
go: downloading golang.org/x/sys v0.6.0
go: downloading google.golang.org/protobuf v1.30.0
go: downloading github.com/go-logr/logr v0.4.0
go: downloading golang.org/x/sync v0.1.0
go: downloading golang.org/x/time v0.3.0
go: downloading github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading github.com/json-iterator/go v1.1.12
go: downloading golang.org/x/net v0.8.0
go: downloading github.com/imdario/mergo v0.3.12
go: downloading github.com/spf13/pflag v1.0.5
go: downloading golang.org/x/crypto v0.7.0
go: downloading github.com/go-logfmt/logfmt v0.5.1
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/googleapis/gnostic v0.5.5
go: downloading github.com/pkg/errors v0.9.1
go: downloading k8s.io/kube-openapi v0.0.0-20211110013926-83f114cd0513
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4
go: downloading gomodules.xyz/jsonpatch/v2 v2.1.0
go: downloading k8s.io/component-base v0.20.15
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/text v0.8.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading golang.org/x/oauth2 v0.5.0
go: downloading golang.org/x/term v0.6.0
go: downloading github.com/google/uuid v1.3.0
go: downloading github.com/fsnotify/fsnotify v1.6.0
go: downloading github.com/hashicorp/golang-lru v0.5.4
go: downloading github.com/google/go-cmp v0.5.9
go: downloading google.golang.org/appengine v1.6.7
go: upgraded github.com/cespare/xxhash/v2 v2.1.2 => v2.2.0
go: upgraded github.com/fsnotify/fsnotify v1.5.1 => v1.6.0
go: upgraded github.com/go-kit/log v0.2.0 => v0.2.1
go: upgraded github.com/golang/protobuf v1.5.2 => v1.5.3
go: upgraded github.com/google/go-cmp v0.5.6 => v0.5.9
go: upgraded github.com/google/uuid v1.1.2 => v1.3.0
go: upgraded github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 => v1.0.4
go: upgraded github.com/prometheus/common v0.32.1 => v0.42.0
go: upgraded github.com/prometheus/procfs v0.7.3 => v0.9.0
go: upgraded go.uber.org/goleak v1.1.11-0.20210813005559-691160354723 => v1.1.11
go: upgraded golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 => v0.7.0
go: upgraded golang.org/x/net v0.0.0-20211209124913-491a49abca63 => v0.8.0
go: upgraded golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f => v0.5.0
go: upgraded golang.org/x/sync v0.0.0-20210220032951-036812b2e83c => v0.1.0
go: upgraded golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 => v0.6.0
go: upgraded golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d => v0.6.0
go: upgraded golang.org/x/text v0.3.7 => v0.8.0
go: upgraded golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac => v0.3.0
go: upgraded google.golang.org/protobuf v1.27.1 => v1.30.0
go: upgraded gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f => v1.0.0-20201130134442-10cb98267c6c
go: upgraded gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b => v3.0.1
go: downloading github.com/onsi/ginkgo v1.16.2
go: downloading github.com/onsi/gomega v1.13.0
go: downloading go.uber.org/goleak v1.1.11
go: downloading github.com/go-errors/errors v1.4.2
go: downloading github.com/pingcap/errors v0.11.4
go: downloading github.com/go-logr/zapr v0.2.0
go: downloading go.uber.org/zap v1.21.0
go: downloading gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
go: downloading github.com/nxadm/tail v1.4.8
go: downloading go.uber.org/atomic v1.9.0
go: downloading go.uber.org/multierr v1.8.0
go: downloading github.com/kr/pretty v0.3.1
go: downloading gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: downloading github.com/kr/text v0.2.0
go: downloading github.com/rogpeppe/go-internal v1.6.1
go: downloading github.com/cespare/xxhash v1.1.0
go: downloading github.com/go-logr/logr v1.2.3
go: downloading github.com/onsi/ginkgo v1.16.5
go: downloading github.com/onsi/gomega v1.27.1
go: downloading github.com/rogpeppe/go-internal v1.9.0
github.com/giantswarm/operatorkit/v7/pkg/controller imports
	sigs.k8s.io/controller-runtime/pkg/builder imports
	github.com/go-logr/logr loaded from github.com/go-logr/logr@v0.4.0,
	but go 1.16 would select v1.2.3
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/pkg/controller/collector imports
	sigs.k8s.io/controller-runtime/pkg/client/apiutil tested by
	sigs.k8s.io/controller-runtime/pkg/client/apiutil.test imports
	github.com/onsi/gomega/format loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/pkg/controller/collector imports
	sigs.k8s.io/controller-runtime/pkg/client/apiutil tested by
	sigs.k8s.io/controller-runtime/pkg/client/apiutil.test imports
	github.com/onsi/gomega/types loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/config loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/codelocation loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/global loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/remote loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/testingtproxy loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/writer loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/reporters loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/reporters/stenographer loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/types loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/internal/assertion loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would fail to locate it in github.com/onsi/gomega@v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/internal/asyncassertion loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would fail to locate it in github.com/onsi/gomega@v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/internal/defaults loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would fail to locate it in github.com/onsi/gomega@v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/internal/testingtsupport loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/matchers loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/pkg/controller imports
	sigs.k8s.io/controller-runtime/pkg/manager imports
	sigs.k8s.io/controller-runtime/pkg/internal/recorder tested by
	sigs.k8s.io/controller-runtime/pkg/internal/recorder.test imports
	github.com/go-logr/logr/testing loaded from github.com/go-logr/logr@v0.4.0,
	but go 1.16 would select v1.2.3
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/global imports
	github.com/onsi/ginkgo/internal/failer loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/global imports
	github.com/onsi/ginkgo/internal/suite loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/remote imports
	github.com/onsi/ginkgo/internal/spec_iterator loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/reporters/stenographer/support/go-colorable imports
	github.com/onsi/ginkgo/reporters/stenographer/support/go-isatty loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/types imports
	github.com/onsi/ginkgo/formatter loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/internal/asyncassertion imports
	github.com/onsi/gomega/internal/oraclematcher loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would fail to locate it in github.com/onsi/gomega@v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/matchers imports
	github.com/onsi/gomega/matchers/support/goraph/bipartitegraph loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/pkg/controller imports
	sigs.k8s.io/controller-runtime/pkg/builder tested by
	sigs.k8s.io/controller-runtime/pkg/builder.test imports
	sigs.k8s.io/controller-runtime/pkg/scheme tested by
	sigs.k8s.io/controller-runtime/pkg/scheme.test imports
	github.com/onsi/gomega/gstruct loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/global imports
	github.com/onsi/ginkgo/internal/suite imports
	github.com/onsi/ginkgo/internal/containernode loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/global imports
	github.com/onsi/ginkgo/internal/suite imports
	github.com/onsi/ginkgo/internal/leafnodes loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/global imports
	github.com/onsi/ginkgo/internal/suite imports
	github.com/onsi/ginkgo/internal/spec loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/ginkgo imports
	github.com/onsi/ginkgo/internal/global imports
	github.com/onsi/ginkgo/internal/suite imports
	github.com/onsi/ginkgo/internal/specrunner loaded from github.com/onsi/ginkgo@v1.16.2,
	but go 1.16 would select v1.16.5
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/matchers imports
	github.com/onsi/gomega/matchers/support/goraph/bipartitegraph imports
	github.com/onsi/gomega/matchers/support/goraph/edge loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/matchers imports
	github.com/onsi/gomega/matchers/support/goraph/bipartitegraph imports
	github.com/onsi/gomega/matchers/support/goraph/node loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	github.com/onsi/gomega imports
	github.com/onsi/gomega/matchers imports
	github.com/onsi/gomega/matchers/support/goraph/bipartitegraph imports
	github.com/onsi/gomega/matchers/support/goraph/util loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	sigs.k8s.io/controller-runtime/pkg/envtest imports
	sigs.k8s.io/controller-runtime/pkg/internal/testing/integration imports
	sigs.k8s.io/controller-runtime/pkg/internal/testing/integration/internal imports
	github.com/onsi/gomega/gbytes loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/integration/test/statusupdate imports
	sigs.k8s.io/controller-runtime/pkg/client tested by
	sigs.k8s.io/controller-runtime/pkg/client.test imports
	sigs.k8s.io/controller-runtime/pkg/envtest imports
	sigs.k8s.io/controller-runtime/pkg/internal/testing/integration imports
	sigs.k8s.io/controller-runtime/pkg/internal/testing/integration/internal imports
	github.com/onsi/gomega/gexec loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1
github.com/giantswarm/operatorkit/v7/integration/wrapper/example imports
	sigs.k8s.io/yaml imports
	gopkg.in/yaml.v2 tested by
	gopkg.in/yaml.v2.test imports
	gopkg.in/check.v1 imports
	github.com/kr/pretty imports
	github.com/rogpeppe/go-internal/fmtsort loaded from github.com/rogpeppe/go-internal@v1.6.1,
	but go 1.16 would select v1.9.0
github.com/giantswarm/operatorkit/v7/pkg/controller imports
	sigs.k8s.io/controller-runtime/pkg/builder tested by
	sigs.k8s.io/controller-runtime/pkg/builder.test imports
	sigs.k8s.io/controller-runtime/pkg/scheme tested by
	sigs.k8s.io/controller-runtime/pkg/scheme.test imports
	github.com/onsi/gomega/gstruct imports
	github.com/onsi/gomega/gstruct/errors loaded from github.com/onsi/gomega@v1.13.0,
	but go 1.16 would select v1.27.1

To upgrade to the versions selected by go 1.16, leaving some packages unresolved:
	go mod tidy -e -go=1.16 && go mod tidy -e -go=1.17
If reproducibility with go 1.16 is not needed:
	go mod tidy -compat=1.17
For other options, see:
	https://golang.org/doc/modules/pruning

@QuentinBisson QuentinBisson requested a review from a team as a code owner May 25, 2023 12:27
@renovate renovate bot changed the title Update etc modules Update etc modules - autoclosed May 25, 2023
@renovate renovate bot closed this May 25, 2023
@renovate renovate bot deleted the renovate/etc-modules branch May 25, 2023 12:29
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants