From 3bd1c74d602edbdd88eb1da8fd6f78b52cf95174 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Sun, 29 Sep 2024 14:42:17 -0700 Subject: [PATCH] Update scalajs-test-interface to 1.17.0 (#3668) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.scala-js:scalajs-test-interface](https://github.com/scala-js/scala-js) from `1.16.0` to `1.17.0` 📜 [GitHub Release Notes](https://github.com/scala-js/scala-js/releases/tag/v1.17.0) - [Version Diff](https://github.com/scala-js/scala-js/compare/v1.16.0...v1.17.0) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/7ec418cd5441d449f037bca6d34326534c07a5dd/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
🔍 Files still referring to the old version number The following files still refer to the old version number (1.16.0). You might want to review and update them manually. ``` docs/release-notes.md examples/rx-demo/gallery/src/main/public/index.html ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.scala-js", artifactId = "scalajs-test-interface" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.scala-js", artifactId = "scalajs-test-interface" } }] ```
labels: library-update --- airspec/project/plugin.sbt | 2 +- project/plugin.sbt | 2 +- .../src/sbt-test/sbt-airframe/js-client/project/plugins.sbt | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/airspec/project/plugin.sbt b/airspec/project/plugin.sbt index 34e04b9ab..480eb765b 100755 --- a/airspec/project/plugin.sbt +++ b/airspec/project/plugin.sbt @@ -10,7 +10,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0") addDependencyTreePlugin // For Scala.js -val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.16.0") +val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.17.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION) addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") libraryDependencies ++= ( diff --git a/project/plugin.sbt b/project/plugin.sbt index 96c4a921b..481648431 100755 --- a/project/plugin.sbt +++ b/project/plugin.sbt @@ -20,7 +20,7 @@ addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % SBT_AIRFRAME_VERSION) addDependencyTreePlugin // For Scala.js -val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.16.0") +val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.17.0") addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION) addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1") libraryDependencies ++= ( diff --git a/sbt-airframe/src/sbt-test/sbt-airframe/js-client/project/plugins.sbt b/sbt-airframe/src/sbt-test/sbt-airframe/js-client/project/plugins.sbt index f9edffceb..636083120 100644 --- a/sbt-airframe/src/sbt-test/sbt-airframe/js-client/project/plugins.sbt +++ b/sbt-airframe/src/sbt-test/sbt-airframe/js-client/project/plugins.sbt @@ -7,5 +7,5 @@ sys.props.get("plugin.version") match { // For Scala.js addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2") -val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.16.0") -addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION) +val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.17.0") +addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)