https://github.com/sbt/sbt-github-actions/releases/tag/v0.30.0 #Scala
| website | https://www.scala-sbt.org/ |
underbake (v.), underbaked, underbaking
When a cached task fails to invalidate because of insufficient inputs, leading to invalid result, we can say that the task is *underbaked*. In the context of incremental compilation, we call it *under-compilation*.
For example, we can say that mixing `@transient` keys into a cached task could potentially lead to underbaking.
https://www.scala-sbt.org/2.x/docs/en/concepts/caching.html#underbaking
RE: https://mastodon.social/@eed3si9n/116507067963837710
sbt 1.12.11 is released
RE: https://mastodon.social/@eed3si9n/116475337734207055
sbt 1.12.10 is released
'Last mile towards sbt 2'
A quick status report on where we are at
https://www.scala-lang.org/blog/2026/04/14/last-mile-towards-sbt2.html #Scala
RE: https://mastodon.social/@eed3si9n/116396335924961034
released sbt 2.0.0-RC12!
RE: https://mastodon.social/@eed3si9n/116361854076616567
released sbt 2.0.0-RC11 and 1.12.9!
cross published sbt-nocomma 0.1.3 to sbt 1.x and 2.x, using sbt 2.0.0-R10
sbt-nocomma is a stupid plugin that I made in 2018 that implements comma inference in build.sbt as follows:
```
lazy val root = rootProject
.settings(nocomma {
name := "foo"
scalaVersion := "3.8.2"
libraryDependencies += toolkit
})
```
https://github.com/sbt/sbt-nocomma/releases/tag/v0.1.3
https://eed3si9n.com/removing-commas-with-sbt-nocomma/ #Scala
cross published sbt-java-formatter 0.11.0 to sbt 1.x and 2.x
sbt-java-formatter, originally written by Björn Antonsson, lets you format your Java code
https://github.com/sbt/sbt-java-formatter/releases/tag/v0.11.0 #Scala
We've discovered and fixed a long-standing security vulnerability in sbt involving command injection on Windows - read more in the blog article:
https://www.scala-lang.org/blog/2026/03/31/sbt-security-advisory.html