Codebase list golang-gomega / 8e0d16d
v1.18.0 Onsi Fakhouri 2 years ago
2 changed file(s) with 18 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
0 ## 1.18.0
1
2 ## Features
3 - Docs now live on the master branch in the docs folder which will make for easier PRs. The docs also use Ginkgo 2.0's new docs html/css/js. [2570272]
4 - New HaveValue matcher can handle actuals that are either values (in which case they are passed on unscathed) or pointers (in which case they are indirected). [Docs here.](https://onsi.github.io/gomega/#working-with-values) (#485) [bdc087c]
5 - Gmeasure has been declared GA [360db9d]
6
7 ## Fixes
8 - Gomega now uses ioutil for Go 1.15 and lower (#492) - official support is only for the most recent two major versions of Go but this will unblock users who need to stay on older unsupported versions of Go. [c29c1c0]
9
10 ## Maintenace
11 - Remove Travis workflow (#491) [72e6040]
12 - Upgrade to Ginkgo 2.0.0 GA [f383637]
13 - chore: fix description of HaveField matcher (#487) [2b4b2c0]
14 - use tools.go to ensure Ginkgo cli dependencies are included [f58a52b]
15 - remove dockerfile and simplify github actions to match ginkgo's actions [3f8160d]
16
017 ## 1.17.0
118
219 ### Features
2121 "github.com/onsi/gomega/types"
2222 )
2323
24 const GOMEGA_VERSION = "1.17.0"
24 const GOMEGA_VERSION = "1.18.0"
2525
2626 const nilGomegaPanic = `You are trying to make an assertion, but haven't registered Gomega's fail handler.
2727 If you're using Ginkgo then you probably forgot to put your assertion in an It().