mirror of https://github.com/apache/cassandra
Update bundled driver dependencies
This commit updates that bundled java and python drivers to their latest released versions, 3.11.0 and 3.25.0 respectively. Patch by Sam Tunnicliffe and Adam Holmberg; reviewed by Brandon Williams for CASSANDRA-13951 Co-authored-by: Adam Holmberg <adam.holmberg@datastax.com>
This commit is contained in:
parent
86a3cfe2fa
commit
1371883db3
|
|
@ -1,4 +1,5 @@
|
|||
4.0-beta5
|
||||
* Update bundled java and python drivers to 3.11.0 and 3.25.0 respectively (CASSANDRA-13951)
|
||||
* Add io.netty.tryReflectionSetAccessible=true to j11 server options in order to enable netty to use Unsafe direct byte buffer construction (CASSANDRA-16493)
|
||||
* Make cassandra-stress -node support host:port notation (CASSANDRA-16529)
|
||||
* Better handle legacy gossip application states during (and after) upgrades (CASSANDRA-16525)
|
||||
|
|
|
|||
10
build.xml
10
build.xml
|
|
@ -649,15 +649,13 @@
|
|||
</dependency>
|
||||
<dependency groupId="com.google.code.findbugs" artifactId="jsr305" version="2.0.2" />
|
||||
<dependency groupId="com.clearspring.analytics" artifactId="stream" version="2.5.2" />
|
||||
<!-- UPDATE AND UNCOMMENT ON THE DRIVER RELEASE, BEFORE 4.0 RELEASE
|
||||
<dependency groupId="com.datastax.cassandra" artifactId="cassandra-driver-core" version="3.10.0" classifier="shaded">
|
||||
<dependency groupId="com.datastax.cassandra" artifactId="cassandra-driver-core" version="3.11.0" classifier="shaded">
|
||||
<exclusion groupId="io.netty" artifactId="netty-buffer"/>
|
||||
<exclusion groupId="io.netty" artifactId="netty-codec"/>
|
||||
<exclusion groupId="io.netty" artifactId="netty-handler"/>
|
||||
<exclusion groupId="io.netty" artifactId="netty-transport"/>
|
||||
<exclusion groupId="org.slf4j" artifactId="slf4j-api"/>
|
||||
</dependency>
|
||||
-->
|
||||
<dependency groupId="org.eclipse.jdt.core.compiler" artifactId="ecj" version="${ecj.version}" />
|
||||
<dependency groupId="org.caffinitas.ohc" artifactId="ohc-core" version="${ohc.version}">
|
||||
<exclusion groupId="org.slf4j" artifactId="slf4j-api"/>
|
||||
|
|
@ -753,9 +751,7 @@
|
|||
<dependency groupId="org.apache.hadoop" artifactId="hadoop-minicluster"/>
|
||||
<dependency groupId="com.google.code.findbugs" artifactId="jsr305"/>
|
||||
<dependency groupId="org.antlr" artifactId="antlr"/>
|
||||
<!-- UPDATE AND UNCOMMENT ON THE DRIVER RELEASE, BEFORE 4.0 RELEASE
|
||||
<dependency groupId="com.datastax.cassandra" artifactId="cassandra-driver-core" classifier="shaded"/>
|
||||
-->
|
||||
<dependency groupId="org.eclipse.jdt.core.compiler" artifactId="ecj"/>
|
||||
<dependency groupId="org.caffinitas.ohc" artifactId="ohc-core"/>
|
||||
<dependency groupId="org.caffinitas.ohc" artifactId="ohc-core-j8"/>
|
||||
|
|
@ -786,9 +782,7 @@
|
|||
<dependency groupId="junit" artifactId="junit"/>
|
||||
<dependency groupId="org.mockito" artifactId="mockito-core" />
|
||||
<dependency groupId="org.reflections" artifactId="reflections" />
|
||||
<!-- UPDATE AND UNCOMMENT ON THE DRIVER RELEASE, BEFORE 4.0 RELEASE
|
||||
<dependency groupId="com.datastax.cassandra" artifactId="cassandra-driver-core" classifier="shaded"/>
|
||||
-->
|
||||
<dependency groupId="io.netty" artifactId="netty-bom" type="pom" />
|
||||
<dependency groupId="io.netty" artifactId="netty-all"/>
|
||||
<dependency groupId="org.eclipse.jdt.core.compiler" artifactId="ecj"/>
|
||||
|
|
@ -865,14 +859,12 @@
|
|||
<dependency groupId="org.apache.hadoop" artifactId="hadoop-minicluster" optional="true"/>
|
||||
|
||||
<!-- don't need the Java Driver to run, but if you use the hadoop stuff or UDFs -->
|
||||
<!-- UPDATE AND UNCOMMENT ON THE DRIVER RELEASE, BEFORE 4.0 RELEASE
|
||||
<dependency groupId="com.datastax.cassandra" artifactId="cassandra-driver-core" classifier="shaded" optional="true">
|
||||
<exclusion groupId="io.netty" artifactId="netty-buffer"/>
|
||||
<exclusion groupId="io.netty" artifactId="netty-codec"/>
|
||||
<exclusion groupId="io.netty" artifactId="netty-handler"/>
|
||||
<exclusion groupId="io.netty" artifactId="netty-transport"/>
|
||||
</dependency>
|
||||
-->
|
||||
<!-- don't need jna to run, but nice to have -->
|
||||
<dependency groupId="net.java.dev.jna" artifactId="jna"/>
|
||||
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue