Skip to content

Commit

Permalink
Update readme.adoc
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Sep 9, 2024
1 parent 9b2840a commit 914375b
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,11 @@ how to either disable the breaking change with a flag or adjust your code to acc
* *Breaking Changes*


** Build file overhaul: Mill now uses `.mill` as its file extension, with some semantic changes
** Build file overhaul: Mill's build file management has been overhauled to better support
large projects. See https://mill-build.org/mill/Structuring_Large_Builds.html[Structuring Large Builds]
for details

*** Mill now uses `.mill` as its file extension, with some semantic changes
from the old `.sc` files to allow better IDE support. The `.sc` extension is still supported
and its semantics are largely unchanged the ease the migration, but you should convert your Mill
configs to `.mill` files to benefit from Mill's improved IDE experience going forward.
Expand Down Expand Up @@ -350,7 +354,7 @@ refer to parent package is no longer supported, for consistency with other progr
current behavior.

** ``RootModule``s can only be named `package`, e.g. `object foo extends RootModule` must now be
named ``object `package` extends RootModule`.
named ``object `package` extends RootModule``.

*** If you have an existing `RootModule`, you need to rename it ``object `package` extends RootModule``

Expand All @@ -361,7 +365,8 @@ which always run serially at the end {link-pr}/3265[#3265]

** Mill uses empty sandbox folders as the working directory for running its own code and
{link-pr}/3367[#3367] and test suites {link-pr}/3347[#3347], to avoid accidental interference
between tasks and tests due to parallelism
between tasks and tests due to parallelism. See https://mill-build.org/mill/Mill_Sandboxing.html[Mill Sandboxing]
for details

*** This can be disabled by adding `def testSandboxWorkingDir = false` in your test module

Expand All @@ -373,7 +378,7 @@ between tasks and tests due to parallelism
on individual parameters

** Dropped support for Java 8, Scala 2.11.x/3.1.x, and Scala-Native 0.4.x, following suit with the rest of the
com-lihaoyi ecosystem. We now expect a minimum of Java 8, Scala 2.12.x/3.2.x, and Scala-Native 0.5.x
com-lihaoyi ecosystem. We now expect a minimum of Java 11, Scala 2.12.x/3.2.x, and Scala-Native 0.5.x

** `--disable-callgraph-invalidation` is no longer supported. The flag is still accepted but is
now a no-op.
Expand Down

0 comments on commit 914375b

Please sign in to comment.