Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions jooq-dialect/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0 ##

- Upgrade to JOOQ 3.21 and JDK 21.

## 1.3.1 ##

- Fixed bug: Allow setting fields in UpdateOperation without aliasing names ([pr](https://github.com/ydb-platform/ydb-java-dialects/pull/201)).
Expand Down
26 changes: 14 additions & 12 deletions jooq-dialect/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>tech.ydb.dialects</groupId>
<artifactId>jooq-ydb-dialect</artifactId>
<version>1.3.1</version>
<version>2.0.0</version>

<name>YDB JOOQ Dialect module</name>
<description>YDB JOOQ Dialect module</description>
Expand Down Expand Up @@ -52,8 +52,8 @@

<jooq.version>3.21.0</jooq.version>

<ydb.sdk.version>2.3.8</ydb.sdk.version>
<ydb.jdbc.version>2.3.11</ydb.jdbc.version>
<ydb.sdk.version>2.4.7</ydb.sdk.version>
<ydb.jdbc.version>2.4.0</ydb.jdbc.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -82,16 +82,18 @@
<version>${ydb.sdk.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.1</version>
<version>5.14.3</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.21</version>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.32</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -101,9 +103,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<version>3.12.0</version>
<configuration>
<source>17</source>
<source>21</source>
</configuration>
<executions>
<execution>
Expand All @@ -117,7 +119,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand All @@ -130,7 +132,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.0</version>
<version>3.5.5</version>
<configuration>
<environmentVariables>
<TESTCONTAINERS_REUSE_ENABLE>true</TESTCONTAINERS_REUSE_ENABLE>
Expand All @@ -153,7 +155,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<version>3.2.8</version>
<executions>
<execution>
<id>sign-artifacts</id>
Expand Down
25 changes: 25 additions & 0 deletions jooq-dialect/src/test/resources/logback.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration
xmlns="http://ch.qos.logback/xml/ns/logback"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://ch.qos.logback/xml/ns/logback https://raw.githubusercontent.com/enricopulatzo/logback-XSD/master/src/main/xsd/logback.xsd">

<appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>[%level]\t%d{HH:mm:ss.SSS} [%t] %logger{36} - %msg%n</pattern>
</encoder>
</appender>

<logger name="io.grpc" level="info" />
<logger name="io.netty" level="info" />

<logger name="tech.ydb" level="info" />

<logger name="org.testcontainers" level="warn" />
<logger name="com.github.dockerjava" level="warn"/>
<logger name="com.github.dockerjava.zerodep.shaded.org.apache.hc.client5.http.wire" level="off"/>

<root level="debug">
<appender-ref ref="stdout" />
</root>
</configuration>
Loading