Skip to content

Commit b65052f

Browse files
authored
Merge pull request #292 from alex268/master
New version v2.2.6
2 parents b024205 + e33c4be commit b65052f

File tree

17 files changed

+22
-18
lines changed

17 files changed

+22
-18
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 2.2.6 ##
2+
3+
* Table: added support of NullType & PgType
4+
* Core: improved grpc calls logging
5+
* Query: added support of warning issues
6+
17
## 2.2.5 ##
28

39
* Core: fixed work with ready operations

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.2.5</version>
33+
<version>2.2.6</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.2.6-SNAPSHOT</version>
8+
<version>2.2.6</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.6-SNAPSHOT</version>
9+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</version>
1212
<relativePath>../../pom.xml</relativePath>
1313
</parent>
1414

tests/common/src/main/java/tech/ydb/test/integration/YdbHelperFactory.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package tech.ydb.test.integration;
22

3-
import com.google.common.annotations.VisibleForTesting;
43
import org.slf4j.Logger;
54
import org.slf4j.LoggerFactory;
65
import org.testcontainers.DockerClientFactory;
@@ -20,8 +19,7 @@ public static YdbHelperFactory getInstance() {
2019
return SingletonHelper.INSTANCE;
2120
}
2221

23-
@VisibleForTesting
24-
static YdbHelperFactory createYdbHelper(YdbEnvironment env) {
22+
public static YdbHelperFactory createYdbHelper(YdbEnvironment env) {
2523
if (env.disableIntegrationTests()) {
2624
logger.info("ydb helper is disabled");
2725
return new DisabledFactory();

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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</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.6-SNAPSHOT</version>
11+
<version>2.2.6</version>
1212
</parent>
1313

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

0 commit comments

Comments
 (0)