mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-02 08:49:29 -05:00
Bump github.com/onsi/ginkgo/v2 from 2.12.0 to 2.12.1
Bumps [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) from 2.12.0 to 2.12.1. - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.12.0...v2.12.1) --- updated-dependencies: - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
+9
@@ -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
|
||||
|
||||
+5
-1
@@ -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{})
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,3 +1,3 @@
|
||||
package types
|
||||
|
||||
const VERSION = "2.12.0"
|
||||
const VERSION = "2.12.1"
|
||||
|
||||
Reference in New Issue
Block a user