Skip to content

Commit 812e642

Browse files
committed
v1.14.0
1 parent 26cf82b commit 812e642

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## 1.14.0
2+
3+
### Features
4+
- gmeasure.SamplingConfig now suppers a MinSamplingInterval [e94dbca]
5+
- Eventually and Consistently support functions that make assertions [2f04e6e]
6+
- Eventually and Consistently now allow their passed-in functions to make assertions.
7+
These assertions must pass or the function is considered to have failed and is retried.
8+
- Eventually and Consistently can now take functions with no return values. These implicitly return nil
9+
if they contain no failed assertion. Otherwise they return an error wrapping the first assertion failure. This allows
10+
these functions to be used with the Succeed() matcher.
11+
- Introduce InterceptGomegaFailure - an analogue to InterceptGomegaFailures - that captures the first assertion failure
12+
and halts execution in its passed-in callback.
13+
14+
### Fixes
15+
- Call Verify GHTTPWithGomega receiver funcs (#454) [496e6fd]
16+
- Build a binary with an expected name (#446) [7356360]
17+
118
## 1.13.0
219

320
### Features

gomega_dsl.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
"github.com/onsi/gomega/types"
2626
)
2727

28-
const GOMEGA_VERSION = "1.13.0"
28+
const GOMEGA_VERSION = "1.14.0"
2929

3030
const nilFailHandlerPanic = `You are trying to make an assertion, but Gomega's fail handler is nil.
3131
If you're using Ginkgo then you probably forgot to put your assertion in an It().

0 commit comments

Comments
 (0)