Skip to content

Commit c42b415

Browse files
committed
Update version in docs
1 parent 814add6 commit c42b415

69 files changed

Lines changed: 274 additions & 274 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*If you're reading this on github.com, please note that this is the readme for the development
66
version and that some features described here might not yet have been released. You can find the
77
documentation for latest version through [DataStax Docs] or via the release tags, e.g.
8-
[4.2.0](https://github.com/datastax/java-driver/tree/4.2.0).*
8+
[4.3.0](https://github.com/datastax/java-driver/tree/4.3.0).*
99

1010
A modern, feature-rich and highly tunable Java client library for [Apache Cassandra®] \(2.1+) and
1111
[DataStax Enterprise] \(4.7+), using exclusively Cassandra's binary protocol and Cassandra Query
@@ -80,7 +80,7 @@ See the [upgrade guide](upgrade_guide/) for details.
8080
* [Changelog]
8181
* [FAQ]
8282

83-
[API docs]: https://docs.datastax.com/en/drivers/java/4.2
83+
[API docs]: https://docs.datastax.com/en/drivers/java/4.3
8484
[JIRA]: https://datastax-oss.atlassian.net/browse/JAVA
8585
[Mailing list]: https://groups.google.com/a/lists.datastax.com/forum/#!forum/java-driver-user
8686
[@dsJavaDriver]: https://twitter.com/dsJavaDriver

changelog/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- Note: contrary to 3.x, insert new entries *first* in their section -->
44

5-
### 4.3.0 (in progress)
5+
### 4.3.0
66

77
- [improvement] JAVA-2497: Ensure nodes and exceptions are serializable
88
- [bug] JAVA-2464: Fix initial schema refresh when reconnect-on-init is enabled

manual/case_sensitivity/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,11 @@ For "consuming" methods, string overloads are also provided for convenience, for
106106
* in other cases, the string is always assumed to be in CQL form, and converted on the fly with
107107
`CqlIdentifier.fromCql`.
108108

109-
[CqlIdentifier]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/CqlIdentifier.html
110-
[Row]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/cql/Row.html
111-
[UdtValue]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/data/UdtValue.html
112-
[BoundStatement]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/cql/BoundStatement.html
113-
[AccessibleByName]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/data/AccessibleByName.html
109+
[CqlIdentifier]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/CqlIdentifier.html
110+
[Row]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/cql/Row.html
111+
[UdtValue]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/data/UdtValue.html
112+
[BoundStatement]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/cql/BoundStatement.html
113+
[AccessibleByName]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/data/AccessibleByName.html
114114

115115
### Good practices
116116

manual/core/README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -310,18 +310,18 @@ for (ColumnDefinitions.Definition definition : row.getColumnDefinitions()) {
310310
}
311311
```
312312

313-
[CqlSession]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/CqlSession.html
314-
[CqlSession#builder()]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/CqlSession.html#builder--
315-
[ResultSet]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/cql/ResultSet.html
316-
[Row]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/cql/Row.html
317-
[CqlIdentifier]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/CqlIdentifier.html
318-
[AccessibleByName]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/data/AccessibleByName.html
319-
[GenericType]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/type/reflect/GenericType.html
320-
[CqlDuration]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/data/CqlDuration.html
321-
[TupleValue]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/data/TupleValue.html
322-
[UdtValue]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/data/UdtValue.html
323-
[SessionBuilder.addContactPoint()]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addContactPoint-java.net.InetSocketAddress-
324-
[SessionBuilder.addContactPoints()]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addContactPoints-java.util.Collection-
325-
[SessionBuilder.withLocalDatacenter()]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withLocalDatacenter-java.lang.String-
313+
[CqlSession]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/CqlSession.html
314+
[CqlSession#builder()]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/CqlSession.html#builder--
315+
[ResultSet]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/cql/ResultSet.html
316+
[Row]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/cql/Row.html
317+
[CqlIdentifier]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/CqlIdentifier.html
318+
[AccessibleByName]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/data/AccessibleByName.html
319+
[GenericType]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/type/reflect/GenericType.html
320+
[CqlDuration]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/data/CqlDuration.html
321+
[TupleValue]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/data/TupleValue.html
322+
[UdtValue]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/data/UdtValue.html
323+
[SessionBuilder.addContactPoint()]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addContactPoint-java.net.InetSocketAddress-
324+
[SessionBuilder.addContactPoints()]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addContactPoints-java.util.Collection-
325+
[SessionBuilder.withLocalDatacenter()]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withLocalDatacenter-java.lang.String-
326326

327327
[CASSANDRA-10145]: https://issues.apache.org/jira/browse/CASSANDRA-10145

manual/core/address_resolution/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Cassandra node:
124124
domain name of the target instance. Then it performs a forward DNS lookup of the domain name; the EC2 DNS does the
125125
private/public switch automatically based on location).
126126

127-
[AddressTranslator]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/addresstranslation/AddressTranslator.html
127+
[AddressTranslator]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/addresstranslation/AddressTranslator.html
128128

129129
[cassandra.yaml]: https://docs.datastax.com/en/cassandra/3.x/cassandra/configuration/configCassandra_yaml.html
130130
[rpc_address]: https://docs.datastax.com/en/cassandra/3.x/cassandra/configuration/configCassandra_yaml.html?scroll=configCassandra_yaml__rpc_address

manual/core/async/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,4 +203,4 @@ documentation for more details and an example.
203203

204204
[CompletionStage]: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/CompletionStage.html
205205

206-
[AsyncResultSet]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/cql/AsyncResultSet.html
206+
[AsyncResultSet]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/cql/AsyncResultSet.html

manual/core/authentication/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ acceptable for you, consider writing your own [AuthProvider] implementation
7676

7777
[SASL]: https://en.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer
7878

79-
[AuthProvider]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/auth/AuthProvider.html
80-
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/context/DriverContext.html
81-
[PlainTextAuthProviderBase]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/auth/PlainTextAuthProviderBase.html
82-
[SessionBuilder.withAuthCredentials]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withAuthCredentials-java.lang.String-java.lang.String-
83-
[SessionBuilder.withAuthProvider]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withAuthProvider-com.datastax.oss.driver.api.core.auth.AuthProvider-
79+
[AuthProvider]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/auth/AuthProvider.html
80+
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/context/DriverContext.html
81+
[PlainTextAuthProviderBase]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/auth/PlainTextAuthProviderBase.html
82+
[SessionBuilder.withAuthCredentials]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withAuthCredentials-java.lang.String-java.lang.String-
83+
[SessionBuilder.withAuthProvider]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/session/SessionBuilder.html#withAuthProvider-com.datastax.oss.driver.api.core.auth.AuthProvider-

manual/core/configuration/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -501,16 +501,16 @@ config.getDefaultProfile().getString(MyCustomOption.ADMIN_EMAIL);
501501
config.getDefaultProfile().getInt(MyCustomOption.AWESOMENESS_FACTOR);
502502
```
503503

504-
[DriverConfig]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DriverConfig.html
505-
[DriverExecutionProfile]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DriverExecutionProfile.html
506-
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/context/DriverContext.html
507-
[DriverOption]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DriverOption.html
508-
[DefaultDriverOption]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DefaultDriverOption.html
509-
[DriverConfigLoader]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html
510-
[DriverConfigLoader.fromClasspath]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromClasspath-java.lang.String-
511-
[DriverConfigLoader.fromFile]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromFile-java.io.File-
512-
[DriverConfigLoader.fromUrl]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromUrl-java.net.URL-
513-
[DriverConfigLoader.programmaticBuilder]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#programmaticBuilder--
504+
[DriverConfig]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DriverConfig.html
505+
[DriverExecutionProfile]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DriverExecutionProfile.html
506+
[DriverContext]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/context/DriverContext.html
507+
[DriverOption]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DriverOption.html
508+
[DefaultDriverOption]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DefaultDriverOption.html
509+
[DriverConfigLoader]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html
510+
[DriverConfigLoader.fromClasspath]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromClasspath-java.lang.String-
511+
[DriverConfigLoader.fromFile]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromFile-java.io.File-
512+
[DriverConfigLoader.fromUrl]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#fromUrl-java.net.URL-
513+
[DriverConfigLoader.programmaticBuilder]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/config/DriverConfigLoader.html#programmaticBuilder--
514514

515515
[Typesafe Config]: https://github.com/typesafehub/config
516516
[config standard behavior]: https://github.com/typesafehub/config#standard-behavior

manual/core/control_connection/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ There are a few options to fine tune the control connection behavior in the
2323
`advanced.control-connection` and `advanced.metadata` sections; see the [metadata](../metadata/)
2424
pages and the [reference configuration](../configuration/reference/) for all the details.
2525

26-
[Node.getOpenConnections]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/metadata/Node.html#getOpenConnections--
26+
[Node.getOpenConnections]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/metadata/Node.html#getOpenConnections--

manual/core/custom_codecs/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ private static String formatRow(Row row) {
255255
}
256256
```
257257

258-
[CodecRegistry]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/type/codec/registry/CodecRegistry.html
259-
[GenericType]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/type/reflect/GenericType.html
260-
[TypeCodec]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/type/codec/TypeCodec.html
261-
[SessionBuilder.addTypeCodecs]: https://docs.datastax.com/en/drivers/java/4.2/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addTypeCodecs-com.datastax.oss.driver.api.core.type.codec.TypeCodec...-
258+
[CodecRegistry]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/type/codec/registry/CodecRegistry.html
259+
[GenericType]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/type/reflect/GenericType.html
260+
[TypeCodec]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/type/codec/TypeCodec.html
261+
[SessionBuilder.addTypeCodecs]: https://docs.datastax.com/en/drivers/java/4.3/com/datastax/oss/driver/api/core/session/SessionBuilder.html#addTypeCodecs-com.datastax.oss.driver.api.core.type.codec.TypeCodec...-

0 commit comments

Comments
 (0)