Update dependency sbt/sbt to v1.10.7 #125
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.10.1->1.10.7Release Notes
sbt/sbt (sbt/sbt)
v1.10.7: 1.10.7Compare Source
🚀 features and other updates
--allow-emptyby @eed3si9n in https://github.com/sbt/sbt/pull/7966🐛 bug fixes
csrMavenDependencyOverrideto opt into bill-of-material (BOM) respecting Coursier resolution by @eed3si9n in https://github.com/sbt/sbt/pull/79709a88bc4and Jansi to 2.4.1, which fixes crash on Windows on ARM by @Friendseeker in https://github.com/sbt/sbt/pull/7952🎬 behind the scene
1.10.7by @Friendseeker in https://github.com/sbt/sbt/pull/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
runtask due to bgRun delegation by @Friendseeker in https://github.com/sbt/sbt/pull/7916sbt --clientsupport on openSUSE by @Androz2091 in https://github.com/sbt/sbt/pull/7895dependencyTreeconsole output by @Friendseeker in https://github.com/sbt/sbt/pull/7906java.awt.Desktop.browse()duringdependencyBrowseTreeby @Friendseeker in https://github.com/sbt/sbt/pull/7905useConsistenttostaticCachedStoreby @Friendseeker in https://github.com/sbt/sbt/pull/7869ConsistentAnalysisFormatby @Friendseeker in https://github.com/sbt/zinc/pull/1479cleanclearspreviousCompileby @Friendseeker in https://github.com/sbt/zinc/pull/1487 / https://github.com/sbt/sbt/pull/7922behind the scene
org.fusesource.jansiby @Friendseeker in https://github.com/sbt/sbt/pull/78761.10.6by @Friendseeker in https://github.com/sbt/sbt/pull/78718by @Friendseeker in https://github.com/sbt/sbt/pull/7897sbt.TagsTestby @Friendseeker in https://github.com/sbt/sbt/pull/7919loading settings for projectby @Friendseeker in https://github.com/sbt/sbt/pull/7909dependencyBrowseGraphTarget,dependencyBrowseTreeTargetby @Friendseeker in https://github.com/sbt/sbt/pull/7904new contributors
Full Changelog: sbt/sbt@v1.10.5...v1.10.6
v1.10.5: 1.10.5Compare Source
updates
1when on error by @Friendseeker in https://github.com/sbt/sbt/pull/7854++with a command argument with slash by @eed3si9n in https://github.com/sbt/sbt/pull/7862behind the scene
System.console == nullby @Friendseeker in https://github.com/sbt/sbt/pull/78431.10.5by @Friendseeker in https://github.com/sbt/sbt/pull/7840Full Changelog: sbt/sbt@v1.10.4...v1.10.5
v1.10.4: 1.10.4Compare Source
updates and bug fixes
sbt newfails to find template by @Friendseeker in https://github.com/sbt/sbt/pull/7835~withGlobal / onChangedBuildSource := ReloadOnSourceChangesby @Friendseeker in https://github.com/sbt/sbt/pull/7838behind the scene
DEVELOPING.mdby @Friendseeker in https://github.com/sbt/sbt/pull/7784TEST_SBT_VERto 1.10.3 & remove unused CI variables by @Friendseeker in https://github.com/sbt/sbt/pull/7825.java-versionto not fix java version to 1.8 by @Friendseeker in https://github.com/sbt/sbt/pull/78273.27.1by @Friendseeker in https://github.com/sbt/sbt/pull/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 https://github.com/sbt/sbt/pull/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 (https://github.com/sbt/zinc/issues/598#issuecomment-449028234) and @Friendseeker to be partial compilation of circular-dependent sources where two sourcesA.scalaandB.scalause some constructs from each other.sbt 1.10.0 fixed this issue via https://github.com/sbt/zinc/pull/1284 by invalidating the circular-dependent pairs together. In other words, if
A.scalawas 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 https://github.com/sbt/zinc/pull/1462.Improvement: ParallelGzipOutputStream
sbt 1.10.0 via https://github.com/sbt/zinc/pull/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 https://github.com/sbt/zinc/pull/1466.bug fixes and updates
sbt inittemplate deps by @xuwei-k in #7730behind the scene
System.runFinalizationby @Friendseeker in https://github.com/sbt/sbt/pull/7732Thread.getIdby @Friendseeker in https://github.com/sbt/sbt/pull/7733vscode-sbt-scalafrom build.sbt by @Friendseeker in https://github.com/sbt/sbt/pull/7728Full Changelog: sbt/sbt@v1.10.2...v1.10.3
v1.10.2: 1.10.2Compare Source
Changes with compatibility implications
_sbt2_3suffix for sbt 2.x by @eed3si9n in https://github.com/sbt/sbt/pull/7671Updates and bug fixes
serverIdleTimeOuttoserverIdleTimeoutto match the variable name by @lervag in https://github.com/sbt/sbt/pull/7651scala.reflect.io.Streamableby @rochala in https://github.com/sbt/zinc/pull/1395Optionalinter-project dependency in BSP by @adpi2 in https://github.com/sbt/sbt/pull/7568build.propertiesby @invadergir in https://github.com/sbt/sbt/pull/7585scala-tools-releasesinrepositoriesfile blocking sbt from launching by @eed3si9n in https://github.com/sbt/launcher/pull/104ThreadDeathfor future JDK compatibility by @xuwei-k in https://github.com/sbt/sbt/pull/7652ZipErrorfor future JDK compatibility by @eed3si9n in https://github.com/sbt/zinc/pull/1393Behind the scenes
dependency-management/force-update-periodtest (backport of #7538) by @adpi2 in https://github.com/sbt/sbt/pull/7567New contributors
Full Changelog: sbt/sbt@v1.10.0...v1.10.2
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.