Commit fdb2bba 1 parent 53694df commit fdb2bba Copy full SHA for fdb2bba
File tree 4 files changed +5
-5
lines changed
bundles/org.openhab.persistence.jdbc
java/org/openhab/persistence/jdbc/internal
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ The following databases are currently supported and tested:
14
14
| [ HSQLDB] ( http://hsqldb.org/ ) | [ hsqldb-2.3.3.jar] ( https://mvnrepository.com/artifact/org.hsqldb/hsqldb ) |
15
15
| [ MariaDB] ( https://mariadb.org/ ) | [ mariadb-java-client-3.0.8.jar] ( https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client ) |
16
16
| [ 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 ) |
18
18
| [ 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 ) |
20
20
21
21
## Table of Contents
22
22
Original file line number Diff line number Diff line change 30
30
<hsqldb .version>2.3.3</hsqldb .version>
31
31
<mariadb .version>3.0.8</mariadb .version>
32
32
<mysql .version>8.2.0</mysql .version>
33
- <postgresql .version>42.4.3 </postgresql .version>
33
+ <postgresql .version>42.4.4 </postgresql .version>
34
34
<sqlite .version>3.42.0.0</sqlite .version>
35
35
</properties >
36
36
Original file line number Diff line number Diff line change 41
41
<feature name =" openhab-persistence-jdbc-postgresql" description =" JDBC Persistence PostgreSQL" version =" ${project.version}" >
42
42
<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 >
43
43
<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 >
45
45
<bundle start-level =" 80" >mvn:org.openhab.addons.bundles/org.openhab.persistence.jdbc/${project.version}</bundle >
46
46
</feature >
47
47
Original file line number Diff line number Diff line change @@ -333,7 +333,7 @@ private void testJDBCDriver(String driver) {
333
333
warn += "\t MySQL: version >= 8.2.0 from https://mvnrepository.com/artifact/com.mysql/mysql-connector-j\n " ;
334
334
break ;
335
335
case "postgresql" :
336
- warn += "\t PostgreSQL:version >= 42.4.3 from https://mvnrepository.com/artifact/org.postgresql/postgresql\n " ;
336
+ warn += "\t PostgreSQL:version >= 42.4.4 from https://mvnrepository.com/artifact/org.postgresql/postgresql\n " ;
337
337
break ;
338
338
case "sqlite" :
339
339
warn += "\t SQLite: version >= 3.42.0.0 from https://mvnrepository.com/artifact/org.xerial/sqlite-jdbc\n " ;
You can’t perform that action at this time.
0 commit comments