Bump reva

This commit is contained in:
André Duffeck
2025-03-25 17:52:20 +01:00
committed by Ralf Haferkamp
parent 17267e899e
commit 2344092b81
92 changed files with 688 additions and 601 deletions
+8
View File
@@ -1,3 +1,11 @@
## 2.23.3
### Fixes
- allow `-` as a standalone argument [cfcc1a5]
- Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context() [feaf292]
- ignore exit code for symbol test on linux [88e2282]
## 2.23.2
🎉🎉🎉
+1 -1
View File
@@ -25,7 +25,7 @@ func (c Command) Run(args []string, additionalArgs []string) {
AbortWithUsage(err.Error())
}
for _, arg := range args {
if strings.HasPrefix(arg, "-") {
if len(arg) > 1 && strings.HasPrefix(arg, "-") {
AbortWith(types.GinkgoErrors.FlagAfterPositionalParameter().Error())
}
}
+6
View File
@@ -130,6 +130,12 @@ type GinkgoTBWrapper struct {
func (g *GinkgoTBWrapper) Cleanup(f func()) {
g.GinkgoT.Cleanup(f)
}
func (g *GinkgoTBWrapper) Chdir(dir string) {
g.GinkgoT.Chdir(dir)
}
func (g *GinkgoTBWrapper) Context() context.Context {
return g.GinkgoT.Context()
}
func (g *GinkgoTBWrapper) Error(args ...any) {
g.GinkgoT.Error(args...)
}
+1 -1
View File
@@ -1,3 +1,3 @@
package types
const VERSION = "2.23.2"
const VERSION = "2.23.3"