Skip to content

Commit 2096d36

Browse files
authored
Update scalajs-test-interface to 1.14.0 (#3228)
## About this PR πŸ“¦ Updates [org.scala-js:scalajs-test-interface](https://github.com/scala-js/scala-js) from `1.13.2` to `1.14.0` πŸ“œ [GitHub Release Notes](https://github.com/scala-js/scala-js/releases/tag/v1.14.0) - [Version Diff](scala-js/scala-js@v1.13.2...v1.14.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/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/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.13.2). You might want to review and update them manually. ``` docs/airframe-rpc.md ``` </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>
1 parent c72be97 commit 2096d36

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

β€Žairspec/project/plugin.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
1010
addDependencyTreePlugin
1111

1212
// For Scala.js
13-
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.13.2")
13+
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.14.0")
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % SBT_AIRFRAME_VERSION)
1717
addDependencyTreePlugin
1818

1919
// For Scala.js
20-
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.13.2")
20+
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.14.0")
2121
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)
2222
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1")
2323
libraryDependencies ++= (

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

+1-1
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.13.2")
10+
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.14.0")
1111
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)

0 commit comments

Comments
Β (0)