Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,16 @@ follow semantic versioning; release dates are ISO 8601.
full-height column fills are unchanged. Adds top-/bottom-/mid-band
regression tests.

### Build

- **`byte-buddy` is now `<scope>test</scope>`.** Mockito already excludes
its transitive `byte-buddy` and the project pins a single version in a
standalone dependency; that dependency was missing a scope, so the
published POM advertised `byte-buddy` as a compile dependency even
though no production code references it. Setting `<scope>test</scope>`
keeps the version pin but keeps `byte-buddy` out of consumers' runtime
classpath (`mvn dependency:tree` shows it only as `:test`).

## v1.6.4 — 2026-05-22

Bug fix + structured-block patch. Adds two new public Block types —
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>${byteBuddy.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
Expand Down