From 5e06038efa1f6164fc7fdbe06e8e8e00b1816c70 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Thu, 6 Jun 2024 10:58:59 -0700 Subject: [PATCH] Update auxlib, clib, javalib, nativelib, ... to 0.5.3 (#3554) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates * [org.scala-native:auxlib](https://github.com/scala-native/scala-native) * [org.scala-native:clib](https://github.com/scala-native/scala-native) * [org.scala-native:javalib](https://github.com/scala-native/scala-native) * [org.scala-native:nativelib](https://github.com/scala-native/scala-native) * [org.scala-native:nscplugin](https://github.com/scala-native/scala-native) * [org.scala-native:posixlib](https://github.com/scala-native/scala-native) * [org.scala-native:sbt-scala-native](https://github.com/scala-native/scala-native) * [org.scala-native:test-interface](https://github.com/scala-native/scala-native) * [org.scala-native:windowslib](https://github.com/scala-native/scala-native) from `0.5.2` to `0.5.3` 📜 [GitHub Release Notes](https://github.com/scala-native/scala-native/releases/tag/v0.5.3) - [Version Diff](https://github.com/scala-native/scala-native/compare/v0.5.2...v0.5.3) ## 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 (0.5.2). You might want to review and update them manually. ``` docs/release-notes.md ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.scala-native" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.scala-native" } }] ```
labels: library-update --- airspec/build.sbt | 2 +- airspec/project/plugin.sbt | 2 +- project/plugin.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/airspec/build.sbt b/airspec/build.sbt index e63a30233..f1da668b0 100644 --- a/airspec/build.sbt +++ b/airspec/build.sbt @@ -374,7 +374,7 @@ lazy val airspec = Compile / packageBin / mappings ++= (airspecDeps.native / Compile / packageBin / mappings).value, Compile / packageSrc / mappings ++= (airspecDeps.native / Compile / packageSrc / mappings).value, libraryDependencies ++= Seq( - "org.scala-native" %%% "test-interface" % "0.5.2" + "org.scala-native" %%% "test-interface" % "0.5.3" ) ) // This should be Optional dependency, but using Provided dependency for bloop which doesn't support Optional. diff --git a/airspec/project/plugin.sbt b/airspec/project/plugin.sbt index 70510abcf..186e5f263 100755 --- a/airspec/project/plugin.sbt +++ b/airspec/project/plugin.sbt @@ -19,7 +19,7 @@ libraryDependencies ++= ( // For Scala native addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.2") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.3") // For setting explicit versions for each commit addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1") diff --git a/project/plugin.sbt b/project/plugin.sbt index e2a78bf43..94f25319a 100755 --- a/project/plugin.sbt +++ b/project/plugin.sbt @@ -32,7 +32,7 @@ libraryDependencies += "io.github.gmkumar2005" %% "scala-js-env-playwright" % "0 // For Scala native addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.3.2") -addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.2") +addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.3") // For setting explicit versions for each commit addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1")