Skip to content

Commit d123a01

Browse files
committed
New release version v2.2.7
1 parent 78ecf1c commit d123a01

File tree

16 files changed

+26
-15
lines changed

16 files changed

+26
-15
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.2.7 ##
2+
3+
* Query: fixed NPE in QueryStream implementation
4+
* OAuth2 provider: added support of mode with config file
5+
16
## 2.2.6 ##
27

38
* Table: added support of NullType & PgType

README.md

+7-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.2.6</version>
33+
<version>2.2.7</version>
3434
<type>pom</type>
3535
<scope>import</scope>
3636
</dependency>
@@ -53,6 +53,12 @@ After that you can specify the SDK modules that your project needs in the depend
5353
<artifactId>ydb-sdk-table</artifactId>
5454
</dependency>
5555

56+
<!-- Query service client -->
57+
<dependency>
58+
<groupId>tech.ydb</groupId>
59+
<artifactId>ydb-sdk-query</artifactId>
60+
</dependency>
61+
5662
<!-- Topic service client -->
5763
<dependency>
5864
<groupId>tech.ydb</groupId>

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.2.7-SNAPSHOT</version>
8+
<version>2.2.7</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.2.7-SNAPSHOT</version>
9+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</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.2.7-SNAPSHOT</version>
11+
<version>2.2.7</version>
1212
</parent>
1313

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

0 commit comments

Comments
 (0)