Skip to content

Commit 979c969

Browse files
committed
v2.23.2
1 parent 976a5c0 commit 979c969

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 2.23.2
2+
3+
🎉🎉🎉
4+
5+
At long last, some long-standing performance gaps between `ginkgo` and `go test` have been resolved!
6+
7+
Ginkgo operates by running `go test -c` to generate test binaries, and then running those binaries. It turns out that the compilation step of `go test -c` is slower than `go test`'s compilation step because `go test` strips out debug symbols (`ldflags=-w`) whereas `go test -c` does not.
8+
9+
Ginkgo now passes the appropriate `ldflags` to `go test -c` when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and when `ginkgo build` is called explicitly.
10+
11+
This, coupled, with the [instructions for disabling XProtect on MacOS](https://onsi.github.io/ginkgo/#if-you-are-running-on-macos) yields a much better performance experience with Ginkgo.
12+
113
## 2.23.1
214

315
## 🚨 For users on MacOS 🚨

types/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package types
22

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

0 commit comments

Comments
 (0)