Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update module github.com/onsi/ginkgo to v2 (main) #26307

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 16, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/onsi/ginkgo require major v1.16.5 -> v2.10.0

Release Notes

onsi/ginkgo

v2.10.0

Compare Source

2.10.0

Features
  • feat(ginkgo/generators): add --tags flag (#​1216) [a782a77]
    adds a new --tags flag to ginkgo generate
Fixes
Maintenance

v2.9.7

Compare Source

2.9.7

Fixes
  • fix race when multiple defercleanups are called in goroutines [07fc3a0]

v2.9.6

Compare Source

2.9.6

Fixes
Maintenance

v2.9.5

Compare Source

2.9.5

Fixes
  • ensure the correct deterministic sort order is produced when ordered specs are generated by a helper function [7fa0b6b]
Maintenance

v2.9.4

Compare Source

2.9.4

Fixes
  • fix hang with ginkgo -p (#​1192) [15d4bdc] - this addresses a long standing issue related to Ginkgo hanging when a child process spawned by the test does not exit.

  • fix: fail fast may cause Serial spec or cleanup Node interrupted (#​1178) [8dea88b] - prior to this there was a small gap in which specs on other processes might start even if one process has tried to abort the suite.

Maintenance
  • Document run order when multiple setup nodes are at the same nesting level [903be81]

v2.9.3

Compare Source

2.9.3

Features
  • Add RenderTimeline to GinkgoT() [c0c77b6]
Fixes
Maintenance

v2.9.2

Compare Source

2.9.2

Maintenance

v2.9.1

Compare Source

2.9.1

Fixes

This release fixes a longstanding issue where ginkgo -coverpkg=./... would not work. This is now resolved and fixes #​1161 and #​995

  • Support -coverpkg=./... [26ca1b5]
  • document coverpkg a bit more clearly [fc44c3b]
Maintenance
  • bump various dependencies
  • Improve Documentation and fix typo (#​1158) [93de676]

v2.9.0

Compare Source

2.9.0

Features
  • AttachProgressReporter is an experimental feature that allows users to provide arbitrary information when a ProgressReport is requested [28801fe]

  • GinkgoT() has been expanded to include several Ginkgo-specific methods [2bd5a3b]

    The intent is to enable the development of third-party libraries that integrate deeply with Ginkgo using GinkgoT() to access Ginkgo's functionality.

v2.8.4

Compare Source

2.8.4

Features
Fixes
  • rename tools hack to see if it fixes things for downstream users [a8bb39a]
Maintenance

v2.8.3

Compare Source

2.8.3

Released to fix security issue in golang.org/x/net dependency

Maintenance
  • Bump golang.org/x/net from 0.6.0 to 0.7.0 (#​1141) [fc1a02e]
  • remove tools.go hack from documentation [0718693]

v2.8.2

Compare Source

2.8.2

Ginkgo now includes a tools.go file in the root directory of the ginkgo package. This should allow modules that simply go get github.com/onsi/ginkgo/v2 to also pull in the CLI dependencies. This obviates the need for consumers of Ginkgo to have their own tools.go file and makes it simpler to ensure that the version of the ginkgo CLI being used matches the version of the library. You can simply run go run github.com/onsi/ginkgo/v2/ginkgo to run the version of the cli associated with your package go.mod.

Maintenance

v2.8.1

Compare Source

2.8.1

Fixes
  • lock around default report output to avoid triggering the race detector when calling By from goroutines [2d5075a]
  • don't run ReportEntries through sprintf [febbe38]
Maintenance

v2.8.0

Compare Source

2.8.0

Features
  • Introduce GinkgoHelper() to track and exclude helper functions from potential CodeLocations [e19f556]

Modeled after testing.T.Helper(). Now, rather than write code like:

func helper(model Model) {
    Expect(model).WithOffset(1).To(BeValid())
    Expect(model.SerialNumber).WithOffset(1).To(MatchRegexp(/[a-f0-9]*/))
}

you can stop tracking offsets (which makes nesting composing helpers nearly impossible) and simply write:

func helper(model Model) {
    GinkgoHelper()
    Expect(model).To(BeValid())
    Expect(model.SerialNumber).To(MatchRegexp(/[a-f0-9]*/))
}
  • Introduce GinkgoLabelFilter() and Label().MatchesLabelFilter() to make it possible to programmatically match filters (fixes #​1119) [2f6597c]

You can now write code like this:

BeforeSuite(func() {
	if Label("slow").MatchesLabelFilter(GinkgoLabelFilter()) {
		// do slow setup
	}

	if Label("fast").MatchesLabelFilter(GinkgoLabelFilter()) {
		// do fast setup
	}
})

to programmatically check whether a given set of labels will match the configured --label-filter.

Maintenance

v2.7.1

Compare Source

2.7.1

Fixes
  • Bring back SuiteConfig.EmitSpecProgress to avoid compilation issue for consumers that set it manually [d2a1cb0]
Maintenance

v2.7.0

Compare Source

2.7.0

Features
  • Introduce ContinueOnFailure for Ordered containers [e0123ca] - Ordered containers that are also decorated with ContinueOnFailure will not stop running specs after the first spec fails.
  • Support for bootstrap commands to use custom data for templates (#​1110) [7a2b242]
  • Support for labels and pending decorator in ginkgo outline output (#​1113) [e6e3b98]
  • Color aliases for custom color support (#​1101) [49fab7a]
Fixes
  • correctly ensure deterministic spec order, even if specs are generated by iterating over a map [89dda20]
  • Fix a bug where timedout specs were not correctly treated as failures when determining whether or not to run AfterAlls in an Ordered container.
  • Ensure go test coverprofile outputs to the expected location (#​1105) [b0bd77b]

v2.6.1

Compare Source

2.6.1

Features
  • Override formatter colors from envvars - this is a new feature but an alternative approach involving config files might be taken in the future (#​1095) [60240d1]
Fixes
  • GinkgoRecover now supports ignoring panics that match a specific, hidden, interface [301f3e2]
Maintenance

v2.6.0

Compare Source

2.6.0

Features
  • ReportBeforeSuite provides access to the suite report before the suite begins.
  • Add junit config option for omitting leafnodetype (#​1088) [956e6d2]
  • Add support to customize junit report config to omit spec labels (#​1087) [de44005]
Fixes
  • Fix stack trace pruning so that it has a chance of working on windows [2165648]

v2.5.1

Compare Source

2.5.1

Fixes
Maintenance

v2.5.0

Compare Source

2.5.0

Ginkgo output now includes a timeline-view of the spec

This commit changes Ginkgo's default output. Spec details are now
presented as a timeline that includes events that occur during the spec
lifecycle interleaved with any GinkgoWriter content. This makes is much easier
to understand the flow of a spec and where a given failure occurs.

The --progress, --slow-spec-threshold, --always-emit-ginkgo-writer flags
and the SuppressProgressReporting decorator have all been deprecated. Instead
the existing -v and -vv flags better capture the level of verbosity to display. However,
a new --show-node-events flag is added to include node > Enter and < Exit events
in the spec timeline.

In addition, JUnit reports now include the timeline (rendered with -vv) and custom JUnit
reports can be configured and generated using
GenerateJUnitReportWithConfig(report types.Report, dst string, config JunitReportConfig)

Code should continue to work unchanged with this version of Ginkgo - however if you have tooling that
was relying on the specific output format of Ginkgo you may run into issues. Ginkgo's console output is not guaranteed to be stable for tooling and automation purposes. You should, instead, use Ginkgo's JSON format
to build tooling on top of as it has stronger guarantees to be stable from version to version.

Features
  • Provide details about which timeout expired [0f2fa27]
Fixes
  • Add Support Policy to docs [c70867a]
Maintenance

v2.4.0

Compare Source

2.4.0

Features
Fixes
Maintenance

v2.3.1

Compare Source

2.3.1

Fixes

Several users were invoking ginkgo by installing the latest version of the cli via go install github.com/onsi/ginkgo/v2/ginkgo@latest. When 2.3.0 was released this resulted in an influx of issues as CI systems failed due to a change in the internal contract between the Ginkgo CLI and the Ginkgo library. Ginkgo only supports running the same version of the library as the cli (which is why both are packaged in the same repository).

With this patch release, the ginkgo CLI can now identify a version mismatch and emit a helpful error message.

  • Ginkgo cli can identify version mismatches and emit a helpful error message [bc4ae2f]
  • further emphasize that a version match is required when running Ginkgo on CI and/or locally [2691dd8]

Maintenance

v2.3.0

Compare Source

2.3.0

Interruptible Nodes and Timeouts

Ginkgo now supports per-node and per-spec timeouts on interruptible nodes. Check out the documentation for all the details but the gist is you can now write specs like this:

It("is interruptible", func(ctx SpecContext) { // or context.Context instead of SpecContext, both are valid.
    // do things until `ctx.Done()` is closed, for example:
    req, err := http.NewRequestWithContext(ctx, "POST", "/build-widgets", nil)
    Expect(err).NotTo(HaveOccured())
    _, err := http.DefaultClient.Do(req)
    Expect(err).NotTo(HaveOccured())

    Eventually(client.WidgetCount).WithContext(ctx).Should(Equal(17))
}, NodeTimeout(time.Second*20), GracePeriod(5*time.Second))

and have Ginkgo ensure that the node completes before the timeout elapses. If it does elapse, or if an external interrupt is received (e.g. ^C) then Ginkgo will cancel the context and wait for the Grace Period for the node to exit before proceeding with any cleanup nodes associated with the spec. The ctx provided by Ginkgo can also be passed down to Gomega's Eventually to have all assertions within the node governed by a single deadline.

Features
  • Ginkgo now records any additional failures that occur during the cleanup of a failed spec. In prior versions this information was quietly discarded, but the introduction of a more rigorous approach to timeouts and interruptions allows Ginkgo to better track subsequent failures.
  • SpecContext also provides a mechanism for third-party libraries to provide additional information when a Progress Report is generated. Gomega uses this to provide the current state of an Eventually().WithContext() assertion when a Progress Report is requested.
  • DescribeTable now exits with an error if it is not passed any Entries [a4c9865]

Fixes

  • fixes crashes on newer Ruby 3 installations by upgrading github-pages gem dependency [92c88d5]
  • Make the outline command able to use the DSL import [1be2427]

Maintenance

  • chore(docs): delete no meaning d [57c373c]
  • chore(docs): Fix hyperlinks [30526d5]
  • chore(docs): fix code blocks without language settings [cf611c4]
  • fix intra-doc link [b541bcb]

v2.2.0

Compare Source

2.2.0

Generate real-time Progress Reports [f91377c]

Ginkgo can now generate Progress Reports to point users at the current running line of code (including a preview of the actual source code) and a best guess at the most relevant subroutines.

These Progress Reports allow users to debug stuck or slow tests without exiting the Ginkgo process. A Progress Report can be generated at any time by sending Ginkgo a SIGINFO (^T on MacOS/BSD) or SIGUSR1.

In addition, the user can specify --poll-progress-after and --poll-progress-interval to have Ginkgo start periodically emitting progress reports if a given node takes too long. These can be overriden/set on a per-node basis with the PollProgressAfter and PollProgressInterval decorators.

Progress Reports are emitted to stdout, and also stored in the machine-redable report formats that Ginkgo supports.

Ginkgo also uses this progress reporting infrastructure under the hood when handling timeouts and interrupts. This yields much more focused, useful, and informative stack traces than previously.

Features
  • BeforeSuite, AfterSuite, SynchronizedBeforeSuite, SynchronizedAfterSuite, and ReportAfterSuite now support (the relevant subset of) decorators. These can be passed in after the callback functions that are usually passed into these nodes.

    As a result the signature of these methods has changed and now includes a trailing args ...interface{}. For most users simply using the DSL, this change is transparent. However if you were assigning one of these functions to a custom variable (or passing it around) then your code may need to change to reflect the new signature.

Maintenance
  • Modernize the invocation of Ginkgo in github actions [0ffde58]
  • Update reocmmended CI settings in docs [896bbb9]
  • Speed up unnecessarily slow integration test [6d3a90e]

v2.1.6

Compare Source

2.1.6

Fixes
  • Add SuppressProgressReporting decorator to turn off --progress announcements for a given node [dfef62a]
  • chore: remove duplicate word in comments [7373214]

v2.1.5

Compare Source

2.1.5

Fixes
  • drop -mod=mod instructions; fixes #​1026 [6ad7138]
  • Ensure CurrentSpecReport and AddReportEntry are thread-safe [817c09b]
  • remove stale importmap gcflags flag test [3cd8b93]
  • Always emit spec summary [5cf23e2] - even when only one spec has failed
  • Fix ReportAfterSuite usage in docs [b1864ad]
  • fixed typo (#​997) [219cc00]
  • TrimRight is not designed to trim Suffix [71ebb74]
  • refactor: replace strings.Replace with strings.ReplaceAll (#​978) [143d208]
  • fix syntax in examples (#​975) [b69554f]
Maintenance

v2.1.4

Compare Source

Fixes
  • Numerous documentation typos
  • Prepend when when using When (this behavior was in 1.x but unintentionally lost during the 2.0 rewrite) [efce903]
  • improve error message when a parallel process fails to report back [a7bd1fe]
  • guard against concurrent map writes in DeprecationTracker [0976569]
  • Invoke reporting nodes during dry-run (fixes #​956 and #​935) [aae4480]
  • Fix ginkgo import circle [f779385]

v2.1.3

Compare Source

See https://onsi.github.io/ginkgo/MIGRATING_TO_V2 for details on V2.

Fixes
  • Calling By in a container node now emits a useful error. [ff12cee]

v2.1.2

Compare Source

Fixes
  • Track location of focused specs correctly in ginkgo unfocus [a612ff1]
  • Profiling suites with focused specs no longer generates an erroneous failure message [8fbfa02]
  • Several documentation typos fixed. Big thanks to everyone who helped catch them and report/fix them!

v2.1.1

Compare Source

See https://onsi.github.io/ginkgo/MIGRATING_TO_V2 for details on V2.

Fixes
  • Suites that only import the new dsl packages are now correctly identified as Ginkgo suites [ec17e17]

v2.1.0

Compare Source

See https://onsi.github.io/ginkgo/MIGRATING_TO_V2 for details on V2.

2.1.0 is a minor release with a few tweaks:

  • Introduce new DSL packages to enable users to pick-and-choose which portions of the DSL to dot-import. [90868e2] More details here.
  • Add error check for invalid/nil parameters to DescribeTable [6f8577e]
  • Myriad docs typos fixed (thanks everyone!) [718542a, ecb7098, 146654c, a8f9913, 6bdffde, 03dcd7e]

v2.0.0: Ginkgo v2.0.0

Compare Source

Ginkgo v2.0.0 is a major new release of Ginkgo.

The changes to Ginkgo are substantial and wide-ranging, however care has been given to ensure that most users will experience a smooth migration from V1 to V2 with relatively little work. A combined changelog and migration guides is available here and the Ginkgo docs have been updated to capture the new functionality in V2.


Configuration

📅 Schedule: Branch creation - "on friday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Never, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 June 16, 2023 12:03
@renovate renovate bot requested a review from rolinh June 16, 2023 12:03
@renovate renovate bot added kind/enhancement This would improve or streamline existing functionality. release-note/misc This PR makes changes that have no direct user impact. renovate/stop-updating Tell Renovate to stop updating PR labels Jun 16, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Jun 16, 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 -v "/tmp/worker/59d7a6/05d2d4/repos/github/cilium/cilium":"/tmp/worker/59d7a6/05d2d4/repos/github/cilium/cilium" -v "/tmp/worker/59d7a6/05d2d4/cache":"/tmp/worker/59d7a6/05d2d4/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 BUILDPACK_CACHE_DIR -e CONTAINERBASE_CACHE_DIR -w "/tmp/worker/59d7a6/05d2d4/repos/github/cilium/cilium" ghcr.io/containerbase/sidecar bash -l -c "install-tool golang 1.20.5 && go get -d -t ./... && go install github.com/marwan-at-work/mod/cmd/mod@latest && mod upgrade --mod-name=github.com/onsi/ginkgo -t=2 && go mod tidy && go mod vendor && go mod tidy && go mod tidy"
warning: ignoring symlink /tmp/worker/59d7a6/05d2d4/repos/github/cilium/cilium/examples/crds
go: downloading github.com/go-openapi/runtime v0.26.0
go: downloading github.com/go-openapi/errors v0.20.3
go: downloading github.com/go-openapi/strfmt v0.21.7
go: downloading github.com/go-openapi/swag v0.22.3
go: downloading google.golang.org/protobuf v1.30.0
go: downloading github.com/go-openapi/loads v0.21.2
go: downloading github.com/go-openapi/spec v0.20.9
go: downloading github.com/sirupsen/logrus v1.9.2
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/go-openapi/validate v0.22.1
go: downloading golang.org/x/net v0.11.0
go: downloading google.golang.org/grpc v1.56.0
go: downloading github.com/cilium/workerpool v1.2.0
go: downloading github.com/spf13/cobra v1.7.0
go: downloading github.com/cilium/netlink v1.0.1-0.20230616101939-19dab5b7a180
go: downloading github.com/cilium/checkmate v1.0.3
go: downloading github.com/spf13/viper v1.16.0
go: downloading github.com/containernetworking/plugins v1.3.0
go: downloading golang.org/x/sys v0.9.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading k8s.io/api v0.27.2
go: downloading k8s.io/apimachinery v0.27.2
go: downloading github.com/cilium/client-go v0.27.2-fix
go: downloading github.com/stretchr/testify v1.8.4
go: downloading go.uber.org/goleak v1.2.1
go: downloading github.com/prometheus/client_golang v1.16.0
go: downloading github.com/cilium/ebpf v0.10.1-0.20230613102335-1140a754d780
go: downloading github.com/google/gops v0.3.27
go: downloading github.com/google/uuid v1.3.0
go: downloading github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
go: downloading github.com/cilium/dns v1.1.51-0.20220729113855-5b94b11b46fc
go: downloading golang.org/x/sync v0.3.0
go: downloading github.com/cilium/proxy v0.0.0-20230605062141-384b5008dce4
go: downloading github.com/containernetworking/cni v1.1.2
go: downloading github.com/fsnotify/fsnotify v1.6.0
go: downloading github.com/google/renameio/v2 v2.0.0
go: downloading github.com/tidwall/gjson v1.14.4
go: downloading github.com/tidwall/sjson v1.2.5
go: downloading github.com/spiffe/go-spiffe/v2 v2.1.5
go: downloading github.com/spiffe/spire-api-sdk v1.7.0
go: downloading golang.org/x/time v0.3.0
go: downloading github.com/prometheus/client_model v0.4.0
go: downloading sigs.k8s.io/controller-runtime v0.15.0
go: downloading github.com/google/go-cmp v0.5.9
go: downloading sigs.k8s.io/gateway-api v0.7.0
go: downloading go.uber.org/multierr v1.11.0
go: downloading golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1
go: downloading github.com/evanphx/json-patch v5.6.0+incompatible
go: downloading github.com/aliyun/alibaba-cloud-sdk-go v1.62.354
go: downloading github.com/aws/aws-sdk-go-v2 v1.18.1
go: downloading github.com/aws/aws-sdk-go-v2/config v1.18.3
go: downloading github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.4
go: downloading github.com/aws/aws-sdk-go-v2/service/ec2 v1.100.1
go: downloading github.com/aws/smithy-go v1.13.5
go: downloading github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
go: downloading github.com/Azure/go-autorest/autorest v0.11.28
go: downloading github.com/Azure/go-autorest/autorest/adal v0.9.21
go: downloading github.com/Azure/go-autorest v14.2.0+incompatible
go: downloading github.com/Azure/go-autorest/autorest/to v0.4.0
go: downloading github.com/Azure/go-autorest/autorest/azure/auth v0.5.11
go: downloading github.com/cilium/metallb v0.1.1-0.20220829170633-5d7dfb1129f7
go: downloading k8s.io/utils v0.0.0-20230209194617-a36077c30491
go: downloading github.com/osrg/gobgp/v3 v3.15.1-0.20230612211909-79d301f75b42
go: downloading github.com/hashicorp/go-immutable-radix/v2 v2.0.0
go: downloading github.com/prometheus/procfs v0.10.1
go: downloading github.com/hashicorp/go-immutable-radix v1.3.1
go: downloading github.com/russross/blackfriday/v2 v2.1.0
go: downloading github.com/vishvananda/netns v0.0.4
go: downloading github.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b
go: downloading go.opentelemetry.io/otel v1.16.0
go: downloading go.opentelemetry.io/otel/trace v1.16.0
go: downloading github.com/mailru/easyjson v0.7.7
go: downloading github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2
go: downloading github.com/mitchellh/mapstructure v1.5.0
go: downloading github.com/oklog/ulid v1.3.1
go: downloading go.mongodb.org/mongo-driver v1.11.3
go: downloading github.com/spf13/cast v1.5.1
go: downloading github.com/kr/pretty v0.3.1
go: downloading github.com/pmezard/go-difflib v1.0.0
go: downloading github.com/go-openapi/analysis v0.21.4
go: downloading go.uber.org/dig v1.17.0
go: downloading github.com/davecgh/go-spew v1.1.1
go: downloading golang.org/x/term v0.9.0
go: downloading github.com/go-openapi/jsonpointer v0.19.6
go: downloading github.com/go-openapi/jsonreference v0.20.1
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc
go: downloading github.com/mdlayher/arp v0.0.0-20220221190821-c37aaafac7f9
go: downloading github.com/mdlayher/ethernet v0.0.0-20220221185849-529eae5b6118
go: downloading google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/mattn/go-shellwords v1.0.12
go: downloading github.com/AdaLogics/go-fuzz-headers v0.0.0-20230106234847-43070de90fa1
go: downloading k8s.io/klog/v2 v2.100.1
go: downloading k8s.io/klog v1.0.0
go: downloading github.com/shirou/gopsutil/v3 v3.23.5
go: downloading github.com/hashicorp/go-memdb v1.3.4
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.2
go: downloading github.com/cilium/lumberjack/v2 v2.3.0
go: downloading sigs.k8s.io/yaml v1.3.0
go: downloading github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
go: downloading github.com/servak/go-fastping v0.0.0-20160802140958-5718d12e20a0
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/google/gopacket v1.1.19
go: downloading github.com/cilium/fake v0.4.0
go: downloading github.com/hashicorp/golang-lru/v2 v2.0.2
go: downloading github.com/hashicorp/golang-lru v0.5.4
go: downloading github.com/onsi/gomega v1.27.7
go: downloading go4.org/netipx v0.0.0-20230303233057-f1b76eb4bb35
go: downloading k8s.io/apiextensions-apiserver v0.27.2
go: downloading github.com/jeremywohl/flatten v1.0.1
go: downloading k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f
go: downloading github.com/gogo/protobuf v1.3.2
go: downloading github.com/cilium/kafka v0.0.0-20180809090225-01ce283b732b
go: downloading github.com/hashicorp/consul/api v1.21.0
go: downloading go.etcd.io/etcd/api/v3 v3.5.9
go: downloading go.etcd.io/etcd/client/v3 v3.5.9
go: downloading go.etcd.io/etcd/client/pkg/v3 v3.5.9
go: downloading github.com/sasha-s/go-deadlock v0.3.1
go: downloading golang.zx2c4.com/wireguard v0.0.0-20230325221338-052af4a8072b
go: downloading golang.zx2c4.com/wireguard/wgctrl v0.0.0-20230429144221-925a1e7659e6
go: downloading github.com/docker/docker v23.0.3+incompatible
go: downloading github.com/docker/libnetwork v0.8.0-dev.2.0.20210525090646-64b7a4574d14
go: downloading github.com/gorilla/mux v1.8.0
go: downloading github.com/onsi/ginkgo v1.16.4
go: downloading golang.org/x/tools v0.10.0
go: downloading github.com/cilium/coverbee v0.3.2
go: downloading github.com/kevinburke/ssh_config v1.2.0
go: downloading golang.org/x/crypto v0.10.0
go: downloading golang.org/x/mod v0.11.0
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/coreos/go-systemd/v22 v22.5.0
go: downloading github.com/spf13/afero v1.9.5
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/google/gofuzz v1.2.0
go: downloading sigs.k8s.io/structured-merge-diff/v4 v4.2.3
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/envoyproxy/protoc-gen-validate v0.10.1
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20230526203410-71b5a4ffd15e
go: downloading github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4
go: downloading github.com/google/gnostic v0.5.7-v3refs
go: downloading github.com/tidwall/match v1.1.1
go: downloading github.com/tidwall/pretty v1.2.0
go: downloading github.com/Microsoft/go-winio v0.6.0
go: downloading github.com/zeebo/errs v1.3.0
go: downloading github.com/go-logr/logr v1.2.4
go: downloading github.com/evanphx/json-patch/v5 v5.6.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/jmespath/go-jmespath v0.4.0
go: downloading github.com/aws/aws-sdk-go-v2/credentials v1.13.3
go: downloading github.com/aws/aws-sdk-go-v2/internal/ini v1.3.26
go: downloading github.com/aws/aws-sdk-go-v2/service/sso v1.11.25
go: downloading github.com/aws/aws-sdk-go-v2/service/ssooidc v1.13.8
go: downloading github.com/aws/aws-sdk-go-v2/service/sts v1.17.5
go: downloading github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.34
go: downloading github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.28
go: downloading github.com/Azure/go-autorest/autorest/date v0.3.0
go: downloading github.com/Azure/go-autorest/autorest/validation v0.3.1
go: downloading github.com/Azure/go-autorest/tracing v0.6.0
go: downloading github.com/Azure/go-autorest/logger v0.2.1
go: downloading github.com/golang-jwt/jwt/v4 v4.4.2
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading github.com/Azure/go-autorest/autorest/azure/cli v0.4.5
go: downloading github.com/dimchansky/utfbom v1.1.1
go: downloading github.com/mikioh/ipaddr v0.0.0-20190404000644-d465c8ab6721
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/go-kit/kit v0.12.0
go: downloading github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13
go: downloading github.com/eapache/channels v1.1.0
go: downloading go.opentelemetry.io/otel/metric v1.16.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/kr/text v0.2.0
go: downloading github.com/rogpeppe/go-internal v1.10.0
go: downloading github.com/mdlayher/packet v1.1.2
go: downloading github.com/cyphar/filepath-securejoin v0.2.3
go: downloading github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0
go: downloading github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c
go: downloading github.com/tklauser/go-sysconf v0.3.11
go: downloading github.com/imdario/mergo v0.3.12
go: downloading github.com/golang/snappy v0.0.4
go: downloading github.com/hashicorp/go-cleanhttp v0.5.2
go: downloading github.com/hashicorp/go-hclog v1.2.0
go: downloading github.com/hashicorp/go-rootcerts v1.0.2
go: downloading github.com/hashicorp/serf v0.10.1
go: downloading go.uber.org/zap v1.24.0
go: downloading github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5
go: downloading golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2
go: downloading github.com/docker/go-connections v0.4.0
go: downloading github.com/docker/go-units v0.5.0
go: downloading github.com/opencontainers/image-spec v1.0.2
go: downloading github.com/docker/distribution v2.8.2+incompatible
go: downloading github.com/opencontainers/go-digest v1.0.0
go: downloading github.com/ishidawataru/sctp v0.0.0-20210707070123-9a39160e9062
go: downloading github.com/alecthomas/participle/v2 v2.0.0-beta.4
go: downloading github.com/godbus/dbus/v5 v5.1.0
go: downloading golang.org/x/text v0.10.0
go: downloading github.com/subosito/gotenv v1.4.2
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading github.com/magiconair/properties v1.8.7
go: downloading github.com/pelletier/go-toml/v2 v2.0.8
go: downloading sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.4
go: downloading github.com/go-jose/go-jose/v3 v3.0.0
go: downloading github.com/census-instrumentation/opencensus-proto v0.4.1
go: downloading gomodules.xyz/jsonpatch/v2 v2.3.0
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.28
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading github.com/mdlayher/ndp v0.0.0-20200602162440-17ab9e3e5567
go: downloading github.com/eapache/queue v1.1.0
go: downloading github.com/k-sone/critbitgo v1.4.0
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading github.com/go-kit/log v0.2.1
go: downloading github.com/josharian/native v1.1.0
go: downloading github.com/mdlayher/socket v0.4.1
go: downloading github.com/yusufpapurcu/wmi v1.2.3
go: downloading github.com/tklauser/numcpus v0.6.0
go: downloading golang.org/x/oauth2 v0.7.0
go: downloading github.com/fatih/color v1.13.0
go: downloading github.com/mattn/go-colorable v0.1.12
go: downloading github.com/mattn/go-isatty v0.0.14
go: downloading github.com/coreos/go-semver v0.3.0
go: downloading go.uber.org/atomic v1.9.0
go: downloading github.com/shoenig/go-m1cpu v0.1.6
go: downloading github.com/armon/go-metrics v0.4.0
go: downloading github.com/mdlayher/genetlink v1.3.2
go: downloading github.com/mdlayher/netlink v1.7.2
go: downloading github.com/nxadm/tail v1.4.8
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading k8s.io/component-base v0.27.2
go: downloading gitlab.com/golang-commonmark/puny v0.0.0-20191124015043-9f83538fa04f
go: downloading github.com/go-logfmt/logfmt v0.5.1
go: downloading github.com/go-ole/go-ole v1.2.6
go: downloading gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7
go: downloading github.com/emicklei/go-restful/v3 v3.9.0
go: downloading google.golang.org/appengine v1.6.7
go: downloading github.com/moby/spdystream v0.2.0
go: downloading github.com/rootless-containers/rootlesskit v1.1.0
go: module github.com/golang/protobuf is deprecated: Use the "google.golang.org/protobuf" module instead.
go: downloading github.com/marwan-at-work/mod v0.5.0
go: downloading github.com/urfave/cli/v2 v2.3.0
go: downloading github.com/PuerkitoBio/goquery v1.5.1
go: downloading github.com/google/go-github v17.0.0+incompatible
go: downloading golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4
go: downloading golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
go: downloading golang.org/x/tools v0.1.12
go: downloading github.com/andybalholm/cascadia v1.1.0
go: downloading golang.org/x/net v0.0.0-20220722155237-a158d28d115b
go: downloading github.com/google/go-querystring v0.0.0-20170111101155-53e6ce116135
go: downloading github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d
go: downloading golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f
go: downloading github.com/russross/blackfriday/v2 v2.0.1
go: downloading github.com/shurcooL/sanitized_anchor_name v1.0.0
could not load package: err: exit status 1: stderr: go: inconsistent vendoring in /tmp/worker/59d7a6/05d2d4/repos/github/cilium/cilium:
	github.com/onsi/ginkgo@v1.16.4: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/onsi/ginkgo/v2@v2.10.0: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/onsi/ginkgo@v1.16.5: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod

	To ignore the vendor directory, use -mod=readonly or -mod=mod.
	To sync the vendor directory, run:
		go mod vendor


@maintainer-s-little-helper maintainer-s-little-helper bot added dont-merge/needs-release-note-label The author needs to describe the release impact of these changes. and removed dont-merge/needs-release-note-label The author needs to describe the release impact of these changes. labels Jun 16, 2023
@github-actions github-actions bot added the kind/community-contribution This was a contribution made by a community member. label Jun 16, 2023
Signed-off-by: renovate[bot] <bot@renovateapp.com>
@renovate renovate bot force-pushed the renovate/main-major-2-all-go-deps-main branch from e795f92 to c954896 Compare June 16, 2023 13:38
@renovate renovate bot changed the title chore(deps): update all go dependencies main to v2 (main) (major) fix(deps): update module github.com/onsi/ginkgo to v2 (main) Jun 16, 2023
tklauser added a commit that referenced this pull request Jun 22, 2023
Ignore the github.com/onsi/ginkgo module in addition to
github.com/onsi/gomega/* to avoid ginkgo v2 updates as indicated by the
existing comment.

This avoids opening PRs such as #26307

Signed-off-by: Tobias Klauser <tobias@cilium.io>
@tklauser
Copy link
Member

tklauser commented Jun 22, 2023

Updates to ginkgo/v2 should be ignored per

// Once we decide to spend cycles on ginkgo v2 we should update the
// dependency manually.
"github.com/onsi/gomega/*",
Opened #26423 to also ignore github.com/onsi/ginkgo.

@tklauser tklauser closed this Jun 22, 2023
@tklauser tklauser deleted the renovate/main-major-2-all-go-deps-main branch June 22, 2023 17:44
@renovate
Copy link
Contributor Author

renovate bot commented Jun 22, 2023

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future 2.x releases. But if you manually upgrade to 2.x then Renovate will re-enable minor and patch updates automatically.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

borkmann pushed a commit that referenced this pull request Jun 26, 2023
Ignore the github.com/onsi/ginkgo module in addition to
github.com/onsi/gomega/* to avoid ginkgo v2 updates as indicated by the
existing comment.

This avoids opening PRs such as #26307

Signed-off-by: Tobias Klauser <tobias@cilium.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/community-contribution This was a contribution made by a community member. kind/enhancement This would improve or streamline existing functionality. release-note/misc This PR makes changes that have no direct user impact. renovate/stop-updating Tell Renovate to stop updating PR
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant