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

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This commit is contained in:
renovate[bot]
2025-08-28 18:34:59 +00:00
committed by GitHub
parent 43305b6cc4
commit 3d4f8153be
43 changed files with 12507 additions and 358 deletions

View File

@@ -1,3 +1,11 @@
## 2.25.2
### Fixes
Add github output group for progress report content
### Maintenance
Bump Gomega
## 2.25.1
### Fixes

View File

@@ -514,6 +514,10 @@ func (r *DefaultReporter) emitProgressReport(indent uint, emitGinkgoWriterOutput
indent -= 1
}
if r.conf.GithubOutput {
r.emitBlock(r.fi(indent, "::group::Progress Report"))
}
if emitGinkgoWriterOutput && report.CapturedGinkgoWriterOutput != "" {
r.emit("\n")
r.emitBlock(r.fi(indent, "{{gray}}Begin Captured GinkgoWriter Output >>{{/}}"))
@@ -560,6 +564,10 @@ func (r *DefaultReporter) emitProgressReport(indent uint, emitGinkgoWriterOutput
r.emit(r.fi(indent, "{{gray}}{{bold}}{{underline}}Other Goroutines{{/}}\n"))
r.emitGoroutines(indent, otherGoroutines...)
}
if r.conf.GithubOutput {
r.emitBlock(r.fi(indent, "::endgroup::"))
}
}
func (r *DefaultReporter) EmitReportEntry(entry types.ReportEntry) {

View File

@@ -1,3 +1,3 @@
package types
const VERSION = "2.25.1"
const VERSION = "2.25.2"