Skip to content

Commit

Permalink
JDBC Driver version update to 42.3.5-yb-8 (#24241)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashetkar authored Oct 2, 2024
1 parent 6128137 commit 4e36b78
Show file tree
Hide file tree
Showing 27 changed files with 35 additions and 35 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ private = true
| | Version | Support Level | Example apps |
| :--------- | :------ | :------------ | :----------- |
| **Drivers** | | | |
| YugabyteDB JDBC Smart Driver<br/>[Recommended] | [42.3.5-yb-7](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-7) | Full | [CRUD](/preview/drivers-orms/java/yugabyte-jdbc/) |
| YugabyteDB JDBC Smart Driver<br/>[Recommended] | [42.3.5-yb-8](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-8) | Full | [CRUD](/preview/drivers-orms/java/yugabyte-jdbc/) |
| YugabyteDB R2DBC Smart Driver | [1.1.0-yb-1-ea](https://mvnrepository.com/artifact/com.yugabyte/r2dbc-postgresql) | Full | [CRUD](/preview/drivers-orms/java/yb-r2dbc/) |
| PostgreSQL JDBC Driver | [42.3.4](https://mvnrepository.com/artifact/org.postgresql/postgresql/42.3.4) | Full | [CRUD](/preview/drivers-orms/java/postgres-jdbc/) |
| Vert.x Pg Client | [4.3.2](https://mvnrepository.com/artifact/io.vertx/vertx-core/4.3.2) | Full | [CRUD](/preview/drivers-orms/java/ysql-vertx-pg-client/) |
Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/drivers-orms/java/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The following projects can be used to implement Java applications using the Yuga

| Driver | Documentation and Guides | Latest Driver Version | Supported YugabyteDB Version |
| ------- | ------------------------ | ------------------------ | ---------------------|
| YugabyteDB JDBC Driver [Recommended] | [Documentation](yugabyte-jdbc/)<br />[Reference](yugabyte-jdbc-reference/)<br />[Blog](https://dev.to/yugabyte/yugabytedb-jdbc-smart-driver-for-proxyless-halb-2k8a/) | [42.3.5-yb-7](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-7) | 2.8 and above |
| YugabyteDB JDBC Driver [Recommended] | [Documentation](yugabyte-jdbc/)<br />[Reference](yugabyte-jdbc-reference/)<br />[Blog](https://dev.to/yugabyte/yugabytedb-jdbc-smart-driver-for-proxyless-halb-2k8a/) | [42.3.5-yb-8](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-8) | 2.8 and above |
| YugabyteDB R2DBC Driver | [Documentation](yb-r2dbc/) | [1.1.0-yb-1-ea](https://mvnrepository.com/artifact/com.yugabyte/r2dbc-postgresql) | 2.18 and above |
| PostgreSQL JDBC Driver | [Documentation](postgres-jdbc/)<br /> [Reference](postgres-jdbc-reference/) | [42.3.4](https://mvnrepository.com/artifact/org.postgresql/postgresql/42.3.4) | 2.4 and above |
| Vert.x Pg Client | [Documentation](ysql-vertx-pg-client/) | [4.3.2](https://mvnrepository.com/artifact/io.vertx/vertx-core/4.3.2) | |
Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/drivers-orms/java/ebean.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ To begin using Ebean in the application, do the following:
1. Add the following dependency for the YugabyteDB JDBC driver to the `build.sbt` file.
```sbt
libraryDependencies += "com.yugabyte" % "jdbc-yugabytedb" % "42.3.5-yb-7"
libraryDependencies += "com.yugabyte" % "jdbc-yugabytedb" % "42.3.5-yb-8"
```
1. Enable the PlayEbean plugin in the `build.sbt` file by adding `PlayEbean` as follows:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ To get the driver and HikariPool from Maven, add the following dependencies to t
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
Expand All @@ -73,7 +73,7 @@ To get the driver and HikariPool, add the following dependencies to the Gradle p

```java
// https://mvnrepository.com/artifact/org.postgresql/postgresql
implementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-7'
implementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-8'
implementation 'com.zaxxer:HikariCP:4.0.3'
```

Expand Down
6 changes: 3 additions & 3 deletions docs/content/preview/drivers-orms/java/yugabyte-jdbc.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ If you are using [Maven](https://maven.apache.org/guides/development/guide-build
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
Expand All @@ -106,7 +106,7 @@ Install the added dependency using `mvn install`.
If you are using [Gradle](https://docs.gradle.org/current/samples/sample_building_java_applications.html), add the following dependencies to your `build.gradle` file:

```java
implementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-7'
implementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-8'
implementation 'com.zaxxer:HikariCP:4.0.3'
```

Expand All @@ -133,7 +133,7 @@ The following table describes the connection parameters required to connect, inc
| `fallback-to-topology-keys-only` | If `topology-keys` are specified, the driver only tries to connect to nodes specified in `topology-keys` | Empty |
| `failed-host-reconnect-delay-secs` | When the driver is unable to connect to a node, it marks the node as failed using a timestamp. When refreshing the server list via yb_servers(), if the driver sees a failed node in the response, it marks the server as UP only if the time specified via this property has elapsed from the time it was last marked as failed. | 5 |

In v42.3.5-yb-7 and later, the `load-balance` property supports the following additional properties: any (alias for 'true'), only-primary, only-rr, prefer-primary, and prefer-rr. See [Read replica-aware load balancing](../../smart-drivers/#read-replica-cluster-aware).
In v42.3.5-yb-8 and later, the `load-balance` property supports the following additional properties: any (alias for 'true'), only-primary, only-rr, prefer-primary, and prefer-rr. See [Read replica-aware load balancing](../../smart-drivers/#read-replica-cluster-aware).

The following is an example JDBC URL for connecting to YugabyteDB:

Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/drivers-orms/orms/java/ysql-ebean.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ $ git clone https://github.com/YugabyteDB-Samples/orm-examples.git && cd orm-exa
- Add a dependency in `build.sbt` for the YugabyteDB JDBC driver.

```sh
libraryDependencies += "com.yugabyte" % "jdbc-yugabytedb" % "42.3.5-yb-7"
libraryDependencies += "com.yugabyte" % "jdbc-yugabytedb" % "42.3.5-yb-8"
```

- From your local YugabyteDB installation directory, connect to the [YSQL](../../../../admin/ysqlsh/) shell using:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Create the database and table you will read and write to as follows:
<dependency>
<groupId> com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ This tutorial assumes that you have:
From your spark installation directory, use the following command to start `pyspark` shell, and pass the YugabyteDB driver package with the `--packages` parameter. The command fetches the YugabyteDB driver from local cache (if present), or installs the driver from [maven central](https://search.maven.org/).

```sh
./bin/pyspark --packages com.yugabyte:jdbc-yugabytedb:42.3.5-yb-7
./bin/pyspark --packages com.yugabyte:jdbc-yugabytedb:42.3.5-yb-8
```

The Spark session should be available as follows:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ This tutorial assumes that you have:
From your Spark installation directory, use the following command to start `spark-shell`, and pass the YugabyteDB driver package with the `--packages` parameter. The command fetches the YugabyteDB driver from local cache (if present), or installs the driver from [maven central](https://search.maven.org/).

```sh
./bin/spark-shell --packages com.yugabyte:jdbc-yugabytedb:42.3.5-yb-7
./bin/spark-shell --packages com.yugabyte:jdbc-yugabytedb:42.3.5-yb-8
```

The Scala prompt should be available as follows:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ This tutorial assumes that you have:
From your Spark installation directory, use the following command to start `spark-sql`, and pass the YugabyteDB driver package with the `--packages` parameter. The command fetches the YugabyteDB driver from local cache (if present), or installs the driver from [maven central](https://search.maven.org/).

```sh
./bin/spark-sql --packages com.yugabyte:jdbc-yugabytedb:42.3.5-yb-7
./bin/spark-sql --packages com.yugabyte:jdbc-yugabytedb:42.3.5-yb-8
```

The Spark prompt should be available as `spark-sql>`.
Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/integrations/camunda.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ This tutorial assumes that:
password: yugabyte
```

Then, download the YugabyteDB JDBC driver [JAR file](https://repo1.maven.org/maven2/com/yugabyte/jdbc-yugabytedb/42.3.5-yb-7/jdbc-yugabytedb-42.3.5-yb-7.jar) and place it in the `camunda-bpm-run-7.17.0/configuration/userlib` directory. Read more about the [YugabyteDB JDBC driver](../../drivers-orms/java/yugabyte-jdbc-reference/).
Then, download the YugabyteDB JDBC driver [JAR file](https://repo1.maven.org/maven2/com/yugabyte/jdbc-yugabytedb/42.3.5-yb-8/jdbc-yugabytedb-42.3.5-yb-8.jar) and place it in the `camunda-bpm-run-7.17.0/configuration/userlib` directory. Read more about the [YugabyteDB JDBC driver](../../drivers-orms/java/yugabyte-jdbc-reference/).

1. Start the Camunda Platform server using `./start.sh` on Linux or macOS, or `./start.bat` on Windows.

Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/integrations/flyway.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ To use Flyway with YugabyteDB, you need the following:
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Add the following dependencies for Spring Data JPA with [YugabyteDB JDBC Driver]
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>
<dependencies>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/integrations/spring-framework/sdyb.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ The project definition includes the following dependencies:
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/quick-start/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Perform the following to create a sample Java project:
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
Expand Down
2 changes: 1 addition & 1 deletion docs/content/preview/quick-start/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ Perform the following to create a sample Java project:
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>
<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ The YugaPlus movies recommendation service, written in Java, already includes th
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ private = true
| | Version | Support Level | Example apps |
| :--------- | :------ | :------------ | :----------- |
| **Drivers** | | | |
| YugabyteDB JDBC Smart Driver<br/>[Recommended] | [42.3.5-yb-7](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-7) | Full | [CRUD](/preview/drivers-orms/java/yugabyte-jdbc/) |
| YugabyteDB JDBC Smart Driver<br/>[Recommended] | [42.3.5-yb-8](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-8) | Full | [CRUD](/preview/drivers-orms/java/yugabyte-jdbc/) |
| YugabyteDB R2DBC Smart Driver | [1.1.0-yb-1-ea](https://mvnrepository.com/artifact/com.yugabyte/r2dbc-postgresql) | Full | [CRUD](/preview/drivers-orms/java/yb-r2dbc/) |
| PostgreSQL JDBC Driver | [42.3.4](https://mvnrepository.com/artifact/org.postgresql/postgresql/42.3.4) | Full | [CRUD](/preview/drivers-orms/java/postgres-jdbc/) |
| Vert.x Pg Client | [4.3.2](https://mvnrepository.com/artifact/io.vertx/vertx-core/4.3.2) | Full | [CRUD](/preview/drivers-orms/java/ysql-vertx-pg-client/) |
Expand Down
2 changes: 1 addition & 1 deletion docs/content/stable/drivers-orms/java/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The following projects can be used to implement Java applications using the Yuga

| Driver | Documentation and Guides | Latest Driver Version | Supported YugabyteDB Version |
| ------- | ------------------------ | ------------------------ | ---------------------|
| YugabyteDB JDBC Driver [Recommended] | [Documentation](yugabyte-jdbc/)<br />[Reference](yugabyte-jdbc-reference/)<br />[Blog](https://dev.to/yugabyte/yugabytedb-jdbc-smart-driver-for-proxyless-halb-2k8a/) | [42.3.5-yb-7](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-7) | 2.8 and above |
| YugabyteDB JDBC Driver [Recommended] | [Documentation](yugabyte-jdbc/)<br />[Reference](yugabyte-jdbc-reference/)<br />[Blog](https://dev.to/yugabyte/yugabytedb-jdbc-smart-driver-for-proxyless-halb-2k8a/) | [42.3.5-yb-8](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-8) | 2.8 and above |
| YugabyteDB R2DBC Driver | [Documentation](yb-r2dbc/) | [1.1.0-yb-1-ea](https://mvnrepository.com/artifact/com.yugabyte/r2dbc-postgresql) | 2.18 and above |
| PostgreSQL JDBC Driver | [Documentation](postgres-jdbc/)<br /> [Reference](postgres-jdbc-reference/) | [42.3.4](https://mvnrepository.com/artifact/org.postgresql/postgresql/42.3.4) | 2.4 and above |
| Vert.x Pg Client | [Documentation](ysql-vertx-pg-client/) | [4.3.2](https://mvnrepository.com/artifact/io.vertx/vertx-core/4.3.2) | |
Expand Down
2 changes: 1 addition & 1 deletion docs/content/stable/drivers-orms/java/ebean.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ To begin using Ebean in the application, do the following:
1. Add the following dependency for the YugabyteDB JDBC driver to the `build.sbt` file.
```sbt
libraryDependencies += "com.yugabyte" % "jdbc-yugabytedb" % "42.3.5-yb-7"
libraryDependencies += "com.yugabyte" % "jdbc-yugabytedb" % "42.3.5-yb-8"
```
1. Enable the PlayEbean plugin in the `build.sbt` file by adding `PlayEbean` as follows:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ To get the driver and HikariPool from Maven, add the following dependencies to t
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
Expand All @@ -71,7 +71,7 @@ To get the driver and HikariPool, add the following dependencies to the Gradle p

```java
// https://mvnrepository.com/artifact/org.postgresql/postgresql
implementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-7'
implementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-8'
implementation 'com.zaxxer:HikariCP:4.0.3'
```

Expand Down
6 changes: 3 additions & 3 deletions docs/content/stable/drivers-orms/java/yugabyte-jdbc.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ If you are using [Maven](https://maven.apache.org/guides/development/guide-build
<dependency>
<groupId>com.yugabyte</groupId>
<artifactId>jdbc-yugabytedb</artifactId>
<version>42.3.5-yb-7</version>
<version>42.3.5-yb-8</version>
</dependency>

<!-- https://mvnrepository.com/artifact/com.zaxxer/HikariCP -->
Expand All @@ -99,7 +99,7 @@ Install the added dependency using `mvn install`.
If you are using [Gradle](https://docs.gradle.org/current/samples/sample_building_java_applications.html), add the following dependencies to your `build.gradle` file:

```java
implementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-7'
implementation 'com.yugabyte:jdbc-yugabytedb:42.3.5-yb-8'
implementation 'com.zaxxer:HikariCP:4.0.3'
```

Expand All @@ -126,7 +126,7 @@ The following table describes the connection parameters required to connect, inc
| `fallback-to-topology-keys-only` | If `topology-keys` are specified, the driver only tries to connect to nodes specified in `topology-keys` | Empty |
| `failed-host-reconnect-delay-secs` | When the driver is unable to connect to a node, it marks the node as failed using a timestamp. When refreshing the server list via yb_servers(), if the driver sees a failed node in the response, it marks the server as UP only if the time specified via this property has elapsed from the time it was last marked as failed. | 5 |

Starting with version 42.3.5-yb-7, 5 new values are allowed for the property `load-balance` to support read replica nodes: 'any' (alias for 'true'), 'only-primary', 'only-rr', 'prefer-primary' and 'prefer-rr'. See the [smart driver page](../smart-drivers.md#read-replica-cluster-aware) for usage of these values.
Starting with version 42.3.5-yb-8, 5 new values are allowed for the property `load-balance` to support read replica nodes: 'any' (alias for 'true'), 'only-primary', 'only-rr', 'prefer-primary' and 'prefer-rr'. See the [smart driver page](../smart-drivers.md#read-replica-cluster-aware) for usage of these values.

The following is an example JDBC URL for connecting to YugabyteDB:

Expand Down
2 changes: 1 addition & 1 deletion docs/content/stable/drivers-orms/orms/java/ysql-ebean.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ $ git clone https://github.com/YugabyteDB-Samples/orm-examples.git && cd orm-exa
- Add a dependency in `build.sbt` for the YugabyteDB JDBC driver.

```sh
libraryDependencies += "com.yugabyte" % "jdbc-yugabytedb" % "42.3.5-yb-7"
libraryDependencies += "com.yugabyte" % "jdbc-yugabytedb" % "42.3.5-yb-8"
```

- From your local YugabyteDB installation directory, connect to the [YSQL](../../../../admin/ysqlsh/) shell using:
Expand Down
2 changes: 1 addition & 1 deletion docs/content/v2.18/drivers-orms/java/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ The following projects can be used to implement Java applications using the Yuga

| Driver | Documentation and Guides | Latest Driver Version | Supported YugabyteDB Version |
| ------- | ------------------------ | ------------------------ | ---------------------|
| YugabyteDB JDBC Driver [Recommended] | [Documentation](yugabyte-jdbc/)<br />[Blog](https://dev.to/yugabyte/yugabytedb-jdbc-smart-driver-for-proxyless-halb-2k8a/)<br />[Reference](../../reference/drivers/java/yugabyte-jdbc-reference/) | [42.3.5-yb-7](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-7) | 2.8 and above
| YugabyteDB JDBC Driver [Recommended] | [Documentation](yugabyte-jdbc/)<br />[Blog](https://dev.to/yugabyte/yugabytedb-jdbc-smart-driver-for-proxyless-halb-2k8a/)<br />[Reference](../../reference/drivers/java/yugabyte-jdbc-reference/) | [42.3.5-yb-8](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-8) | 2.8 and above
| PostgreSQL JDBC Driver | [Documentation](postgres-jdbc/)<br /> [Reference](../../reference/drivers/java/postgres-jdbc-reference/) | [42.3.4](https://mvnrepository.com/artifact/org.postgresql/postgresql/42.3.4) | 2.4 and above
| Vert.x Pg Client | [Documentation](ysql-vertx-pg-client/) | [4.3.2](https://mvnrepository.com/artifact/io.vertx/vertx-core/4.3.2) |
| YugabyteDB YCQL (3.10) Driver | [Documentation](ycql)<br />[Reference](../../reference/drivers/ycql-client-drivers/#yugabyte-java-driver-for-ycql-3-10) | [3.10.3-yb-2](https://mvnrepository.com/artifact/com.yugabyte/cassandra-driver-core/3.10.3-yb-2) | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ private = true
| | Version | Support Level | Example apps |
| :--------- | :------ | :------------ | :----------- |
| **Drivers** | | | |
| YugabyteDB JDBC Smart Driver<br/>[Recommended] | [42.3.5-yb-7](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-7) | Full | [CRUD](/preview/drivers-orms/java/yugabyte-jdbc/) |
| YugabyteDB JDBC Smart Driver<br/>[Recommended] | [42.3.5-yb-8](https://mvnrepository.com/artifact/com.yugabyte/jdbc-yugabytedb/42.3.5-yb-8) | Full | [CRUD](/preview/drivers-orms/java/yugabyte-jdbc/) |
| PostgreSQL JDBC Driver | [42.3.4](https://mvnrepository.com/artifact/org.postgresql/postgresql/42.3.4) | Full | [CRUD](/preview/drivers-orms/java/postgres-jdbc/) |
| Vert.x Pg Client | [4.3.2](https://mvnrepository.com/artifact/io.vertx/vertx-core/4.3.2) | Full | [CRUD](/preview/drivers-orms/java/ysql-vertx-pg-client/) |
| YugabyteDB Java Driver for YCQL | [3.10.3-yb-2](https://mvnrepository.com/artifact/com.yugabyte/cassandra-driver-core/3.10.3-yb-2) | Full | [CRUD](/preview/drivers-orms/java/ycql) |
Expand Down
Loading

0 comments on commit 4e36b78

Please sign in to comment.