forked from apache/cassandra-java-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclirr-ignores.xml
32 lines (26 loc) · 1.38 KB
/
clirr-ignores.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!--
Clirr is a tool that checks Java libraries for binary and source compatibility with older releases.
This file lists known (and accepted) differences with the reference version specified in pom.xml.
To update this file:
* run `mvn clirr:clirr` at the root directory
* check the reports in `<module>/target/site/clirr-report.html`
* add new differences if needed. Difference types are explained at http://www.mojohaus.org/clirr-maven-plugin/examples/ignored-differences.html
-->
<differences>
<difference>
<differenceType>6006</differenceType> <!-- field now final -->
<className>com/datastax/driver/core/ProtocolVersion</className>
<field>NEWEST_SUPPORTED</field>
<justification>This was an oversight, this field was never intended to be non final</justification>
</difference>
<difference>
<differenceType>8001</differenceType> <!-- class removed -->
<className>com/datastax/driver/core/schemabuilder/ColumnType$NativeColumnType</className>
<justification>This class was accidentally exposed, it was meant to be package-private</justification>
</difference>
<difference>
<differenceType>1001</differenceType> <!-- decreased visibility -->
<className>com/datastax/driver/core/HostConnectionPool$Phase</className>
<justification>False positive: HostConnectionPool is not exposed to clients</justification>
</difference>
</differences>