Skip to content

chore(deps): update dependency sbt/sbt to v1.13.0 - #131

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/sbt-sbt-1.x
Open

chore(deps): update dependency sbt/sbt to v1.13.0#131
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/sbt-sbt-1.x

Conversation

@renovate

@renovate renovate Bot commented Mar 4, 2025

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Update Change
sbt/sbt minor 1.10.71.13.0

Release Notes

sbt/sbt (sbt/sbt)

v1.13.0: 1.13.0

Compare Source

🚀 updates

🐛 bug fixes

behind the scenes

new contributors

Full Changelog: sbt/sbt@v1.12.15...v1.13.0

v1.12.15: 1.12.15

Compare Source

Remote code execution vulnerability fix

sbt team received a security report GHSA-m2pw-22cj-jq4v from @​arpitjain099 that when the serverConnectionType is set to Tcp, an attacker is able to execute arbitrary code remotely via the sbt server. sbt 1.12.15 and 2.0.6 fix this bug.

We recommend removing the serverConnectionType setting, or upgrading to a patched version or later:

Global / serverConnectionType := ConnectionType.Tcp

The remediation was implemented by @​eed3si9n and @​anatoliykmetyuk.

🐛 bug fixes
behind the scenes

Full Changelog: sbt/sbt@v1.12.14...v1.12.15

v1.12.14: 1.12.14

Compare Source

🐛 bug fixes

updates

behind the scenes

Full Changelog: sbt/sbt@v1.12.13...v1.12.14

v1.12.13: 1.12.13

Compare Source

🐛 bug fixes

Full Changelog: sbt/sbt@v1.12.12...v1.12.13

v1.12.12: 1.12.12

Compare Source

bug fixes

behind the scenes

Full Changelog: sbt/sbt@v1.12.11...v1.12.12

v1.12.11: 1.12.11

Compare Source

bug fix

Full Changelog: sbt/sbt@v1.12.10...v1.12.11

v1.12.10: 1.12.10

Compare Source

updates

🐛 bug fixes

behind the scenes

new contributors

Full Changelog: sbt/sbt@v1.12.9...v1.12.10

v1.12.9: 1.12.9

Compare Source

Updates

Full Changelog: sbt/sbt@v1.12.8...v1.12.9

v1.12.8: 1.12.8

Compare Source

updates

behind the scenes

Full Changelog: sbt/sbt@v1.12.7...v1.12.8

v1.12.7: 1.12.7

Compare Source

CVE-2026-32948 Source dependency feature (via crafted VCS URL) leading to arbitrary code execution on Windows

sbt 1.12.7 fixes CVE-2026-32948 (GHSA-x4ff-q6h8-v7gw). Recently @​anatoliykmetyuk at Scala Center discovered a vulnerability in sbt's source dependency feature ProjectRef(...) and RootProject(...). The URL for the version control system allows branch specification via the URL fragment, which is passed to Windows cmd shell. A malicious user can craft an URL that allows arbitrary code execution.

Anatolii also provided a fix from a private fork 1ce945 and 3a474a. We recommend upgrading to sbt 1.12.7, especially if you're on Windows.

updates

Full Changelog: sbt/sbt@v1.12.6...v1.12.7

v1.12.6: 1.12.6

Compare Source

updates

Full Changelog: sbt/sbt@v1.12.5...v1.12.6

v1.12.5: 1.12.5

Compare Source

updates

🐛 bug fixes

Full Changelog: sbt/sbt@v1.12.4...v1.12.5

v1.12.4: 1.12.4

Compare Source

  • backport: Respect scalaOrganization in compiler bridge resolution by @​tanishiking in #​8799
  • backport: Fixes .jvmopts parse error on Windows Git Bash by reverting "Handle JVM parameters with spaces in dot files" by @​eed3si9n in #​8798

Full Changelog: sbt/sbt@v1.12.3...v1.12.4

v1.12.3: 1.12.3

Compare Source

updates

Full Changelog: sbt/sbt@v1.12.2...v1.12.3

v1.12.2: 1.12.2

Compare Source

updates

Full Changelog: sbt/sbt@v1.12.1...v1.12.2

v1.12.1: 1.12.1

Compare Source

bug fixes

behind the scenes

Full Changelog: sbt/sbt@v1.12.0...v1.12.1

v1.12.0: 1.12.0

Compare Source

changes with compatibility implications

  • dependencyTree displays internal config, which includes Provided by @​eed3si9n in #​8359
  • Scaladoc now requires Compile / doc / compilers scoped to doc task

🚀 updates

🐛 bug fixes

behind the scenes

new contributors

Full Changelog: sbt/sbt@v1.11.7...v1.12.0

v1.11.7: 1.11.7

Compare Source

🚀 updates
🐛 bug fixes
🎬 behind the scenes

Full Changelog: sbt/sbt@v1.11.6...v1.11.7

v1.11.6: 1.11.6

Compare Source

🚀 sbt launcher 1.5.0
🐛 bug fixes
🎬 behind the scene

