From e695dc51448406c809adb6395f8fa2db7cc0a9bd Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Tue, 10 Jan 2023 16:44:49 -0800
Subject: [PATCH] build(deps): bump github.com/onsi/ginkgo/v2 from 2.6.1 to
2.7.0 (#19)
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from
2.6.1 to 2.7.0.
Release notes
Sourced from github.com/onsi/ginkgo/v2's
releases.
v2.7.0
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]
Changelog
Sourced from github.com/onsi/ginkgo/v2's
changelog.
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]
Commits
310a73f
v2.7.0
e0123ca
Introduce ContinueOnFailure for Ordered containers
89dda20
correctly ensure deterministic spec order, even if specs are generated
by ite...
7a2b242
Support for bootstrap commands to use custom data for templates (#1110)
62fff95
ensure deterministic order even if specs are generated by iterating over
a map
e6e3b98
Support for labels and pending decorator in ginkgo outline output (#1113)
b0bd77b
Ensure go test coverprofile outputs to the expected location (#1105)
49fab7a
Color aliases for custom color support (#1101)
- See full diff in compare
view
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/onsi/ginkgo/v2&package-manager=go_modules&previous-version=2.6.1&new-version=2.7.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
Signed-off-by: dependabot[bot]
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
---
go.mod | 2 +-
go.sum | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/go.mod b/go.mod
index c45fd83..1ed1446 100644
--- a/go.mod
+++ b/go.mod
@@ -3,7 +3,7 @@ module github.com/runfinch/common-tests
go 1.19
require (
- github.com/onsi/ginkgo/v2 v2.6.1
+ github.com/onsi/ginkgo/v2 v2.7.0
github.com/onsi/gomega v1.24.2
)
diff --git a/go.sum b/go.sum
index 43ca622..9d0d66c 100644
--- a/go.sum
+++ b/go.sum
@@ -3,8 +3,8 @@ github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbV
github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
-github.com/onsi/ginkgo/v2 v2.6.1 h1:1xQPCjcqYw/J5LchOcp4/2q/jzJFjiAOc25chhnDw+Q=
-github.com/onsi/ginkgo/v2 v2.6.1/go.mod h1:yjiuMwPokqY1XauOgju45q3sJt6VzQ/Fict1LFVcsAo=
+github.com/onsi/ginkgo/v2 v2.7.0 h1:/XxtEV3I3Eif/HobnVx9YmJgk8ENdRsuUmM+fLCFNow=
+github.com/onsi/ginkgo/v2 v2.7.0/go.mod h1:yjiuMwPokqY1XauOgju45q3sJt6VzQ/Fict1LFVcsAo=
github.com/onsi/gomega v1.24.2 h1:J/tulyYK6JwBldPViHJReihxxZ+22FHs0piGjQAvoUE=
github.com/onsi/gomega v1.24.2/go.mod h1:gs3J10IS7Z7r7eXRoNJIrNqU4ToQukCJhFtKrWgHWnk=
golang.org/x/net v0.4.0 h1:Q5QPcMlvfxFTAPV0+07Xz/MpK9NTXu2VDUuy0FeMfaU=