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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
run: ./mvnw -B -ntp test -pl . -P no-poi

binary-compat:
name: Binary Compatibility (japicmp vs v1.6.8)
name: Binary Compatibility (japicmp vs v1.6.9)
if: github.event_name == 'pull_request'
needs: architecture-and-documentation-guards
runs-on: ubuntu-latest
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -682,6 +682,17 @@
<includeSynthetic>false</includeSynthetic>
<reportOnlyFilename>true</reportOnlyFilename>
<skipPomModules>true</skipPomModules>
<!--
Internal layout->render handoff DTOs. These records carry
engine-internal types (TextStyle, Padding, ...) and evolve
with rendering features (e.g. ParagraphFragmentPayload gained
verticalAlign in 1.7.0). They are not part of the canonical
public API (document.api/dsl/node/style) and carry no
binary-compatibility promise, so they are excluded from the gate.
-->
<excludes>
<exclude>com.demcha.compose.document.layout.payloads</exclude>
</excludes>
</parameter>
</configuration>
</plugin>
Expand Down