This is an automated email from the ASF dual-hosted git repository.
absurdfarce pushed a commit to branch 3.x
in repository https://gitbox.apache.org/repos/asf/cassandra-java-driver.git
The following commit(s) were added to refs/heads/3.x by this push:
new 657e470b2 Update changelog and docs for 3.12.0 release
657e470b2 is described below
commit 657e470b2f22c22c140d1a5c26b3af34b3a74f59
Author: absurdfarce <[email protected]>
AuthorDate: Wed Dec 18 10:36:51 2024 -0600
Update changelog and docs for 3.12.0 release
patch by Bret McGuire; reviewed by Bret McGuire, Andy Tolbert
reference: https://github.com/apache/cassandra-java-driver/pull/1995
---
README.md | 10 +++++-----
changelog/README.md | 4 ++++
faq/README.md | 2 +-
manual/compression/README.md | 2 +-
manual/custom_codecs/extras/README.md | 2 +-
manual/metrics/README.md | 2 +-
manual/object_mapper/README.md | 2 +-
manual/shaded_jar/README.md | 6 +++---
8 files changed, 17 insertions(+), 13 deletions(-)
diff --git a/README.md b/README.md
index 207c646e3..624b4c9ea 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ for the development version and that some features described
here might
not yet have been released. You can find the documentation for the latest
version through the [Java Driver
docs](http://docs.datastax.com/en/developer/java-driver/3.11/index.html) or
via the release tags,
-[e.g. 3.11.5](https://github.com/apache/cassandra-java-driver/tree/3.11.5).*
+[e.g. 3.12.0](https://github.com/apache/cassandra-java-driver/tree/3.12.0).*
A modern, [feature-rich](manual/) and highly tunable Java client
library for Apache Cassandra (2.1+) and using exclusively Cassandra's binary
protocol
@@ -62,7 +62,7 @@ using DataStax Enterprise, install the [DataStax Enterprise
Java Driver][dse-dri
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
- <version>3.11.5</version>
+ <version>3.12.0</version>
</dependency>
```
@@ -72,7 +72,7 @@ Note that the object mapper is published as a separate
artifact:
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-mapping</artifactId>
- <version>3.11.5</version>
+ <version>3.12.0</version>
</dependency>
```
@@ -82,7 +82,7 @@ The 'extras' module is also published as a separate artifact:
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-extras</artifactId>
- <version>3.11.5/version>
+ <version>3.12.0/version>
</dependency>
```
@@ -96,7 +96,7 @@ is available for download.
## Compatibility
-The Java client driver 3.11.5 ([branch
3.x](https://github.com/apache/cassandra-java-driver/tree/3.x)) is compatible
with Apache
+The Java client driver 3.12.0 ([branch
3.x](https://github.com/apache/cassandra-java-driver/tree/3.x)) is compatible
with Apache
Cassandra 2.1, 2.2 and 3.0+ (see [this
page](http://docs.datastax.com/en/developer/java-driver/3.11/manual/native_protocol/)
for
the most up-to-date compatibility information).
diff --git a/changelog/README.md b/changelog/README.md
index 1b8feae01..c85e4e31d 100644
--- a/changelog/README.md
+++ b/changelog/README.md
@@ -24,6 +24,10 @@ under the License.
3.x versions get published.
-->
+## 3.12.0
+- [improvement] CASSANDRA-18971: Switch all archs to
netty-tcnative-boringssl-static
+- [improvement] CASSJAVA-58: Update 3.x DRIVER_NAME to match 4.x Java driver
+
## 3.11.5
- [improvement] JAVA-3114: Shade io.dropwizard.metrics:metrics-core in shaded
driver
- [improvement] JAVA-3115: SchemaChangeListener#onKeyspaceChanged can fire
when keyspace has not changed if using SimpleStrategy replication
diff --git a/faq/README.md b/faq/README.md
index a6a60c1ed..567d73d23 100644
--- a/faq/README.md
+++ b/faq/README.md
@@ -308,7 +308,7 @@ version is available, you may want to reach out to the
maintainer of that tool t
an update with compatibility to this driver version.
-[Blobs.java]:
https://github.com/apache/cassandra-java-driver/tree/3.11.5/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
+[Blobs.java]:
https://github.com/apache/cassandra-java-driver/tree/3.12.0/driver-examples/src/main/java/com/datastax/driver/examples/datatypes/Blobs.java
[CASSANDRA-7304]: https://issues.apache.org/jira/browse/CASSANDRA-7304
[Parameters and Binding]: ../manual/statements/prepared/#parameters-and-binding
[Mapper options]: ../manual/object_mapper/using/#mapper-options
diff --git a/manual/compression/README.md b/manual/compression/README.md
index fb4b49bff..190cbb1e8 100644
--- a/manual/compression/README.md
+++ b/manual/compression/README.md
@@ -107,4 +107,4 @@ cluster = Cluster.builder()
.build();
```
-[pom]:
https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.11.5/cassandra-driver-parent-3.11.5.pom
+[pom]:
https://repo1.maven.org/maven2/com/datastax/cassandra/cassandra-driver-parent/3.12.0/cassandra-driver-parent-3.12.0.pom
diff --git a/manual/custom_codecs/extras/README.md
b/manual/custom_codecs/extras/README.md
index 45fd0f7c6..aaabb1a1b 100644
--- a/manual/custom_codecs/extras/README.md
+++ b/manual/custom_codecs/extras/README.md
@@ -29,7 +29,7 @@ The module is published as a separate Maven artifact:
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-extras</artifactId>
- <version>3.11.5</version>
+ <version>3.12.0</version>
</dependency>
```
diff --git a/manual/metrics/README.md b/manual/metrics/README.md
index 7d60bec3c..50993ba64 100644
--- a/manual/metrics/README.md
+++ b/manual/metrics/README.md
@@ -57,7 +57,7 @@ To do this in a maven project:
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
- <version>3.11.5</version>
+ <version>3.12.0</version>
<exclusions>
<exclusion>
<groupId>io.dropwizard.metrics</groupId>
diff --git a/manual/object_mapper/README.md b/manual/object_mapper/README.md
index 308e3195a..31f04b29a 100644
--- a/manual/object_mapper/README.md
+++ b/manual/object_mapper/README.md
@@ -30,7 +30,7 @@ The mapper is published as a separate Maven artifact:
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-mapping</artifactId>
- <version>3.11.5</version>
+ <version>3.12.0</version>
</dependency>
```
diff --git a/manual/shaded_jar/README.md b/manual/shaded_jar/README.md
index 0e21639ea..1b531e520 100644
--- a/manual/shaded_jar/README.md
+++ b/manual/shaded_jar/README.md
@@ -31,7 +31,7 @@ package name:
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
- <version>3.11.5</version>
+ <version>3.12.0</version>
<classifier>shaded</classifier>
<!-- Because the shaded JAR uses the original POM, you still need
to exclude this dependency explicitly: -->
@@ -55,7 +55,7 @@ non-shaded JAR:
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
- <version>3.11.5</version>
+ <version>3.12.0</version>
<classifier>shaded</classifier>
<exclusions>
<exclusion>
@@ -71,7 +71,7 @@ non-shaded JAR:
<dependency>
<groupId>org.apache.cassandra</groupId>
<artifactId>cassandra-driver-mapping</artifactId>
- <version>3.11.5</version>
+ <version>3.12.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.cassandra</groupId>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]