Full Changelog: sbt/sbt@v1.11.5...v1.11.6

v1.11.5: 1.11.5

Compare Source

changes with compatibility implications
  • sbtn is built using ubuntu-22.04 image, which will require similar Linux version with glibc 2.32 and above.
🚀 features and other updates
  • Adds Scala 3.8.0 support. See below
  • Adds Scala Nightly repository resolver. See below
  • Adds --jvm-client to the sbt runner script to launch JVM client. See below
  • Central Repository publishing: Shows validation errors if present by @​unkarjedy in #​8191
  • Central Repository publishing: Includes the root subproject name into the deployment by @​jeanmarc in #​8219
  • Reduces sbtn outputs by @​eed3si9n in #​8234
Scala Nightly repository

Scala Team now publishes nightlies to a dedicated Artifactory instance. sbt 1.11.5 adds a new resolver for this:

resolvers += Resolver.scalaNightlyRepository

ThisBuild / scalaVersion := "3.8.0-RC1-bin-20250823-712d5bc-NIGHTLY"
Compile / scalacOptions += "-language:experimental.captureChecking"

This was contributed by @​hamzaremmal in sbt/librarymanagement#532

Scala 3.8.0 support

Scala 3.8.0 will in-source the Scala standard library (scala-library) instead of using one from Scala 2.13. sbt 1.11.5 relaxes the Coursier same-version enforcement to support Scala 3.8.0.

This was pair programmed by @​hamzaremmal + @​eed3si9n during Scala Days 2025 as #​8226

sbt --jvm-client

sbt 1.11.5 runner script adds new --jvm-client flag to launch the JVM version of the thin client. The implementation is the Scala code which sbtn is based on. This will be useful on platforms or CPU architectures that we do not build sbtn.

This was contributed by @​eed3si9n in #​8232

🎬 behind the scene
new contributors

Full Changelog: sbt/sbt@v1.11.4...v1.11.5

v1.11.4: 1.11.4

Compare Source

Updates

Full Changelog: sbt/sbt@v1.11.3...v1.11.4

v1.11.3: 1.11.3

Compare Source

updates

  • Adds sonaUploadRequestTimeout setting to configure the upload timeout when publishing to the Central Repo by @​guizmaii in #​8171
  • fix: Adds support for pluginCrossBuild/sbtBinaryVersion "1.3", which is used by IntelliJ Scala plugin (fixes #​8166) by @​unkarjedy in #​8167
  • fix: Fixes the import order to satisfy SemanticDB by @​inglor in #​8162

new contributors

Full Changelog: sbt/sbt@v1.11.2...v1.11.3

v1.11.2: 1.11.2

Compare Source

updates

Full Changelog: sbt/sbt@v1.11.1...v1.11.2

v1.11.1: 1.11.1

Compare Source

updates

behind the scene

Full Changelog: sbt/sbt@v1.11.0...v1.11.1

v1.11.0: 1.11.0

Compare Source

Central Repository publishing

The Central Repository (aka Maven Central) has long been the pillar of the JVM ecosystem including Scala. The mechanism to publish libraries to the Central has been hosted by Sonatype as OSS Repository Hosting (OSSRH) via HTTP PUT, but in March it was announced that the endpoint will be sunset in June 2025 in favor of the Central Portal at https://central.sonatype.com/.

sbt 1.11.0 implements a built-in support to publish to Central Repository via the Central Portal. To publish to the Central Portal, first set ThisBuild / publishTo setting to the localStaging repository:

ThisBuild / publishTo := {
  val centralSnapshots = "https://central.sonatype.com/repository/maven-snapshots/"
  if (isSnapshot.value) Some("central-snapshots" at centralSnapshots)
  else localStaging.value
}

Add credentials to the host central.sonatype.com using the generated user token user name and password. sbt 1.11.0 will read from the environment variables SONATYPE_USERNAME and SONATYPE_PASSWORD and append a credential for central.sonatype.com out-of-box, which might be useful for automatic publishing from the CI environment, such as GitHub Actions.

- run: sbt ci-release
  env:
    PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
    PGP_SECRET: ${{ secrets.PGP_SECRET }}
    SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
    SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}

When you're ready to publish, call publishSigned task (available via sbt-pgp). At this point, the JARs and POM files will be staged to your local target/sona-staging directory.

Next, call sonaUpload to upload to the Central Portal and manually release the bundle, or call sonaRelease to upload and automatically release to the Central Repository.

This was contributed by @​eed3si9n in #​8126. The feature was inspired by sbt-sonatype workflow pioneered by Taro Saito, and sonatype-central-client spearheaded by David Doyle at Lumidion.

Other updates

Full Changelog: sbt/sbt@v1.10.11...v1.11.0

v1.10.11: 1.10.11

Compare Source

updates

🐛 bug fixes

Full Changelog: sbt/sbt@v1.10.10...v1.10.11

v1.10.10: 1.10.10

Compare Source

🐛 bug fixes

  • fix: Fixes compilation error causing the compilation to retry ten times by @​eed3si9n in #​8054

