Skip to content

Commit 2b2305b

Browse files
committed
v2.28.0
1 parent 71d2d89 commit 2b2305b

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## 2.28.0
2+
3+
Ginkgo's SemVer filter now supports filtering multiple components by SemVer version:
4+
5+
```go
6+
It("should work in a specific version range (1.0.0, 2.0.0) and third-party dependency redis in [8.0.0, ~)", SemVerConstraint(">= 3.2.0"), ComponentSemVerConstraint("redis", ">= 8.0.0") func() {
7+
// This test will only run when version is between 1.0.0 (exclusive) and 2.0.0 (exclusive) and redis version is >= 8.0.0
8+
})
9+
```
10+
11+
can be filtered in or out with an invocation like:
12+
13+
```bash
14+
ginkgo --sem-ver-filter="2.1.1, redis=8.2.0"
15+
```
16+
17+
Huge thanks to @Icarus9913 for working on this!
18+
119
## 2.27.5
220

321
### Fixes

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.27.5"
3+
const VERSION = "2.28.0"

0 commit comments

Comments
 (0)