Skip to content

Commit 3b4be62

Browse files
xerial-botxerial
andauthored
Update scalajs-test-interface to 1.18.2 (#3798)
## About this PR πŸ“¦ Updates [org.scala-js:scalajs-test-interface](https://github.com/scala-js/scala-js) from `1.18.1` to `1.18.2` πŸ“œ [GitHub Release Notes](https://github.com/scala-js/scala-js/releases/tag/v1.18.2) - [Version Diff](scala-js/scala-js@v1.18.1...v1.18.2) ## 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!_ <details> <summary>πŸ” Files still referring to the old version number</summary> The following files still refer to the old version number (1.18.1). You might want to review and update them manually. ``` airspec/build.sbt build.sbt ``` </details> <details> <summary>βš™ Adjust future updates</summary> 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" } }] ``` </details> <sup> labels: library-update </sup> Co-authored-by: Taro L. Saito <[email protected]>
1 parent a2a3aa9 commit 3b4be62

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

β€Žairspec/project/plugin.sbtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
1010
addDependencyTreePlugin
1111

1212
// For Scala.js
13-
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.1")
13+
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.2")
1414
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)
1515
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1")
1616
libraryDependencies ++= (

β€Žproject/plugin.sbtβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % SBT_AIRFRAME_VERSION)
2020
addDependencyTreePlugin
2121

2222
// For Scala.js
23-
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.1")
23+
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.2")
2424
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)
2525
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1")
2626
libraryDependencies ++= (

β€Žsbt-airframe/src/sbt-test/sbt-airframe/js-client/project/plugins.sbtβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ sys.props.get("plugin.version") match {
77

88
// For Scala.js
99
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
10-
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.1")
11-
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)
10+
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.2")
11+
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)

0 commit comments

Comments
Β (0)