Skip to content

Commit d6331f9

Browse files
committed
v1.35.0
1 parent 5deaf23 commit d6331f9

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+
## 1.35.0
2+
3+
### Features
4+
5+
- You can now call `EnforceDefaultTimeoutsWhenUsingContexts()` to have `Eventually` honor the default timeout when passed a context. (prior to this you had to expclility add a timeout) [e4c4265]
6+
- You can call `StopTrying(message).Successfully()` to abort a `Consistently` early without failure [eeca931]
7+
8+
### Fixes
9+
10+
- Stop memoizing the result of `HaveField` to avoid unexpected errors when used with async assertions. [3bdbc4e]
11+
12+
### Maintenance
13+
14+
- Bump all dependencies [a05a416]
15+
116
## 1.34.2
217

318
Require Go 1.22+

gomega_dsl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"github.com/onsi/gomega/types"
2323
)
2424

25-
const GOMEGA_VERSION = "1.34.2"
25+
const GOMEGA_VERSION = "1.35.0"
2626

2727
const nilGomegaPanic = `You are trying to make an assertion, but haven't registered Gomega's fail handler.
2828
If you're using Ginkgo then you probably forgot to put your assertion in an It().

0 commit comments

Comments
 (0)