Skip to content

Commit

Permalink
LDEV-5137 update postgres to 42.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer committed Nov 5, 2024
1 parent 38357d7 commit a8f0219
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main/java/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ Require-Bundle: org.apache.commons.commons-codec;bundle-version=1.15.0,
org.lucee.janinocc;bundle-version=3.1.9
Require-Extension: 7E673D15-D87C-41A6-8B5F1956528C605F;name=MySQL;label=MySQL;version=9.1.0,
99A4EF8D-F2FD-40C8-8FB8C2E67A4EEEB6;name=MSSQL;label=MS SQL Server;version=12.4.2.jre8,
671B01B8-B3B3-42B9-AC055A356BED5281;name=PostgreSQL;label=PostgreSQL;version=42.7.3,
671B01B8-B3B3-42B9-AC055A356BED5281;name=PostgreSQL;label=PostgreSQL;version=42.7.4,
2BCD080F-4E1E-48F5-BEFE794232A21AF6;name=JDTsSQL;label=jTDS (MSSQL);version=1.3.1,
CED6227E-0F49-6367-A68D21AACA6B07E8;name=Admin;label=Lucee Administrator;version=1.0.0.5,
D46D49C3-EB85-8D97-30BEC2F38561E985;name=Doc;label=Lucee Documentation;version=1.0.0.4,
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/lucee/runtime/db/DBUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static DataSourceDefintion getDataSourceDefintionForType(Config config, S
}
if ("postgresql".equals(type) || "postgre".equals(type)) {
if (POSTGRESQL == null) {
JDBCDriver jdbc = getJDBCDriver(config, "postgresql", "org.postgresql.Driver", "org.postgresql.jdbc", "42.2.20", "jdbc:postgresql://{host}:{port}/{database}");
JDBCDriver jdbc = getJDBCDriver(config, "postgresql", "org.postgresql.Driver", "org.postgresql.jdbc", "42.7.4", "jdbc:postgresql://{host}:{port}/{database}");
POSTGRESQL = new DataSourceDefintion(jdbc.cd, jdbc.connStr, 5432);
}
return POSTGRESQL;
Expand Down
2 changes: 1 addition & 1 deletion test/_setupTestServices.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ component {
return {
class: 'org.postgresql.Driver'
, bundleName: 'org.postgresql.jdbc'
, bundleVersion: server.getDefaultBundleVersion( 'org.postgresql.jdbc', '42.7.3' )
, bundleVersion: server.getDefaultBundleVersion( 'org.postgresql.jdbc', '42.7.4' )
, connectionString: 'jdbc:postgresql://#pgsql.server#:#pgsql.port#/#pgsql.database#' & arguments.connectionString
, username: pgsql.username
, password: pgsql.password
Expand Down

0 comments on commit a8f0219

Please sign in to comment.