From 0b21f19deaaef62dfda2f0dd3387c68eb43df3f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Jourdan-Weil?= Date: Mon, 1 Sep 2025 14:37:47 +0200 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20upgrade=20Cucumber?= =?UTF-8?q?=20to=207.28.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ build.sbt | 2 +- project/build-dependencies.sbt | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d36bb69..f89c493 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH ### Changed +- [Core] Update `cucumber-core` dependency to [7.28.0](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md) + ### Deprecated ### Removed diff --git a/build.sbt b/build.sbt index 61cfb0e..97820ca 100644 --- a/build.sbt +++ b/build.sbt @@ -39,7 +39,7 @@ scalaVersion := scala213 // Library versions -val cucumberVersion = "7.27.2" +val cucumberVersion = "7.28.0" val jacksonVersion = "2.20.0" val mockitoScalaVersion = "1.17.45" val junitVersion = "4.13.2" diff --git a/project/build-dependencies.sbt b/project/build-dependencies.sbt index c3d27bd..f98bfde 100644 --- a/project/build-dependencies.sbt +++ b/project/build-dependencies.sbt @@ -1,2 +1,2 @@ -libraryDependencies += "io.cucumber" % "cucumber-core" % "7.27.2" +libraryDependencies += "io.cucumber" % "cucumber-core" % "7.28.0" libraryDependencies += "org.scala-lang.modules" %% "scala-collection-compat" % "2.13.0" From 5fad12a43dea911c53fa8303f03e6941d6a171c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Jourdan-Weil?= Date: Mon, 1 Sep 2025 14:39:04 +0200 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=9D=20docs:=20fix=20referenced=20J?= =?UTF-8?q?ackson=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/default_jackson_datatable_transformer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/default_jackson_datatable_transformer.md b/docs/default_jackson_datatable_transformer.md index 4903445..6c5d59d 100644 --- a/docs/default_jackson_datatable_transformer.md +++ b/docs/default_jackson_datatable_transformer.md @@ -23,7 +23,7 @@ libraryDependencies += "com.fasterxml.jackson.module" %% "jackson-module-scala" ``` -The current version of Cucumber Scala has been tested against Jackson Module Scala **version 2.13.3**. +The current version of Cucumber Scala has been tested against Jackson Module Scala **version 2.20.0**. ## Add the transformer From 35db92e471df39a555b05947780319a0aba9fe8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABl=20Jourdan-Weil?= Date: Mon, 1 Sep 2025 14:40:56 +0200 Subject: [PATCH 3/3] =?UTF-8?q?=F0=9F=A7=B9=20chore:=20upgrade=20Scala=20v?= =?UTF-8?q?ersions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + build.sbt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f89c493..891c0cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ See also the [CHANGELOG](https://github.com/cucumber/cucumber-jvm/blob/master/CH ### Changed - [Core] Update `cucumber-core` dependency to [7.28.0](https://github.com/cucumber/cucumber-jvm/blob/main/CHANGELOG.md) +- Upgrade Scala versions to 2.12.20 ### Deprecated diff --git a/build.sbt b/build.sbt index 97820ca..06a1213 100644 --- a/build.sbt +++ b/build.sbt @@ -31,7 +31,7 @@ ThisBuild / homepage := Some( // Scala versions -val scala212 = "2.12.18" +val scala212 = "2.12.20" val scala213 = "2.13.16" val scala3 = "3.3.1"