@@ -11,27 +11,26 @@ _This is a summary of the highlights of the milestone releases_
1111=== Highlights
1212
1313* Add support for Groovy 5.0 spockIssue:2196[]
14- * Add support for combining two or more data providers using cartesian product spockIssue:1062[]
14+ * Add support for combining two or more data providers using Cartesian product spockIssue:1062[]
1515* Add support for a `filter` block after a `where` block to filter out unwanted iterations spockPull:1927[]
1616* Add <<extensions.adoc#block-listener,`IBlockListener`>> extension point to listen to block execution events within feature methods spockPull:1575[]
1717* Add support for defining condition blocks with implicit assertions in helper methods annotated with `@Verify` or `@VerifyAll` spockPull:2112[]
18- * Spock now supports pluggable <<extensions.adoc#mock-makers,mock makers>> loaded via ServiceLoader spockPull:1746[]
18+ * Add support for pluggable <<extensions.adoc#mock-makers,mock makers>> loaded via ServiceLoader spockPull:1746[]
1919** This allows external libraries to contribute mocking logic to Spock and use the same API for the users
2020** You can select the used mock maker during mock creation: `Mock(mockMaker:MockMakers.byteBuddy)`
21- * Added <<extensions.adoc#mock-makers-mockito,mockito>> mock maker spockPull:1753[] which supports:
21+ * Add <<extensions.adoc#mock-makers-mockito,mockito>> mock maker spockPull:1753[] which supports:
2222** Mocking of final classes and final methods
2323** Mocking of static methods
2424** Mocking of classes and interface from different classloaders spockPull:1878[]
2525** Requires `org.mockito:mockito-core` >= 4.11 in the test class path
26- * Added support for mocking of static methods also for Java code with the new API `SpyStatic()` spockPull:1756[]
26+ * Add support for mocking of static methods also for Java code with the new API `SpyStatic()` spockPull:1756[]
2727** The <<interaction_based_testing.adoc#static-mocks,static mock methods>> will delegate the creation to the mock makers
2828* Add <<spock_primer.adoc#verify-each,verifyEach>> method to perform assertions on each element of an `Iterable` spockPull:1887[], spockPull:2043[]
2929* Add <<extensions.adoc#parameter-injection,annotation extensions for parameters>> spockPull:1599[]
3030* Add support for <<extensions.adoc#extension-store,keeping state in extensions>> spockPull:1692[]
3131* Add <<extensions.adoc#spock-interceptors,feature-scoped interceptors>> spockPull:1844[]
3232* Add `@Snapshot` extension for <<extensions.adoc#snapshot-testing,snapshot testing>> spockPull:1873[]
3333* Add `!!` as <<spock_primer.adoc#opt-out-of-condition-handling,opt-out operator for assertions>> spockPull:1532[]
34- * Add support for Groovy 5.0 spockIssue:2196[]
3534
3635=== Breaking Changes
3736
@@ -125,7 +124,7 @@ Thanks to all the contributors to this release: Andreas Turban, Björn Kautler,
125124
126125=== Highlights
127126
128- * Add support for combining two or more data providers using cartesian product spockIssue:1062[]
127+ * Add support for combining two or more data providers using Cartesian product spockIssue:1062[]
129128* Add support for a `filter` block after a `where` block to filter out unwanted iterations spockPull:1927[]
130129* Add <<extensions.adoc#block-listener,`IBlockListener`>> extension point to listen to block execution events within feature methods spockPull:1575[]
131130
@@ -200,15 +199,15 @@ Thanks to all the contributors to this release: Andreas Turban, Björn Kautler,
200199
201200=== Highlights
202201
203- * Spock now supports pluggable <<extensions.adoc#mock-makers,mock makers>> loaded via ServiceLoader spockPull:1746[]
202+ * Add support for pluggable <<extensions.adoc#mock-makers,mock makers>> loaded via ServiceLoader spockPull:1746[]
204203** This allows external libraries to contribute mocking logic to Spock and use the same API for the users
205204** You can select the used mock maker during mock creation: `Mock(mockMaker:MockMakers.byteBuddy)`
206- * Added <<extensions.adoc#mock-makers-mockito,mockito>> mock maker spockPull:1753[] which supports:
205+ * Add <<extensions.adoc#mock-makers-mockito,mockito>> mock maker spockPull:1753[] which supports:
207206** Mocking of final classes and final methods
208207** Mocking of static methods
209208** Mocking of classes and interface from different classloaders spockPull:1878[]
210209** Requires `org.mockito:mockito-core` >= 4.11 in the test class path
211- * Added support for mocking of static methods also for Java code with the new API `SpyStatic()` spockPull:1756[]
210+ * Add support for mocking of static methods also for Java code with the new API `SpyStatic()` spockPull:1756[]
212211** The <<interaction_based_testing.adoc#static-mocks,static mock methods>> will delegate the creation to the mock makers
213212* Add <<spock_primer.adoc#verify-each,verifyEach>> method to perform assertions on each element of an `Iterable` spockPull:1887[]
214213* Add <<extensions.adoc#parameter-injection,annotation extensions for parameters>> spockPull:1599[]
0 commit comments