Full Changelog: sbt/sbt@v1.10.9...v1.10.10

v1.10.9: 1.10.9

Compare Source

🚀 features and other updates

🐛 bug fixes

🎬 behind the scene

new contributors

Full Changelog: sbt/sbt@v1.10.7...v1.10.9

v1.10.8: 1.10.8

Compare Source

sbt 1.10.8 is dead on arrival, please use 1.10.9 when it comes out.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.10.9 chore(deps): update dependency sbt/sbt to v1.10.10 Mar 4, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 9a6d64b to 35802a9 Compare March 4, 2025 10:20
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.10.10 chore(deps): update dependency sbt/sbt to v1.10.11 Mar 17, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 35802a9 to ef5f131 Compare March 17, 2025 06:26
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.10.11 chore(deps): update dependency sbt/sbt to v1.11.0 May 24, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from ef5f131 to f9f9805 Compare May 24, 2025 09:42
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.11.0 chore(deps): update dependency sbt/sbt to v1.11.1 Jun 2, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch 2 times, most recently from 36394f2 to d5ec3c9 Compare June 7, 2025 22:11
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.11.1 chore(deps): update dependency sbt/sbt to v1.11.2 Jun 7, 2025
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.11.2 chore(deps): update dependency sbt/sbt to v1.11.3 Jul 6, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from d5ec3c9 to 907b711 Compare July 6, 2025 01:44
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.11.3 chore(deps): update dependency sbt/sbt to v1.11.4 Aug 7, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 907b711 to 8e8a324 Compare August 7, 2025 11:42
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.11.4 chore(deps): update dependency sbt/sbt to v1.11.5 Aug 24, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 8e8a324 to 4da2a34 Compare August 24, 2025 20:58
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.11.5 chore(deps): update dependency sbt/sbt to v1.11.6 Sep 7, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 4da2a34 to e0ec98e Compare September 7, 2025 00:50
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.11.6 chore(deps): update dependency sbt/sbt to v1.11.7 Oct 5, 2025
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from e0ec98e to b1f07bd Compare October 5, 2025 20:34
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from b1f07bd to 8f7bb90 Compare January 5, 2026 03:02
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.11.7 chore(deps): update dependency sbt/sbt to v1.12.0 Jan 5, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 8f7bb90 to b0cbbde Compare January 26, 2026 12:41
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.0 chore(deps): update dependency sbt/sbt to v1.12.1 Jan 26, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from b0cbbde to ec629ee Compare February 4, 2026 09:14
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.1 chore(deps): update dependency sbt/sbt to v1.12.2 Feb 4, 2026
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.2 chore(deps): update dependency sbt/sbt to v1.12.3 Feb 15, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from ec629ee to bb38ce1 Compare February 15, 2026 02:08
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.3 chore(deps): update dependency sbt/sbt to v1.12.4 Feb 23, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from bb38ce1 to 9e0da87 Compare February 23, 2026 10:04
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.4 chore(deps): update dependency sbt/sbt to v1.12.5 Mar 2, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 9e0da87 to cb460e5 Compare March 2, 2026 00:38
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.5 chore(deps): update dependency sbt/sbt to v1.12.6 Mar 16, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from cb460e5 to 8e21933 Compare March 16, 2026 05:02
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 8e21933 to b168e34 Compare March 24, 2026 01:52
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.6 chore(deps): update dependency sbt/sbt to v1.12.7 Mar 24, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from b168e34 to 38551e3 Compare March 25, 2026 04:47
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.7 chore(deps): update dependency sbt/sbt to v1.12.8 Mar 25, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 38551e3 to 74a2e35 Compare April 7, 2026 05:30
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.8 chore(deps): update dependency sbt/sbt to v1.12.9 Apr 7, 2026
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.9 chore(deps): update dependency sbt/sbt to v1.12.10 Apr 27, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch 2 times, most recently from 23ec0a9 to 6d179ae Compare May 2, 2026 21:03
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.10 chore(deps): update dependency sbt/sbt to v1.12.11 May 2, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 6d179ae to 3424539 Compare June 14, 2026 15:58
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.11 chore(deps): update dependency sbt/sbt to v1.12.12 Jun 14, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 3424539 to fc5c171 Compare June 22, 2026 00:29
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.12 chore(deps): update dependency sbt/sbt to v1.12.13 Jun 22, 2026
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.13 chore(deps): update dependency sbt/sbt to v1.12.14 Jul 18, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from fc5c171 to ce97702 Compare July 18, 2026 11:05
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from ce97702 to 3b152d5 Compare August 7, 2026 03:52
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.14 chore(deps): update dependency sbt/sbt to v1.12.15 Aug 7, 2026
@renovate
renovate Bot force-pushed the renovate/sbt-sbt-1.x branch from 3b152d5 to 6396407 Compare August 22, 2026 08:01
@renovate renovate Bot changed the title chore(deps): update dependency sbt/sbt to v1.12.15 chore(deps): update dependency sbt/sbt to v1.13.0 Aug 22, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants