From 70f953921afa4c81090a63a218613946200b3f19 Mon Sep 17 00:00:00 2001
From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com>
Date: Mon, 12 Feb 2024 17:37:04 -0500
Subject: [PATCH] build(deps): Bump github.com/onsi/ginkgo/v2 from 2.14.0 to
2.15.0 (#115)
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from
2.14.0 to 2.15.0.
Release notes
Sourced from github.com/onsi/ginkgo/v2's
releases.
v2.15.0
2.15.0
Features
- JUnit reports now interpret Label(owner:X) and set owner to X.
[8f3bd70]
- include cancellation reason when cancelling spec context
[96e915c]
Fixes
- emit output of failed go tool cover invocation so users can try to
debug things for themselves [c245d09]
- fix outline when using nodot in ginkgo v2 [dca77c8]
- Document areas where GinkgoT() behaves differently from testing.T
[dbaf18f]
- bugfix(docs): use Unsetenv instead of Clearenv (#1337)
[6f67a14]
Maintenance
- Bump to go 1.20 [4fcd0b3]
Changelog
Sourced from github.com/onsi/ginkgo/v2's
changelog.
2.15.0
Features
- JUnit reports now interpret Label(owner:X) and set owner to X.
[8f3bd70]
- include cancellation reason when cancelling spec context
[96e915c]
Fixes
- emit output of failed go tool cover invocation so users can try to
debug things for themselves [c245d09]
- fix outline when using nodot in ginkgo v2 [dca77c8]
- Document areas where GinkgoT() behaves differently from testing.T
[dbaf18f]
- bugfix(docs): use Unsetenv instead of Clearenv (#1337)
[6f67a14]
Maintenance
- Bump to go 1.20 [4fcd0b3]
Commits
7fa0190
v2.15.0
c245d09
emit output of failed go tool cover invocation so users can try to debug
thin...
dca77c8
fix outline when using nodot inginkgo v2
96e915c
include cancellation reason when cancelling spec context
4fcd0b3
Bump to go 1.20
732abbc
clarify that last owner label wins
8f3bd70
JUnit reports now interpret Label(owner:X) and set owner to X.
dbaf18f
Document areas where GinkgoT() behaves differently from testing.T
6f67a14
bugfix(docs): use Unsetenv instead of Clearenv (#1337)
- 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.14.0&new-version=2.15.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 show ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@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 0ed9a2a..d1cc237 100644
--- a/go.mod
+++ b/go.mod
@@ -3,7 +3,7 @@ module github.com/runfinch/common-tests
go 1.20
require (
- github.com/onsi/ginkgo/v2 v2.14.0
+ github.com/onsi/ginkgo/v2 v2.15.0
github.com/onsi/gomega v1.30.0
)
diff --git a/go.sum b/go.sum
index a30c246..d636cf3 100644
--- a/go.sum
+++ b/go.sum
@@ -14,8 +14,8 @@ github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeN
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 h1:yAJXTCF9TqKcTiHJAE8dj7HMvPfh66eeA2JYW7eFpSE=
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
-github.com/onsi/ginkgo/v2 v2.14.0 h1:vSmGj2Z5YPb9JwCWT6z6ihcUvDhuXLc3sJiqd3jMKAY=
-github.com/onsi/ginkgo/v2 v2.14.0/go.mod h1:JkUdW7JkN0V6rFvsHcJ478egV3XH9NxpD27Hal/PhZw=
+github.com/onsi/ginkgo/v2 v2.15.0 h1:79HwNRBAZHOEwrczrgSOPy+eFTTlIGELKy5as+ClttY=
+github.com/onsi/ginkgo/v2 v2.15.0/go.mod h1:HlxMHtYF57y6Dpf+mc5529KKmSq9h2FpCF+/ZkwUxKM=
github.com/onsi/gomega v1.30.0 h1:hvMK7xYz4D3HapigLTeGdId/NcfQx1VHMJc60ew99+8=
github.com/onsi/gomega v1.30.0/go.mod h1:9sxs+SwGrKI0+PWe4Fxa9tFQQBG5xSsSbMXOI8PPpoQ=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=