Skip to content

Commit 95adf7f

Browse files
committed
Update CHANGELOG for v7.5.0
1 parent 4f7b662 commit 95adf7f

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
99

1010
### Added
1111

12+
### Changed
13+
14+
### Deprecated
15+
16+
### Removed
17+
18+
### Fixed
19+
20+
## [7.5.0] (2022-07-28)
21+
22+
### Added
23+
1224
* [OpenEJB] Added new module `jakarta-openejb`, which supports the jakarta.* namespace in TomEE 9.x ([#2583](https://github.com/cucumber/cucumber-jvm/pull/2583) R. Zowalla)
1325

1426
### Changed
1527
* [JUnit Platform] Use JUnit Platform 1.9.0 (JUnit Jupiter 5.9.0) ([#2590](https://github.com/cucumber/cucumber-jvm/pull/2590) M.P. Korstanje)
1628
* [TestNG] Update dependency org.testng:testng to v7.6.1
1729
* [Core] Update dependency io.cucumber:ci-environment to v9.1.0
1830

19-
### Deprecated
20-
21-
### Removed
22-
2331
### Fixed
2432
* [Java] Process glue classes distinctly ([#2582](https://github.com/cucumber/cucumber-jvm/pull/2582) M.P. Korstanje)
2533
* [Spring] Do not invoke after test methods if test failed to start ([#2585](https://github.com/cucumber/cucumber-jvm/pull/2585) M.P. Korstanje)
@@ -1811,7 +1819,8 @@ in `cucumber.api` stable from now on, with proper deprecation warnings in case s
18111819
* First proper release
18121820
18131821
<!-- Releases -->
1814-
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v7.4.1...main
1822+
[Unreleased]: https://github.com/cucumber/cucumber-jvm/compare/v7.5.0...main
1823+
[7.5.0]: https://github.com/cucumber/cucumber-jvm/compare/v7.4.1...v7.5.0
18151824
[7.4.1]: https://github.com/cucumber/cucumber-jvm/compare/v7.4.0...v7.4.1
18161825
[7.4.0]: https://github.com/cucumber/cucumber-jvm/compare/v7.3.4...v7.4.0
18171826
[7.3.4]: https://github.com/cucumber/cucumber-jvm/compare/v7.3.3...v7.3.4

spring/src/main/java/io/cucumber/spring/TestContextAdaptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public final void stop() {
107107
// session. This is not ideal, but Cucumber only supports 1 set of
108108
// before/after semantics while JUnit and Spring have 2 sets.
109109
if (CucumberTestContext.getInstance().isActive()) {
110-
if(delegateTestInstance != null) {
110+
if (delegateTestInstance != null) {
111111
notifyTestContextManagerAboutAfterTestMethod();
112112
delegateTestInstance = null;
113113
}

spring/src/test/java/io/cucumber/spring/SpringFactoryTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ public void beforeTestMethod(TestContext testContext) throws Exception {
429429
@ContextConfiguration("classpath:cucumber.xml")
430430
public static class FailedTestInstanceContextConfiguration {
431431

432-
public FailedTestInstanceContextConfiguration(){
432+
public FailedTestInstanceContextConfiguration() {
433433
throw new RuntimeException();
434434
}
435435
}

0 commit comments

Comments
 (0)