diff --git a/CHANGELOG.md b/CHANGELOG.md index a92dea617..4ff58dec4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,49 @@ # Changelog +## [2.9.0.3](https://github.com/chutney-testing/chutney/tree/2.9.0.3) +### πŸš€ Implemented enhancements: +* Scenario execute with parameters by @rbenyoussef in https://github.com/chutney-testing/chutney/pull/121 +### πŸ› Fixed bugs: +* Campaign edition - JIRA filter not present by @boddissattva in https://github.com/chutney-testing/chutney/pull/119 +* Break long word in admin bdd search, fix overflow ng-multi… by @DelaunayAlex in https://github.com/chutney-testing/chutney/pull/120 +* Use 24h formats for moment calendar by @boddissattva in https://github.com/chutney-testing/chutney/pull/134 +* Purge empty campaigns' executions by @boddissattva in https://github.com/chutney-testing/chutney/pull/122 +* Does not allow empty campaign execution by @boddissattva in https://github.com/chutney-testing/chutney/pull/133 +* Responsive dataset select in campaign edition by @DelaunayAlex in https://github.com/chutney-testing/chutney/pull/139 +* Snapshot report's inputs/outputs in engine after each step execution by @DelaunayAlex in https://github.com/chutney-testing/chutney/pull/136 +* Fix CONTRIBUTING.md path by @GeVa2072 in https://github.com/chutney-testing/chutney/pull/138 +* Fix tag selection on scenarios list by @rbenyoussef in https://github.com/chutney-testing/chutney/pull/137 +### πŸ‘’ Dependencies: +* Bump org.wiremock:wiremock-standalone from 3.6.0 to 3.8.0 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/125 +* Bump org.codehaus.mojo:build-helper-maven-plugin from 3.5.0 to 3.6.0 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/126 +* Bump sshd.version from 2.12.0 to 2.13.1 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/128 +* Bump org.springframework.boot:spring-boot-maven-plugin from 3.2.4 to 3.3.1 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/129 +* Bump commons-io:commons-io from 2.16.0 to 2.16.1 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/130 +* Bump org.apache.maven.plugins:maven-clean-plugin from 3.3.2 to 3.4.0 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/131 +* Bump org.apache.maven.plugins:maven-surefire-plugin from 3.2.5 to 3.3.0 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/132 +* Bump jqwik.version from 1.8.5 to 1.9.0 in /chutney by @dependabot in https://github.com/chutney-testing/chutney/pull/127 + +**Full Changelog**: https://github.com/chutney-testing/chutney/compare/2.9.0.2...2.9.0.3 + +## [2.9.0.2](https://github.com/chutney-testing/chutney/tree/2.9.0.2) + +### πŸ› Fixed bugs: +* Content search only on activated scenario by @rbenyoussef in https://github.com/chutney-testing/chutney/pull/114 +* Fix campaign edition filters width by @rbenyoussef in https://github.com/chutney-testing/chutney/pull/115 +* Update campaigns when renaming environment by @DelaunayAlex in https://github.com/chutney-testing/chutney/pull/87 +* Fix campaign execution status by @boddissattva in https://github.com/chutney-testing/chutney/pull/116 +* Delete dataset module HTML title by @boddissattva in https://github.com/chutney-testing/chutney/pull/118 +* Use the id instead of the name for scenario dataset in cam… by @DelaunayAlex in https://github.com/chutney-testing/chutney/pull/117 + +**Full Changelog**: https://github.com/chutney-testing/chutney/compare/2.9.0.1...2.9.0.2 + +## [2.9.0.1](https://github.com/chutney-testing/chutney/tree/2.9.0.1) + +### πŸ› Fixed bugs: +* Scenarios list refresh must be unsubscribed by @boddissattva in https://github.com/chutney-testing/chutney/pull/113 + +**Full Changelog**: https://github.com/chutney-testing/chutney/compare/2.9.0...2.9.0.1 + ## [2.9.0](https://github.com/chutney-testing/chutney/tree/2.9.0) ### πŸš€ Implemented enhancements: diff --git a/chutney/action-impl/pom.xml b/chutney/action-impl/pom.xml index 5fe982f03..12cca0f46 100644 --- a/chutney/action-impl/pom.xml +++ b/chutney/action-impl/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 action-impl diff --git a/chutney/action-spi/pom.xml b/chutney/action-spi/pom.xml index 5f87f8ff4..2a8c35ccc 100644 --- a/chutney/action-spi/pom.xml +++ b/chutney/action-spi/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 action-spi diff --git a/chutney/chutney-junit/api/pom.xml b/chutney/chutney-junit/api/pom.xml index 8f0c280a8..a0eb65d1a 100644 --- a/chutney/chutney-junit/api/pom.xml +++ b/chutney/chutney-junit/api/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-junit-parent - 2.9.1-SNAPSHOT + 2.9.0.3 chutney-junit-api diff --git a/chutney/chutney-junit/engine/pom.xml b/chutney/chutney-junit/engine/pom.xml index 248c9645f..94679990b 100644 --- a/chutney/chutney-junit/engine/pom.xml +++ b/chutney/chutney-junit/engine/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-junit-parent - 2.9.1-SNAPSHOT + 2.9.0.3 chutney-junit-engine diff --git a/chutney/chutney-junit/pom.xml b/chutney/chutney-junit/pom.xml index 2980275be..cb4a8d62c 100644 --- a/chutney/chutney-junit/pom.xml +++ b/chutney/chutney-junit/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 chutney-junit-parent diff --git a/chutney/engine/pom.xml b/chutney/engine/pom.xml index 770311b0e..bdb53ac7b 100644 --- a/chutney/engine/pom.xml +++ b/chutney/engine/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 engine diff --git a/chutney/environment/pom.xml b/chutney/environment/pom.xml index 3e045bc51..4b5f68927 100644 --- a/chutney/environment/pom.xml +++ b/chutney/environment/pom.xml @@ -5,7 +5,7 @@ chutney-parent com.chutneytesting - 2.9.1-SNAPSHOT + 2.9.0.3 4.0.0 diff --git a/chutney/glacio-adapter/pom.xml b/chutney/glacio-adapter/pom.xml index f8bb40b88..d76f48c66 100644 --- a/chutney/glacio-adapter/pom.xml +++ b/chutney/glacio-adapter/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 glacio-adapter diff --git a/chutney/jira/pom.xml b/chutney/jira/pom.xml index 60b631b4b..370971be4 100644 --- a/chutney/jira/pom.xml +++ b/chutney/jira/pom.xml @@ -5,7 +5,7 @@ chutney-parent com.chutneytesting - 2.9.1-SNAPSHOT + 2.9.0.3 4.0.0 diff --git a/chutney/packaging/local-api-unsecure/pom.xml b/chutney/packaging/local-api-unsecure/pom.xml index 103d1e635..0f64a88c4 100644 --- a/chutney/packaging/local-api-unsecure/pom.xml +++ b/chutney/packaging/local-api-unsecure/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting packaging - 2.9.1-SNAPSHOT + 2.9.0.3 local-api-unsecure diff --git a/chutney/packaging/local-dev/pom.xml b/chutney/packaging/local-dev/pom.xml index aa97c09d2..fe390fee0 100644 --- a/chutney/packaging/local-dev/pom.xml +++ b/chutney/packaging/local-dev/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting packaging - 2.9.1-SNAPSHOT + 2.9.0.3 local-dev diff --git a/chutney/packaging/pom.xml b/chutney/packaging/pom.xml index cf137c531..2e68ec452 100644 --- a/chutney/packaging/pom.xml +++ b/chutney/packaging/pom.xml @@ -6,7 +6,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 packaging pom diff --git a/chutney/pom.xml b/chutney/pom.xml index 87b8e6905..3687dc1bf 100644 --- a/chutney/pom.xml +++ b/chutney/pom.xml @@ -5,7 +5,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 pom Chutney @@ -48,7 +48,7 @@ https://github.com/chutney-testing/chutney.git scm:git:git@github.com:chutney-testing/chutney.git scm:git:git@github.com:chutney-testing/chutney.git - HEAD + 2.9.0.3 diff --git a/chutney/server-core/pom.xml b/chutney/server-core/pom.xml index ecce8f011..c45d1332a 100644 --- a/chutney/server-core/pom.xml +++ b/chutney/server-core/pom.xml @@ -7,7 +7,7 @@ chutney-parent com.chutneytesting - 2.9.1-SNAPSHOT + 2.9.0.3 server-core diff --git a/chutney/server/pom.xml b/chutney/server/pom.xml index 8d517a1c7..9d5867abd 100644 --- a/chutney/server/pom.xml +++ b/chutney/server/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 server diff --git a/chutney/tools/pom.xml b/chutney/tools/pom.xml index c97637a9b..74d6a6085 100644 --- a/chutney/tools/pom.xml +++ b/chutney/tools/pom.xml @@ -7,7 +7,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 tools diff --git a/chutney/ui/pom.xml b/chutney/ui/pom.xml index 8f7714ef8..3e8310b05 100644 --- a/chutney/ui/pom.xml +++ b/chutney/ui/pom.xml @@ -6,7 +6,7 @@ com.chutneytesting chutney-parent - 2.9.1-SNAPSHOT + 2.9.0.3 ui diff --git a/idea-plugin/gradle.properties b/idea-plugin/gradle.properties index e647fb3b8..ad46cfe14 100755 --- a/idea-plugin/gradle.properties +++ b/idea-plugin/gradle.properties @@ -7,7 +7,7 @@ org.gradle.jvmargs=-Xmx2048M pluginGroup = com.chutneytesting.idea pluginName = chutney-idea-plugin -chutneyVersion = 2.9.1-SNAPSHOT +chutneyVersion = 2.9.0.3 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. diff --git a/kotlin-dsl/gradle.properties b/kotlin-dsl/gradle.properties index 892a6216c..24b1b990b 100644 --- a/kotlin-dsl/gradle.properties +++ b/kotlin-dsl/gradle.properties @@ -1 +1 @@ -chutneyVersion = 2.9.1-SNAPSHOT +chutneyVersion = 2.9.0.3