Skip to content

Commit 3485825

Browse files
committed
Merge branch 'DBTOOLS-1821_dep' into 'master'
DBTOOLS-1821 updated dependencies See merge request codekeeper/pgcodekeeper-cli!19
2 parents bbc33ca + 5d3b7c5 commit 3485825

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1111

1212
### Changed
1313

14+
- Updated library dependencies. To use [Windows authentication](https://pgcodekeeper.readthedocs.io/en/latest/windowsauth.html#id2) you need to update [DDL](https://github.com/microsoft/mssql-jdbc/releases/tag/v13.2.1).
15+
1416
### Fixed
1517

1618
## [13.0.0] - 2025-11-12

CHANGELOG.ru.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
### Изменено
1313

14+
- Обновлены библиотечные зависимости. Для использования [Windows аутентификации](https://pgcodekeeper.readthedocs.io/ru/latest/windowsauth.html#id2) требуется обновить [DDL](https://github.com/microsoft/mssql-jdbc/releases/tag/v13.2.1).
15+
1416
### Исправлено
1517

1618
## [13.0.0] - 2025-11-12

pom.xml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,8 @@
3838
<sonar.java.target>${java.version}</sonar.java.target>
3939
<sonar.core.coveragePlugin>jacoco</sonar.core.coveragePlugin>
4040
<sonar.exclusions>**/*.sql, **/*.xml, **/generated/**, **/Messages.java</sonar.exclusions>
41-
<maven.source.version>3.3.1</maven.source.version>
4241

43-
<java.version>17</java.version>
42+
<logback.version>1.5.21</logback.version>
4443
</properties>
4544

4645
<dependencies>
@@ -52,12 +51,12 @@
5251
<dependency>
5352
<groupId>ch.qos.logback</groupId>
5453
<artifactId>logback-core</artifactId>
55-
<version>1.5.18</version>
54+
<version>${logback.version}</version>
5655
</dependency>
5756
<dependency>
5857
<groupId>ch.qos.logback</groupId>
5958
<artifactId>logback-classic</artifactId>
60-
<version>1.5.18</version>
59+
<version>${logback.version}</version>
6160
<scope>compile</scope>
6261
</dependency>
6362
<dependency>
@@ -68,7 +67,7 @@
6867
<dependency>
6968
<groupId>org.junit.jupiter</groupId>
7069
<artifactId>junit-jupiter</artifactId>
71-
<version>5.13.4</version>
70+
<version>5.14.1</version>
7271
<scope>test</scope>
7372
</dependency>
7473
</dependencies>
@@ -78,7 +77,7 @@
7877
<plugin>
7978
<groupId>org.apache.maven.plugins</groupId>
8079
<artifactId>maven-assembly-plugin</artifactId>
81-
<version>3.7.0</version>
80+
<version>3.7.1</version>
8281
<executions>
8382
<execution>
8483
<id>bundle</id>
@@ -119,15 +118,15 @@
119118
<plugin>
120119
<groupId>org.apache.maven.plugins</groupId>
121120
<artifactId>maven-compiler-plugin</artifactId>
122-
<version>3.12.1</version>
121+
<version>3.14.1</version>
123122
<configuration>
124123
<release>${java.version}</release>
125124
</configuration>
126125
</plugin>
127126
<plugin>
128127
<groupId>org.apache.maven.plugins</groupId>
129128
<artifactId>maven-surefire-plugin</artifactId>
130-
<version>3.2.5</version>
129+
<version>3.5.4</version>
131130
</plugin>
132131
</plugins>
133132
</build>
@@ -140,7 +139,7 @@
140139
<plugin>
141140
<groupId>org.jacoco</groupId>
142141
<artifactId>jacoco-maven-plugin</artifactId>
143-
<version>0.8.13</version>
142+
<version>0.8.14</version>
144143
<executions>
145144
<execution>
146145
<id>prepare-agent</id>

0 commit comments

Comments
 (0)