Skip to content

Commit ae41b8b

Browse files
committed
New snapshot version v2.3.1
1 parent cc7bfa0 commit ae41b8b

File tree

16 files changed

+22
-16
lines changed

16 files changed

+22
-16
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
## 2.3.1 ##
2+
3+
* Query: added removing of query session if client cancelled query
4+
* Core: increased default timeouts of shutdown
5+
* Core: fixed work with grpc-netty instead of grpc-netty-shaded
6+
17
## 2.3.0 ##
28

39
* Core: fixed JWT token parser
4-
* Query: updated TableClientimplementation
10+
* Query: updated TableClient implementation
511

612
## 2.2.11 ##
713

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Firstly you can import YDB Java BOM to specify correct versions of SDK modules.
3030
<dependency>
3131
<groupId>tech.ydb</groupId>
3232
<artifactId>ydb-sdk-bom</artifactId>
33-
<version>2.3.0</version>
33+
<version>2.3.1</version>
3434
<type>pom</type>
3535
<scope>import</scope>
3636
</dependency>

auth-providers/oauth2-provider/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>tech.ydb</groupId>
77
<artifactId>ydb-sdk-parent</artifactId>
8-
<version>2.3.1-SNAPSHOT</version>
8+
<version>2.3.1</version>
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>
1111

bom/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<modelVersion>4.0.0</modelVersion>
77

88
<groupId>tech.ydb</groupId>
9-
<version>2.3.1-SNAPSHOT</version>
9+
<version>2.3.1</version>
1010
<artifactId>ydb-sdk-bom</artifactId>
1111
<name>Java SDK Bill of Materials</name>
1212
<description>Java SDK Bill of Materials (BOM)</description>

common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
</parent>
1313

1414
<artifactId>ydb-sdk-common</artifactId>

coordination/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
</parent>
1313

1414
<artifactId>ydb-sdk-coordination</artifactId>

core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
</parent>
1313

1414
<artifactId>ydb-sdk-core</artifactId>

export/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
</parent>
1313

1414
<artifactId>ydb-sdk-export</artifactId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212

1313
<name>Java SDK for YDB</name>
1414
<description>Java SDK for YDB</description>

query/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
</parent>
1313

1414
<artifactId>ydb-sdk-query</artifactId>

scheme/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
</parent>
1313

1414
<artifactId>ydb-sdk-scheme</artifactId>

table/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
</parent>
1313

1414
<artifactId>ydb-sdk-table</artifactId>

tests/common/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

tests/junit4-support/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

tests/junit5-support/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

topic/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>tech.ydb</groupId>
1010
<artifactId>ydb-sdk-parent</artifactId>
11-
<version>2.3.1-SNAPSHOT</version>
11+
<version>2.3.1</version>
1212
</parent>
1313

1414
<artifactId>ydb-sdk-topic</artifactId>

0 commit comments

Comments
 (0)