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

Update misc modules #628

Closed
wants to merge 1 commit into from
Closed

Update misc modules #628

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 25, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/getsentry/sentry-go require minor v0.12.0 -> v0.25.0
github.com/prometheus/client_golang require minor v1.12.1 -> v1.17.0
github.com/prometheus/client_model require minor v0.2.0 -> v0.5.0
github.com/spf13/viper replace minor v1.9.0 -> v1.17.0
github.com/stretchr/testify require minor v1.7.0 -> v1.8.4

Release Notes

getsentry/sentry-go (github.com/getsentry/sentry-go)

v0.25.0: 0.25.0

Compare Source

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

Breaking Changes

As previously announced, this release removes two global constants from the SDK.

  • sentry.Version was removed. Use sentry.SDKVersion instead (#​727)
  • sentry.SDKIdentifier was removed. Use Client.GetSDKIdentifier() instead (#​727)
Features
  • Add ClientOptions.IgnoreTransactions, which allows you to ignore specific transactions based on their name (#​717)
  • Add ClientOptions.Tags, which allows you to set global tags that are applied to all events. You can also define tags by setting SENTRY_TAGS_ environment variables (#​718)
Bug fixes
  • Fix an issue in the profiler that would cause an infinite loop if the duration of a transaction is longer than 30 seconds (#​724)
Misc
  • dsn.RequestHeaders() is not to be removed, though it is still considered deprecated and should only be used when using a custom transport that sends events to the /store endpoint (#​720)

v0.24.1: 0.24.1

Compare Source

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

Bug fixes
  • Prevent a panic in sentryotel.flushSpanProcessor() ((#​711))
  • Prevent a panic when setting the SDK identifier (#​715)

v0.24.0: 0.24.0

Compare Source

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

Deprecations
  • sentry.Version to be removed in 0.25.0. Use sentry.SDKVersion instead.
  • sentry.SDKIdentifier to be removed in 0.25.0. Use Client.GetSDKIdentifier() instead.
  • dsn.RequestHeaders() to be removed after 0.25.0, but no earlier than December 1, 2023. Requests to the /envelope endpoint are authenticated using the DSN in the envelope header.
Features
  • Run a single instance of the profiler instead of multiple ones for each Go routine (#​655)
  • Use the route path as the transaction names when using the Gin integration (#​675)
  • Set the SDK name accordingly when a framework integration is used (#​694)
  • Read release information (VCS revision) from debug.ReadBuildInfo (#​704)
Bug fixes
  • [otel] Fix incorrect usage of attributes.Value.AsString (#​684)
  • Fix trace function name parsing in profiler on go1.21+ (#​695)
Misc

v0.23.0: 0.23.0

Compare Source

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

Features
  • Initial support for Cron Monitoring (#​661)

    This is how the basic usage of the feature looks like:

    // 🟡 Notify Sentry your job is running:
    checkinId := sentry.CaptureCheckIn(
      &sentry.CheckIn{
        MonitorSlug: "<monitor-slug>",
        Status:      sentry.CheckInStatusInProgress,
      },
      nil,
    )
    
    // Execute your scheduled task here...
    
    // 🟢 Notify Sentry your job has completed successfully:
    sentry.CaptureCheckIn(
      &sentry.CheckIn{
        ID:          *checkinId,
        MonitorSlug: "<monitor-slug>",
        Status:      sentry.CheckInStatusOK,
      },
      nil,
    )

    A full example of using Crons Monitoring is available here.

    More documentation on configuring and using Crons can be found here.

  • Add support for Event Attachments (#​670)

    It's now possible to add file/binary payloads to Sentry events:

    sentry.ConfigureScope(func(scope *sentry.Scope) {
      scope.AddAttachment(&Attachment{
        Filename:    "report.html",
        ContentType: "text/html",
        Payload:     []byte("<h1>Look, HTML</h1>"),
      })
    })

    The attachment will then be accessible on the Issue Details page.

  • Add sampling decision to trace envelope header (#​666)

  • Expose SpanFromContext function (#​672)

Bug fixes
  • Make Span.Finish a no-op when the span is already finished (#​660)

v0.22.0: 0.22.0

Compare Source

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

This release contains initial profiling support, as well as a few bug fixes and improvements.

Features
  • Initial (alpha) support for profiling (#​626)

    Profiling is disabled by default. To enable it, configure both TracesSampleRate and ProfilesSampleRate when initializing the SDK:

    err := sentry.Init(sentry.ClientOptions{
      Dsn: "__DSN__",
      EnableTracing: true,
      TracesSampleRate: 1.0,
      // The sampling rate for profiling is relative to TracesSampleRate. In this case, we'll capture profiles for 100% of transactions.
      ProfilesSampleRate: 1.0,
    })

    More documentation on profiling and current limitations can be found here.

  • Add transactions/tracing support go the Gin integration (#​644)

Bug fixes
  • Always set a valid source on transactions (#​637)
  • Clone scope.Context in more places to avoid panics on concurrent reads and writes (#​638)
  • Fix frames recognized as not being in-app still showing as in-app (#​647)

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 (github.com/prometheus/client_golang)

v1.17.0

Compare Source

What's Changed

  • [CHANGE] Minimum required go version is now 1.19 (we also test client_golang against new 1.21 version). #​1325
  • [FEATURE] Add support for Created Timestamps in Counters, Summaries and Historams. #​1313
  • [ENHANCEMENT] Enable detection of a native histogram without observations. #​1314
Commits

New Contributors

Full Changelog: prometheus/client_golang@v1.16.0...v1.17.0

v1.16.0

Compare Source

What's Changed

  • [BUGFIX] api: Switch to POST for LabelNames, Series, and QueryExemplars. #​1252
  • [BUGFIX] api: Fix undefined execution order in return statements. #​1260
  • [BUGFIX] native histograms: Fix bug in bucket key calculation. #​1279
  • [ENHANCEMENT] Reduce constrainLabels allocations for all metrics. #​1272
  • [ENHANCEMENT] promhttp: Add process start time header for scrape efficiency. #​1278
  • [ENHANCEMENT] promlint: Improve metricUnits runtime. #​1286
Commits

New Contributors

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

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. [#​10

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

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 May 25, 2023 12:28
@renovate renovate bot added dependencies Pull requests that update a dependency file renovate PR created by RenovateBot labels May 25, 2023
@renovate
Copy link
Contributor Author

renovate bot commented May 25, 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_a_sidecar --label=renovate_a_child --memory=3584m -v "/tmp/worker/495bbb/aa52fe/repos/github/giantswarm/operatorkit":"/tmp/worker/495bbb/aa52fe/repos/github/giantswarm/operatorkit" -v "/tmp/worker/495bbb/aa52fe/cache":"/tmp/worker/495bbb/aa52fe/cache" -e GOPATH -e GOPROXY -e GOSUMDB -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 CONTAINERBASE_CACHE_DIR -w "/tmp/worker/495bbb/aa52fe/repos/github/giantswarm/operatorkit" ghcr.io/containerbase/sidecar:9.23.4 bash -l -c "install-tool golang 1.21.3 && go get -d -t ./... && go mod tidy && go mod tidy"
go: downloading github.com/giantswarm/microerror v0.4.0
go: downloading k8s.io/apimachinery v0.20.15
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/apiextensions-apiserver v0.20.15
go: downloading sigs.k8s.io/controller-runtime v0.8.3
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.17.0
go: downloading k8s.io/client-go v0.20.15
go: downloading github.com/giantswarm/exporterkit v1.0.0
go: downloading github.com/prometheus/client_model v0.5.0
go: downloading github.com/stretchr/testify v1.8.4
go: downloading github.com/getsentry/sentry-go v0.25.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 k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a
go: downloading github.com/evanphx/json-patch v4.11.0+incompatible
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.44.0
go: downloading github.com/prometheus/procfs v0.11.1
go: downloading golang.org/x/sys v0.12.0
go: downloading google.golang.org/protobuf v1.31.0
go: downloading github.com/go-logr/logr v0.4.0
go: downloading golang.org/x/sync v0.3.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/go-logfmt/logfmt v0.5.1
go: downloading golang.org/x/net v0.15.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.13.0
go: downloading github.com/json-iterator/go v1.1.12
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/golang/protobuf v1.5.3
go: downloading github.com/googleapis/gnostic v0.5.5
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/text v0.13.0
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading golang.org/x/oauth2 v0.12.0
go: downloading golang.org/x/term v0.12.0
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/google/uuid v1.3.1
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/davecgh/go-spew v1.1.1 => v1.1.2-0.20180830191138-d8f796af33cc
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.1
go: upgraded github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 => v1.0.4
go: upgraded github.com/pmezard/go-difflib v1.0.0 => v1.0.1-0.20181226105442-5d4384ee4fb2
go: upgraded github.com/prometheus/common v0.32.1 => v0.44.0
go: upgraded github.com/prometheus/procfs v0.7.3 => v0.11.1
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.13.0
go: upgraded golang.org/x/net v0.7.0 => v0.15.0
go: upgraded golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f => v0.12.0
go: upgraded golang.org/x/sync v0.1.0 => v0.3.0
go: upgraded golang.org/x/sys v0.5.0 => v0.12.0
go: upgraded golang.org/x/term v0.5.0 => v0.12.0
go: upgraded golang.org/x/text v0.7.0 => v0.13.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.31.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 go.uber.org/atomic v1.9.0
go: downloading go.uber.org/multierr v1.9.0
go: downloading github.com/kr/pretty v0.3.1
go: downloading github.com/nxadm/tail v1.4.8
go: downloading github.com/kr/text v0.2.0
go: downloading github.com/rogpeppe/go-internal v1.10.0
go: downloading gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
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: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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
go: 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

@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from 174adc0 to f9b3f92 Compare July 19, 2023 14:41
@renovate renovate bot force-pushed the renovate/misc-modules branch 4 times, most recently from 1b9d957 to b216714 Compare August 8, 2023 11:58
@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from 5da7e18 to f6f6fd5 Compare August 21, 2023 07:55
@renovate renovate bot force-pushed the renovate/misc-modules branch 2 times, most recently from 835b6cf to 0ffda22 Compare September 5, 2023 14:40
@renovate renovate bot force-pushed the renovate/misc-modules branch 3 times, most recently from 2dc7fa6 to abc8090 Compare October 4, 2023 13:51
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 renovate PR created by RenovateBot
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants