Christoph Berg pushed to branch master at Debian Java Maintainers / 
libpostgresql-jdbc-java


Commits:
515be74b by Christoph Berg at 2023-02-17T18:19:26+01:00
New upstream version 42.5.4
- - - - -
c7a47770 by Christoph Berg at 2023-02-17T18:19:30+01:00
Update upstream source from tag 'upstream/42.5.4'

Update to upstream version '42.5.4'
with Debian dir 6080f7a410197fdb55cce1c61379e1d889d698f9
- - - - -
e00ada2b by Christoph Berg at 2023-02-17T18:19:58+01:00
New upstream version 42.5.4.

- - - - -


6 changed files:

- debian/changelog
- pom.xml
- src/main/java/org/postgresql/util/DriverInfo.java
- src/main/resources/META-INF/MANIFEST.MF
- src/test/java/org/postgresql/core/OidValuesCorrectnessTest.java
- src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataCacheTest.java


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,9 @@
+libpgjava (42.5.4-1) unstable; urgency=medium
+
+  * New upstream version 42.5.4.
+
+ -- Christoph Berg <m...@debian.org>  Fri, 17 Feb 2023 18:19:35 +0100
+
 libpgjava (42.5.3-1) unstable; urgency=medium
 
   * New upstream version 42.5.3.


=====================================
pom.xml
=====================================
@@ -10,7 +10,7 @@
     <artifactId>postgresql</artifactId>
     <packaging>jar</packaging>
     <name>PostgreSQL JDBC Driver - JDBC 4.2</name>
-    <version>42.5.3</version>
+    <version>42.5.4</version>
     <description>Java JDBC 4.2 (JRE 8+) driver for PostgreSQL 
database</description>
     <url>https://github.com/pgjdbc/pgjdbc</url>
 


=====================================
src/main/java/org/postgresql/util/DriverInfo.java
=====================================
@@ -16,13 +16,13 @@ public final class DriverInfo {
   // Driver name
   public static final String DRIVER_NAME = "PostgreSQL JDBC Driver";
   public static final String DRIVER_SHORT_NAME = "PgJDBC";
-  public static final String DRIVER_VERSION = "42.5.3";
+  public static final String DRIVER_VERSION = "42.5.4";
   public static final String DRIVER_FULL_NAME = DRIVER_NAME + " " + 
DRIVER_VERSION;
 
   // Driver version
   public static final int MAJOR_VERSION = 42;
   public static final int MINOR_VERSION = 5;
-  public static final int PATCH_VERSION = 3;
+  public static final int PATCH_VERSION = 4;
 
   // JDBC specification
   public static final String JDBC_VERSION = "4.2";


=====================================
src/main/resources/META-INF/MANIFEST.MF
=====================================
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
 Implementation-Title: PostgreSQL JDBC Driver
 Bundle-License: BSD-2-Clause
 Automatic-Module-Name: org.postgresql.jdbc
-Implementation-Version: 42.5.3
+Implementation-Version: 42.5.4
 Specification-Vendor: Oracle Corporation
 Specification-Title: JDBC
 Implementation-Vendor-Id: org.postgresql


=====================================
src/test/java/org/postgresql/core/OidValuesCorrectnessTest.java
=====================================
@@ -61,6 +61,7 @@ public class OidValuesCorrectnessTest extends BaseTest4 {
    * Helps in situation when variable name in Oid class isn't the same as 
typname in pg_type table.
    */
   private static Map<String, String> oidTypeNames = new HashMap<String, 
String>() {{
+      put("BOX_ARRAY", "_BOX");
       put("INT2_ARRAY", "_INT2");
       put("INT4_ARRAY", "_INT4");
       put("INT8_ARRAY", "_INT8");


=====================================
src/test/java/org/postgresql/test/jdbc2/DatabaseMetaDataCacheTest.java
=====================================
@@ -62,11 +62,11 @@ public class DatabaseMetaDataCacheTest {
     List<LogRecord> typeQueries = 
log.getRecordsMatching(SQL_TYPE_QUERY_LOG_FILTER);
     assertEquals(0, typeQueries.size());
 
-    ti.getSQLType("box");  // this must be a type not in the hardcoded 'types' 
list
+    ti.getSQLType("xid");  // this must be a type not in the hardcoded 'types' 
list
     typeQueries = log.getRecordsMatching(SQL_TYPE_QUERY_LOG_FILTER);
     assertEquals(1, typeQueries.size());
 
-    ti.getSQLType("box");  // this time it should be retrieved from the cache
+    ti.getSQLType("xid");  // this time it should be retrieved from the cache
     typeQueries = log.getRecordsMatching(SQL_TYPE_QUERY_LOG_FILTER);
     assertEquals(1, typeQueries.size());
   }



View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/compare/c7db7bab35fc864d66c72c7df5a58c132b5660f1...e00ada2b227d380a5ed0d041e3bb62db725dd9c5

-- 
View it on GitLab: 
https://salsa.debian.org/java-team/libpostgresql-jdbc-java/-/compare/c7db7bab35fc864d66c72c7df5a58c132b5660f1...e00ada2b227d380a5ed0d041e3bb62db725dd9c5
You're receiving this email because of your account on salsa.debian.org.


_______________________________________________
pkg-java-commits mailing list
pkg-java-comm...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to