-
Notifications
You must be signed in to change notification settings - Fork 33
Omnibus dependency update #515
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
9d6d5bd
12b5578
666d351
fc6e3d7
16a11a2
10e38c5
4e235d6
90c4b51
96492e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,34 +59,34 @@ | |
| make sure the resulting binary tarball contains only | ||
| required jars, and that no jar has an offending license. | ||
| --> | ||
| <driver.version>4.17.0</driver.version> | ||
| <driver.version>4.19.2</driver.version> | ||
| <reactive-streams.version>1.0.3</reactive-streams.version> | ||
| <reactor.version>2020.0.19</reactor.version> | ||
| <config.version>1.4.2</config.version> | ||
| <netty.version>4.1.94.Final</netty.version> | ||
| <netty.version>4.1.119.Final</netty.version> | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Netty version specified here matches up to what's in Java driver version 4.19.2. |
||
| <!-- Note: Caffeine 3 requires java 11 or higher --> | ||
| <caffeine.version>2.9.3</caffeine.version> | ||
| <jctools.version>3.3.0</jctools.version> | ||
| <slf4j.version>1.7.36</slf4j.version> | ||
| <logback.version>1.2.11</logback.version> | ||
| <slf4j.version>2.0.16</slf4j.version> | ||
| <logback.version>1.3.15</logback.version> | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These versions are what the Java driver will be moving to in 4.19.3... see this PR for more detail |
||
| <metrics.version>4.2.9</metrics.version> | ||
| <lz4.version>1.8.0</lz4.version> | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't we also change this? https://github.com/apache/cassandra-java-driver/blob/4.19.2/core/src/main/resources/reference.conf#L1117 |
||
| <snappy.version>1.1.7.3</snappy.version> | ||
| <snappy.version>1.1.10.8</snappy.version> | ||
| <hdr.version>2.1.12</hdr.version> | ||
| <jackson.version>2.13.3</jackson.version> | ||
| <jackson.version>2.20.1</jackson.version> | ||
| <univocity.version>2.9.1</univocity.version> | ||
| <commons-compress.version>1.21</commons-compress.version> | ||
| <compress.zstd.version>1.5.2-1</compress.zstd.version> | ||
| <commons-compress.version>1.28.0</commons-compress.version> | ||
| <compress.zstd.version>1.5.7-6</compress.zstd.version> | ||
| <compress.xz.version>1.9</compress.xz.version> | ||
| <compress.brotli.version>0.1.2</compress.brotli.version> | ||
| <!-- ANTLR 4.10+ requires Java 11 --> | ||
| <antlr4.version>4.9.3</antlr4.version> | ||
| <spotbugs.version>4.5.3</spotbugs.version> | ||
| <esri.version>1.2.1</esri.version> | ||
| <jackson-core-asl.version>1.9.13</jackson-core-asl.version> | ||
| <org-json.version>20220320</org-json.version> | ||
| <org-json.version>20250517</org-json.version> | ||
| <jansi.version>1.18</jansi.version> | ||
| <aws.sdk.version>2.17.121</aws.sdk.version> | ||
| <aws.sdk.version>2.40.7</aws.sdk.version> | ||
| <prometheus.client.version>0.15.0</prometheus.client.version> | ||
| <!-- Test dependencies --> | ||
| <junit.version>5.8.2</junit.version> | ||
|
|
@@ -98,6 +98,8 @@ | |
| <awaitility.version>4.2.0</awaitility.version> | ||
| <commons-exec.version>1.3</commons-exec.version> | ||
| <surefire.version>2.22.2</surefire.version> | ||
| <jcip.version>1.0-1</jcip.version> | ||
| <spotbugs.version>4.5.3</spotbugs.version> | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These dependencies used to come along with the Java driver but were removed when the driver moved from DataStax to the Apache Software Foundation. The versions specified here were the versions used with the last DataStax-supported Java driver release. |
||
| <max.simulacron.clusters>4</max.simulacron.clusters> | ||
| <max.ccm.clusters>2</max.ccm.clusters> | ||
| </properties> | ||
|
|
@@ -191,7 +193,7 @@ | |
| <dependency> | ||
| <groupId>org.apache.commons</groupId> | ||
| <artifactId>commons-text</artifactId> | ||
| <version>1.9</version> | ||
| <version>1.15.0</version> | ||
| </dependency> | ||
| </dependencies> | ||
| </dependencyManagement> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change (and the equivalent change for the string-to-vector codec below) match up to a change that came in subsequent versions of the Java driver after initial vector support was added. A decision was made to provide uniform bounds checking for vectors across all drivers such that any number of elements other than those specified by the vectors dimension will throw an IllegalArgumentException. JAVA-3143 is the relevant ticket here.