File tree 17 files changed +22
-18
lines changed
auth-providers/oauth2-provider
src/main/java/tech/ydb/test/integration
17 files changed +22
-18
lines changed Original file line number Diff line number Diff line change
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
+
1
7
## 2.2.5 ##
2
8
3
9
* Core: fixed work with ready operations
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Firstly you can import YDB Java BOM to specify correct versions of SDK modules.
30
30
<dependency >
31
31
<groupId >tech.ydb</groupId >
32
32
<artifactId >ydb-sdk-bom</artifactId >
33
- <version >2.2.5 </version >
33
+ <version >2.2.6 </version >
34
34
<type >pom</type >
35
35
<scope >import</scope >
36
36
</dependency >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >tech.ydb</groupId >
7
7
<artifactId >ydb-sdk-parent</artifactId >
8
- <version >2.2.6-SNAPSHOT </version >
8
+ <version >2.2.6</version >
9
9
<relativePath >../../pom.xml</relativePath >
10
10
</parent >
11
11
Original file line number Diff line number Diff line change 6
6
<modelVersion >4.0.0</modelVersion >
7
7
8
8
<groupId >tech.ydb</groupId >
9
- <version >2.2.6-SNAPSHOT </version >
9
+ <version >2.2.6</version >
10
10
<artifactId >ydb-sdk-bom</artifactId >
11
11
<name >Java SDK Bill of Materials</name >
12
12
<description >Java SDK Bill of Materials (BOM)</description >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
</parent >
13
13
14
14
<artifactId >ydb-sdk-common</artifactId >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
</parent >
13
13
14
14
<artifactId >ydb-sdk-coordination</artifactId >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
</parent >
13
13
14
14
<artifactId >ydb-sdk-core</artifactId >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
</parent >
13
13
14
14
<artifactId >ydb-sdk-export</artifactId >
Original file line number Diff line number Diff line change 8
8
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
13
13
<name >Java SDK for YDB</name >
14
14
<description >Java SDK for YDB</description >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
</parent >
13
13
14
14
<artifactId >ydb-sdk-query</artifactId >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
</parent >
13
13
14
14
<artifactId >ydb-sdk-scheme</artifactId >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
</parent >
13
13
14
14
<artifactId >ydb-sdk-table</artifactId >
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
<relativePath >../../pom.xml</relativePath >
13
13
</parent >
14
14
Original file line number Diff line number Diff line change 1
1
package tech .ydb .test .integration ;
2
2
3
- import com .google .common .annotations .VisibleForTesting ;
4
3
import org .slf4j .Logger ;
5
4
import org .slf4j .LoggerFactory ;
6
5
import org .testcontainers .DockerClientFactory ;
@@ -20,8 +19,7 @@ public static YdbHelperFactory getInstance() {
20
19
return SingletonHelper .INSTANCE ;
21
20
}
22
21
23
- @ VisibleForTesting
24
- static YdbHelperFactory createYdbHelper (YdbEnvironment env ) {
22
+ public static YdbHelperFactory createYdbHelper (YdbEnvironment env ) {
25
23
if (env .disableIntegrationTests ()) {
26
24
logger .info ("ydb helper is disabled" );
27
25
return new DisabledFactory ();
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
<relativePath >../../pom.xml</relativePath >
13
13
</parent >
14
14
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
<relativePath >../../pom.xml</relativePath >
13
13
</parent >
14
14
Original file line number Diff line number Diff line change 8
8
<parent >
9
9
<groupId >tech.ydb</groupId >
10
10
<artifactId >ydb-sdk-parent</artifactId >
11
- <version >2.2.6-SNAPSHOT </version >
11
+ <version >2.2.6</version >
12
12
</parent >
13
13
14
14
<artifactId >ydb-sdk-topic</artifactId >
You can’t perform that action at this time.
0 commit comments