Update dependency sbt/sbt to v1.11.5 #44
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.7.1
->1.11.5
Release Notes
sbt/sbt (sbt/sbt)
v1.11.5
: 1.11.5Compare Source
changes with compatibility implications
ubuntu-22.04
image, which will require similar Linux version with glibc 2.32 and above.🚀 features and other updates
--jvm-client
to thesbt
runner script to launch JVM client by @eed3si9n in #8232Scala Nightly repository
Scala Team now publishes nightlies to a dedicated Artifactory instance. sbt 1.11.5 adds a new resolver for this:
This was contributed by @hamzaremmal in sbt/librarymanagement#532
🎬 behind the scene
new contributors
Full Changelog: sbt/sbt@v1.11.4...v1.11.5
v1.11.4
: 1.11.4Compare Source
Updates
sonaUploadRequestTimeout
by scoping globally by @eed3si9n in #8190Full Changelog: sbt/sbt@v1.11.3...v1.11.4
v1.11.3
: 1.11.3Compare Source
updates
sonaUploadRequestTimeout
setting to configure the upload timeout when publishing to the Central Repo by @guizmaii in #8171pluginCrossBuild/sbtBinaryVersion
"1.3", which is used by IntelliJ Scala plugin (fixes #8166) by @unkarjedy in #8167new contributors
Full Changelog: sbt/sbt@v1.11.2...v1.11.3
v1.11.2
: 1.11.2Compare Source
updates
update
task by reverting the use ofWeakReference
s by @mrdziuban in coursier/sbt-coursier#564Resolver.sonatypeCentralSnapshots
,Resolver.sonatypeCentralRepo(...)
and deprecatesResolver.sonatypeOssRepos(...)
,Opts.resolver.sonatypeOssReleases
,Opts.resolver.sonatypeOssSnapshots
, etc by @eed3si9n in sbt/librarymanagement#517 / #8156Full Changelog: sbt/sbt@v1.11.1...v1.11.2
v1.11.1
: 1.11.1Compare Source
updates
update
task by @mrdziuban in coursier/sbt-coursier#563sbtPluginPublishLegacyMavenStyle
to false by @eed3si9n in #8148sonaDeploymentName
toexcludeLintKeys
by @rtyley in #8143behind the scene
Full Changelog: sbt/sbt@v1.11.0...v1.11.1
v1.11.0
: 1.11.0Compare 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 thelocalStaging
repository:Add
credentials
to the hostcentral.sonatype.com
using the generated user token user name and password. sbt 1.11.0 will read from the environment variablesSONATYPE_USERNAME
andSONATYPE_PASSWORD
and append a credential forcentral.sonatype.com
out-of-box, which might be useful for automatic publishing from the CI environment, such as GitHub Actions.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 localtarget/sona-staging
directory.Next, call
sonaUpload
to upload to the Central Portal and manually release the bundle, or callsonaRelease
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
testQuick
) with companion objects by @eed3si9n in #8087Full Changelog: sbt/sbt@v1.10.11...v1.11.0
v1.10.11
: 1.10.11Compare Source
updates
🐛 bug fixes
compile
task retrying itself on compiler crashes by @eed3si9n in #8070sbt --client shutdown
shortcuts if the server is not already running by @eed3si9n in #8057sbt --client
on Windows by @eed3si9n in #8071sbt --version
by @eed3si9n in #8066Full Changelog: sbt/sbt@v1.10.10...v1.10.11
v1.10.10
: 1.10.10Compare Source
🐛 bug fixes
Full Changelog: sbt/sbt@v1.10.9...v1.10.10
v1.10.9
: 1.10.9Compare Source
🚀 features and other updates
allowUnsafeScalaLibUpgrade
setting to opt-out of the Scala 2.13 compatibility check (SIP-51) by @lrytz in #8012jvmBuildTarget
forworkspace/buildTargets
by @Friendseeker in #7913🐛 bug fixes
Compile / clean
,Test / clean
by @Friendseeker in #7969previousCompile
by @Friendseeker in #7983sbt init
by @eed3si9n in #8049🎬 behind the scene
new contributors
Full Changelog: sbt/sbt@v1.10.7...v1.10.9
v1.10.8
: 1.10.8Compare Source
sbt 1.10.8 is dead on arrival, please use 1.10.9 when it comes out.
v1.10.7
: 1.10.7Compare Source
🚀 features and other updates
--allow-empty
by @eed3si9n in #7966Build directory detection
Starting 1.10.7, the
sbt
runner script enables build directory detection by default. This means that thesbt
will exit with error when launched in a directory withoutbuild.sbt
orproject/
, with exceptions ofsbt new
,sbt --script-version
etc.To override this behavior temporarily, you can use
--allow-empty
flag. To permanently opt out of the build directory detection, create$XDG_CONFIG_HOME/sbt/sbtopts
with--allow-empty
in it.csrMavenDependencyOverride setting
sbt 1.10.7 updates Coursier from 2.1.19 → 2.1.22. sbt 1.10.7 also adds a new setting
csrMavenDependencyOverride
(default:false
), which controls the resolution, which respects Maven dependency override mechanism, also known as bill-of-materials (BOM) POM. Since there is a performance regression in the new resolver, we are setting the default tofalse
.🐛 bug fixes
csrMavenDependencyOverride
to opt into bill-of-material (BOM) respecting Coursier resolution by @eed3si9n in #79709a88bc4
and Jansi to 2.4.1, which fixes crash on Windows on ARM by @Friendseeker in #7952🎬 behind the scene
1.10.7
by @Friendseeker in #7957Full Changelog: sbt/sbt@v1.10.6...v1.10.7
v1.10.6
: 1.10.6Compare Source
change with compatibility implication
bug fixes and updates
run
task due to bgRun delegation by @Friendseeker in #7916sbt --client
support on openSUSE by @Androz2091 in #7895dependencyTree
console output by @Friendseeker in #7906java.awt.Desktop.browse()
duringdependencyBrowseTree
by @Friendseeker in #7905useConsistent
tostaticCachedStore
by @Friendseeker in #7869ConsistentAnalysisFormat
by @Friendseeker in sbt/zinc#1479clean
clearspreviousCompile
by @Friendseeker in sbt/zinc#1487 / #7922behind the scene
org.fusesource.jansi
by @Friendseeker in #78761.10.6
by @Friendseeker in #78718
by @Friendseeker in #7897sbt.TagsTest
by @Friendseeker in #7919loading settings for project
by @Friendseeker in #7909dependencyBrowseGraphTarget
,dependencyBrowseTreeTarget
by @Friendseeker in #7904new contributors
Full Changelog: sbt/sbt@v1.10.5...v1.10.6
v1.10.5
: 1.10.5Compare Source
updates
1
when on error by @Friendseeker in #7854++
with a command argument with slash by @eed3si9n in #7862behind the scene
System.console == null
by @Friendseeker in #78431.10.5
by @Friendseeker in #7840Full Changelog: sbt/sbt@v1.10.4...v1.10.5
v1.10.4
: 1.10.4Compare Source
updates and bug fixes
sbt new
fails to find template by @Friendseeker in #7835~
withGlobal / onChangedBuildSource := ReloadOnSourceChanges
by @Friendseeker in #7838behind the scene
DEVELOPING.md
by @Friendseeker in #7784TEST_SBT_VER
to 1.10.3 & remove unused CI variables by @Friendseeker in #7825.java-version
to not fix java version to 1.8 by @Friendseeker in #78273.27.1
by @Friendseeker in #7829Full Changelog: sbt/sbt@v1.10.3...v1.10.4
v1.10.3
: 1.10.3Compare Source
Protobuf with potential Denial of Service (CVE-2024-7254)
sbt 1.10.3 updates protobuf-java library to 3.25.5 to address CVE-2024-7254 / GHSA-735f-pc8j-v9w8, which states that while parsing unknown fields in the Protobuf Java library, a maliciously crafted message can cause a StackOverflow error. Given the nature of how Protobuf is used in Zinc as internal serialization, we think the impact of this issue is minimum. However, security software might still flag this to be an issue while using sbt or Zinc, so upgrade is advised. This issue was originally reported by @gabrieljones and was fixed by Jerry Tan (@Friendseeker) in zinc#1443.
@adpi2 at Scala Center has also configured dependency graph submission to get security alerts in zinc#1448. sbt/sbt was configured by @Friendseeker in #7746.
Reverting the invalidation of circular-dependent sources
sbt 1.10.3 reverts the initial invalidation of circular-dependent Scala source pairs.
There had been a series of incremental compiler bugs such as "Invalid superClass" and "value b is not a member of A" that would go away after
clean
. The root cause of these bugs were identified by @smarter (sbt/zinc#598 (comment)) and @Friendseeker to be partial compilation of circular-dependent sources where two sourcesA.scala
andB.scala
use some constructs from each other.sbt 1.10.0 fixed this issue via sbt/zinc#1284 by invalidating the circular-dependent pairs together. In other words, if
A.scala
was changed, it would immediately invalidateB.scala
. It turns out, that people have been writing circular-dependent code, and this has resulted in multiple reports of Zinc's over-compilation (zinc#1420, zinc#1461). Given that the invalidation seems to affect the users more frequently than the original bug, we're going to revert the fix for now. We might bring this back with an opt-out flag later on. The revert was contributed by by Li Haoyi (@lihaoyi) in sbt/zinc#1462.Improvement: ParallelGzipOutputStream
sbt 1.10.0 via sbt/zinc#1326 added a new consistent (repeatable) formats for Analysis storage. As a minor optimization, the pull request also included an implementation of
ParallelGzipOutputStream
, which would reduce the generate file size by 20%, but with little time penalty. Unfortunately, however, we have observed in CI that that thescala.concurrent.Future
-based implementation gets stuck in a deadlock. @Ichoran and @Friendseeker have contributed an alternative implementation that uses Java threads directly, which fixes the issue in sbt/zinc#1466.bug fixes and updates
sbt init
template deps by @xuwei-k in #7730behind the scene
System.runFinalization
by @Friendseeker in #7732Thread.getId
by @Friendseeker in #7733vscode-sbt-scala
from build.sbt by @Friendseeker in #7728Full Changelog: sbt/sbt@v1.10.2...v1.10.3
v1.10.2
: 1.10.2Compare Source
Changes with compatibility implications
_sbt2_3
suffix for sbt 2.x by @eed3si9n in #7671Updates and bug fixes
serverIdleTimeOut
toserverIdleTimeout
to match the variable name by @lervag in #7651scala.reflect.io.Streamable
by @rochala in sbt/zinc#1395Optional
inter-project dependency in BSP by @adpi2 in #7568build.properties
by @invadergir in #7585scala-tools-releases
inrepositories
file blocking sbt from launching by @eed3si9n in sbt/launcher#104ThreadDeath
for future JDK compatibility by @xuwei-k in #7652ZipError
for future JDK compatibility by @eed3si9n in sbt/zinc#1393Behind the scenes
dependency-management/force-update-period
test (backport of #7538) by @adpi2 in #7567New contributors
Full Changelog: sbt/sbt@v1.10.0...v1.10.2
v1.10.1
: 1.10.1Compare Source
bug fixes and updates
expandMavenSettings
by @desbo in sbt/librarymanagement#444Map
andLList
in sjson-new 0.10.1 by @steinybot + @eed3si9n in eed3si9n/sjson-new#142forceUpdatePeriod
by @adpi2 in #7567Optional
inter-project dependencies by @adpi2 in #7568jcenter
andscala-tools-releases
entries in the~/.sbt/repositories
file by @eed3si9n in sbt/launcher#104behind the scenes
Full Changelog: sbt/sbt@v1.10.0...v1.10.1
v1.10.0
: 1.10.0Compare Source
Changes with compatibility implications
scalaVersion
can no longer be a lower 2.13.x version number than its transitive depdencies. See below for details.SIP-51 Support for Scala 2.13 Evolution
Modern Scala 2.x has kept both forward and backward binary compatibility so a library compiled using Scala 2.13.12 can be used by an application compiled with Scala 2.13.11 etc, and vice versa. The forward compatibility restricts Scala 2.x from evolving during the patch releases, so in SIP-51 Lukas Rytz at Lightbend Scala Team proposed:
Lukas has also contributed changes to sbt 1.10.0 to enforce stricter
scalaVersion
. Starting sbt 1.10.0, when a Scala 2.13.x patch version newer thanscalaVersion
is found, it will fail the build as follows:When you see the error message like above, you can fix this by updating the Scala version to the suggested version (e.g. 2.13.10):
Side note: Old timers might know that sbt 0.13.0 also introduced the idea of scala-library as a normal dependency. This created various confusions as developers expected
scalaVersion
, compiler version, and scala-library version as expected to align. With the hindsight, sbt 1.10.0 will continue to respectscalaVersion
to be the source-of-truth, but will reject bad ones at build time.This was contributed by Lukas Rytz in #7480.
Zinc fixes
IncOptions.useOptimizedSealed
not working for Scala 2.13 by @Friendseeker in zinc#1278ClassTag
instead ofManifest
by @xuwei-k in zinc#1265extraHash
to propagateTraitPrivateMembersModified
across external dependency by @Friendseeker in zinc#1289extraHash
computation by @Friendseeker in zinc#1290@inline
methods in Scala 2.x by @Friendseeker in zinc#1310-Xshow-phases
handling by @Friendseeker in zinc#1314ConsistentAnalysisFormat: new Zinc Analysis serialization
sbt 1.10.0 adds a new Zinc serialization format that is faster and repeatable, unlike the current Protobuf-based serialization. Benchmark data based on scala-library + reflect + compiler:
Since Zinc Analysis is internal to sbt, sbt 1.10.0 will enable this format by default. The following setting can be used to opt-out:
This was contributed by Stefan Zeiger at Databricks in zinc#1326.
New CommandProgress API
sbt 1.10.0 adds a new CommandProgress API.
This was contributed by Iulian Dragos at Gradle Inc in #7350.
Other updates
java.net.URL
constructor by @xuwei-k in #7398updateSbtClassifiers
task by @azdrojowa123 in #7437packageSrc
to includemanagedSources
by @Friendseeker in #7470publisher
setting by @Tammo0987 in #7475buildTarget/javacOptions
by @adpi2 in #7352noOp
field in the compile report by @adpi2 in #7496v1.9.9
: 1.9.9Compare Source
Bug fixes
console
task on Scala 2.13.13, sbt 1.9.9 backports updates to JLine 3.24.1 and JAnsi 2.4.0 by @hvesalai in #7503 / #7502UnsatisfiedLinkError
withstat
, sbt 1.9.9 removes native code that was used to get the millisecond-precision timestamp that was broken (JDK-8177809) on JDK 8 prior to OpenJDK 8u302 by @eed3si9n in sbt/io#367Full Changelog: sbt/sbt@v1.9.8...v1.9.9
v1.9.8
: 1.9.8Compare Source
updates
IO.getModifiedOrZero
on Alpine etc, by using clibstat()
instead of non-standard__xstat64
abi by @bratkartoffel in sbt/io#362updateSbtClassifiers
not downloading sources #7437 by @azdrojowa123Full Changelog: sbt/sbt@v1.9.7...v1.9.8
v1.9.7
: 1.9.7Compare Source
Highlights
IO.unzip
. This was discovered and reported by Kenji Yoshida (@xuwei-k), and fixed by @eed3si9n in [io#360][io360].Zip Slip (arbitrary file write) vulnerability
See GHSA-h9mw-grgx-2fhf for the most up to date information. This affects all sbt versions prior to 1.9.7.
Path traversal vulnerabilty was discovered in
IO.unzip
code. This is a very common vulnerability known as Zip Slip, and was found and fixed in plexus-archiver, Ant, etc.Given a specially crafted zip or JAR file,
IO.unzip
allows writing of arbitrary file. The follow is an example of a malicious entry:When executed on some path with six levels,
IO.unzip
could then overwrite a file under/root/
. sbt main usesIO.unzip
only inpullRemoteCache
andResolvers.remote
, however, many projects useIO.unzip(...)
directly to implement custom tasks and tests.Non-determinism from AutoPlugins loading
We've known that occasionally some builds non-deterministically flip-flops its behavior when a task or a setting is set by two independent AutoPlugins, i.e. two plugins that neither depends on the other.
sbt 1.9.7 attempts to fix non-determinism of plugin loading order.
This was contributed by @eed3si9n in [#7404][7404].
Other updates and fixes
.sbtopts
support forsbt
runner script on Windows by [@ptrdom][@ptrdom] in [#7393][7393]scriptedSbt
key by @mdedetrich in [#7383][7383]dependencyBrowseTree
log by @mkurz in [#7396][7396]Configuration
📅 Schedule: 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.
This PR was generated by Mend Renovate. View the repository job log.