Skip to content

Commit fdb2bba

Browse files
[jdbc] Upgrade PostgreSQL JDBC driver to 42.4.4 (openhab#16444)
* Bump org.postgresql:postgresql in /bundles/org.openhab.persistence.jdbc Bumps [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) from 42.4.3 to 42.4.4. - [Release notes](https://github.com/pgjdbc/pgjdbc/releases) - [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md) - [Commits](pgjdbc/pgjdbc@REL42.4.3...REL42.4.4) --- updated-dependencies: - dependency-name: org.postgresql:postgresql dependency-type: direct:production ... Signed-off-by: Jacob Laursen <[email protected]>
1 parent 53694df commit fdb2bba

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

bundles/org.openhab.persistence.jdbc/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ The following databases are currently supported and tested:
1414
| [HSQLDB](http://hsqldb.org/) | [hsqldb-2.3.3.jar](https://mvnrepository.com/artifact/org.hsqldb/hsqldb) |
1515
| [MariaDB](https://mariadb.org/) | [mariadb-java-client-3.0.8.jar](https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client) |
1616
| [MySQL](https://www.mysql.com/) | [mysql-connector-j-8.2.0.jar](https://mvnrepository.com/artifact/com.mysql/mysql-connector-j) |
17-
| [PostgreSQL](https://www.postgresql.org/) | [postgresql-42.4.3.jar](https://mvnrepository.com/artifact/org.postgresql/postgresql) |
17+
| [PostgreSQL](https://www.postgresql.org/) | [postgresql-42.4.4.jar](https://mvnrepository.com/artifact/org.postgresql/postgresql) |
1818
| [SQLite](https://www.sqlite.org/) | [sqlite-jdbc-3.42.0.0.jar](https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc) |
19-
| [TimescaleDB](https://www.timescale.com/) | [postgresql-42.4.3.jar](https://mvnrepository.com/artifact/org.postgresql/postgresql) |
19+
| [TimescaleDB](https://www.timescale.com/) | [postgresql-42.4.4.jar](https://mvnrepository.com/artifact/org.postgresql/postgresql) |
2020

2121
## Table of Contents
2222

bundles/org.openhab.persistence.jdbc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<hsqldb.version>2.3.3</hsqldb.version>
3131
<mariadb.version>3.0.8</mariadb.version>
3232
<mysql.version>8.2.0</mysql.version>
33-
<postgresql.version>42.4.3</postgresql.version>
33+
<postgresql.version>42.4.4</postgresql.version>
3434
<sqlite.version>3.42.0.0</sqlite.version>
3535
</properties>
3636

bundles/org.openhab.persistence.jdbc/src/main/feature/feature.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<feature name="openhab-persistence-jdbc-postgresql" description="JDBC Persistence PostgreSQL" version="${project.version}">
4242
<configfile finalname="${openhab.conf}/services/jdbc.cfg" override="false">mvn:org.openhab.addons.features.karaf/org.openhab.addons.features.karaf.openhab-addons-external/${project.version}/cfg/jdbc</configfile>
4343
<feature prerequisite="false" dependency="false">openhab-runtime-base</feature>
44-
<bundle start-level="80">mvn:org.postgresql/postgresql/42.4.3</bundle>
44+
<bundle start-level="80">mvn:org.postgresql/postgresql/42.4.4</bundle>
4545
<bundle start-level="80">mvn:org.openhab.addons.bundles/org.openhab.persistence.jdbc/${project.version}</bundle>
4646
</feature>
4747

bundles/org.openhab.persistence.jdbc/src/main/java/org/openhab/persistence/jdbc/internal/JdbcConfiguration.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ private void testJDBCDriver(String driver) {
333333
warn += "\tMySQL: version >= 8.2.0 from https://mvnrepository.com/artifact/com.mysql/mysql-connector-j\n";
334334
break;
335335
case "postgresql":
336-
warn += "\tPostgreSQL:version >= 42.4.3 from https://mvnrepository.com/artifact/org.postgresql/postgresql\n";
336+
warn += "\tPostgreSQL:version >= 42.4.4 from https://mvnrepository.com/artifact/org.postgresql/postgresql\n";
337337
break;
338338
case "sqlite":
339339
warn += "\tSQLite: version >= 3.42.0.0 from https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc\n";

0 commit comments

Comments
 (0)