64 Followers
2 Following
70 Posts
sbt is a simple build tool for #Scala, #Java, and more.
websitehttps://www.scala-sbt.org/
Release 0.30.0 · sbt/sbt-github-actions

sbt-github-actions 0.30.0 is cross published to: sbt Version Published 1.x ✅ 2.x ✅ About sbt-github-actions sbt-github-actions is an sbt plugin, originally developed by Daniel Spiewak i...

GitHub

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

Caching - The Book of sbt

'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

Last mile towards sbt 2

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

Release 0.1.3 · sbt/sbt-nocomma

sbt-nocomma 0.1.3 is cross published to: sbt Version Published 1.x ✅ 2.x ✅ about sbt-nocomma sbt-nocomma is an sbt plugin to reduce commas from your build.sbt. behind the scenes doc: U...

GitHub

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

Release 0.11.0 · sbt/sbt-java-formatter

sbt-java-formatter 0.11.0 is cross published to: sbt Version Published 1.x ✅ 2.x ✅ sbt 2.x migration sbt 2.0.0-RC10 by @xuwei-k in #253 refactor: Add using clause by @xuwei-k in #234 ...

GitHub

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

Fixing a Command Injection Vulnerability in sbt

During our ongoing work on sbt 2, we discovered and fixed a command injection vulnerability affecting sbt on Windows.