Skip to content

Commit

Permalink
v1.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
onsi committed Oct 29, 2024
1 parent 5deaf23 commit d6331f9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 1.35.0

### Features

- 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]
- You can call `StopTrying(message).Successfully()` to abort a `Consistently` early without failure [eeca931]

### Fixes

- Stop memoizing the result of `HaveField` to avoid unexpected errors when used with async assertions. [3bdbc4e]

### Maintenance

- Bump all dependencies [a05a416]

## 1.34.2

Require Go 1.22+
Expand Down
2 changes: 1 addition & 1 deletion gomega_dsl.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/onsi/gomega/types"
)

const GOMEGA_VERSION = "1.34.2"
const GOMEGA_VERSION = "1.35.0"

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

0 comments on commit d6331f9

Please sign in to comment.