Skip to content

Commit

Permalink
Update scalajs-test-interface to 1.18.2 (#3798)
Browse files Browse the repository at this point in the history
## 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]>
  • Loading branch information
xerial-bot and xerial authored Jan 26, 2025
1 parent a2a3aa9 commit 3b4be62
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion airspec/project/plugin.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addDependencyTreePlugin

// For Scala.js
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.1")
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1")
libraryDependencies ++= (
Expand Down
2 changes: 1 addition & 1 deletion project/plugin.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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.18.1")
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)
addSbtPlugin("ch.epfl.scala" % "sbt-scalajs-bundler" % "0.21.1")
libraryDependencies ++= (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.18.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.18.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)

0 comments on commit 3b4be62

Please sign in to comment.