Skip to content

Commit eda3238

Browse files
committed
New release v2.1.0
1 parent 1806010 commit eda3238

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.1.0 ##
2+
3+
* Added support for QueryService
4+
* Added configs for custom iam enpoint and metadata URL
5+
* Upgraded to YDB Java SDK 2.2.0
6+
17
## 2.0.7 ##
28

39
* Added getter for GrpcTransport to YdbContext

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ Specify the YDB JDBC driver in the dependencies:
2525
<dependency>
2626
<groupId>tech.ydb.jdbc</groupId>
2727
<artifactId>ydb-jdbc-driver</artifactId>
28-
<version>2.0.7</version>
28+
<version>2.1.0</version>
2929
</dependency>
3030

3131
<!-- Shaded version with included dependencies -->
3232
<dependency>
3333
<groupId>tech.ydb.jdbc</groupId>
3434
<artifactId>ydb-jdbc-driver-shaded</artifactId>
35-
<version>2.0.7</version>
35+
<version>2.1.0</version>
3636
</dependency>
3737
</dependencies>
3838
```
@@ -50,8 +50,10 @@ YDB JDBC Driver supports the following [authentication modes](https://ydb.tech/e
5050

5151
Driver supports the following configuration properties, which can be specified in the URL or passed via extra properties:
5252
* `saFile` - service account key for authentication, can be passed either as literal JSON value or as a file reference;
53+
* `iamEndpoint` - custom IAM endpoint for authentication via service account key;
5354
* `token` - token value for authentication, can be passed either as literal value or as a file reference;
5455
* `useMetadata` - boolean value, true if metadata authentication should be used, false otherwise (and default);
56+
* `metadataURL` - custom metadata endpoint;
5557
* `localDatacenter` - name of the datacenter local to the application being connected;
5658
* `secureConnection` - boolean value, true if TLS should be enforced (normally configured via `grpc://` or `grpcs://` scheme in the JDBC URL);
5759
* `secureConnectionCertificate` - custom CA certificate for TLS connections, can be passed either as literal value or as a file reference.

jdbc-shaded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>tech.ydb.jdbc</groupId>
88
<artifactId>ydb-jdbc-driver-parent</artifactId>
9-
<version>2.1.0-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
</parent>
1111

1212
<artifactId>ydb-jdbc-driver-shaded</artifactId>

jdbc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>tech.ydb.jdbc</groupId>
88
<artifactId>ydb-jdbc-driver-parent</artifactId>
9-
<version>2.1.0-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010
</parent>
1111

1212
<artifactId>ydb-jdbc-driver</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>tech.ydb.jdbc</groupId>
77

88
<artifactId>ydb-jdbc-driver-parent</artifactId>
9-
<version>2.1.0-SNAPSHOT</version>
9+
<version>2.1.0</version>
1010

1111
<name>YDB JDBC Module</name>
1212
<description>JDBC Driver over YDB Java SDK</description>

0 commit comments

Comments
 (0)