Skip to content

Commit 99e2fe2

Browse files
committed
v2.23.1
1 parent a0e52ff commit 99e2fe2

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 2.23.1
2+
3+
## 🚨 For users on MacOS 🚨
4+
5+
A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions [here](https://onsi.github.io/ginkgo/#if-you-are-running-on-macos) to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.
6+
7+
### Fixes
8+
9+
Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:
10+
11+
- make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]
12+
- emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]
13+
14+
This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.
15+
116
## 2.23.0
217

318
Ginkgo 2.23.0 adds a handful of methods to `GinkgoT()` to make it compatible with the `testing.TB` interface in Go 1.24. `GinkgoT().Context()`, in particular, is a useful shorthand for generating a new context that will clean itself up in a `DeferCleanup()`. This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.

types/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package types
22

3-
const VERSION = "2.23.0"
3+
const VERSION = "2.23.1"

0 commit comments

Comments
 (0)