File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
3030const nilFailHandlerPanic = `You are trying to make an assertion, but Gomega's fail handler is nil.
3131If you're using Ginkgo then you probably forgot to put your assertion in an It().
You can’t perform that action at this time.
0 commit comments