From 75cd4b3eadb6fc11dfeddd34ba997c19ff4b0243 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Thu, 29 Feb 2024 09:34:38 -0800 Subject: [PATCH] Update scala3-staging, ... to 3.3.3 (#3430) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates * [org.scala-lang:scala3-staging](https://github.com/lampepfl/dotty) * [org.scala-lang:scala3-tasty-inspector](https://github.com/lampepfl/dotty) from `3.3.2` to `3.3.3` 📜 [GitHub Release Notes](https://github.com/lampepfl/dotty/releases/tag/3.3.3) - [Version Diff](https://github.com/lampepfl/dotty/compare/3.3.2...3.3.3) - [Version Diff](https://github.com/lampepfl/dotty/compare/release-3.3.2...release-3.3.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/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/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 (3.3.2). You might want to review and update them manually. ``` docs/release-notes.md sbt-airframe/src/sbt-test/sbt-airframe/generate-client/build.sbt sbt-airframe/src/sbt-test/sbt-airframe/grpc/build.sbt sbt-airframe/src/sbt-test/sbt-airframe/js-client/build.sbt sbt-airframe/src/sbt-test/sbt-airframe/openapi/build.sbt sbt-airframe/src/sbt-test/sbt-airframe/rpc-netty/build.sbt website/static/img/undraw_youtube_tutorial.svg ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.scala-lang" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.scala-lang" } }] ```
labels: library-update --- airspec/build.sbt | 5 ++--- build.sbt | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/airspec/build.sbt b/airspec/build.sbt index b4201e5d1..6eff552c5 100644 --- a/airspec/build.sbt +++ b/airspec/build.sbt @@ -15,7 +15,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges val SCALA_2_12 = "2.12.19" val SCALA_2_13 = "2.13.13" -val SCALA_3 = "3.3.2" +val SCALA_3 = "3.3.3" val targetScalaVersions = SCALA_3 :: SCALA_2_13 :: SCALA_2_12 :: Nil val SCALACHECK_VERSION = "1.17.0" @@ -130,8 +130,7 @@ def excludePomDependency(excludes: Seq[String]) = { node: XmlNode => }).transform(node).head } -/** - * AirSpec build definitions. +/** AirSpec build definitions. * * To make AirSpec a standalone library without any cyclic project references, AirSpec embeds the source code of * airframe-log, di, surface, etc. diff --git a/build.sbt b/build.sbt index 965c7e91b..e5d27a13e 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import xerial.sbt.pack.PackPlugin.{projectSettings, publishPackArchiveTgz} val SCALA_2_12 = "2.12.19" val SCALA_2_13 = "2.13.13" -val SCALA_3 = "3.3.2" +val SCALA_3 = "3.3.3" val uptoScala2 = SCALA_2_13 :: SCALA_2_12 :: Nil val targetScalaVersions = SCALA_3 :: uptoScala2