fix(deps): update module github.com/onsi/ginkgo/v2 to v2.12.1

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2023-09-19 23:00:33 +00:00
committed by GitHub
parent 696f4a6a4d
commit 1908663f1e
10 changed files with 26 additions and 13 deletions

View File

@@ -1,3 +1,12 @@
## 2.12.1
### Fixes
- Print logr prefix if it exists (#1275) [90d4846]
### Maintenance
- Bump actions/checkout from 3 to 4 (#1271) [555f543]
- Bump golang.org/x/sys from 0.11.0 to 0.12.0 (#1270) [d867b7d]
## 2.12.0
### Features

View File

@@ -135,6 +135,10 @@ func (w *Writer) Println(a ...interface{}) {
func GinkgoLogrFunc(writer *Writer) logr.Logger {
return funcr.New(func(prefix, args string) {
writer.Printf("%s\n", args)
if prefix == "" {
writer.Printf("%s\n", args)
} else {
writer.Printf("%s %s\n", prefix, args)
}
}, funcr.Options{})
}

View File

@@ -1,3 +1,3 @@
package types
const VERSION = "2.12.0"
const VERSION = "2.12.1"