8 次代碼提交 08cc1f1a30 ... e0d6d8bd8d

作者 SHA1 備註 提交日期
  dependabot[bot] e0d6d8bd8d Bump io.freefair.gradle:lombok-plugin from 8.7.1 to 8.10 (#6417) 8 月之前
  dependabot[bot] eebcd4ad06 Bump org.xerial:sqlite-jdbc from 3.46.0.1 to 3.46.1.0 (#6415) 8 月之前
  dependabot[bot] d9e06264f6 Bump tech.yanand.maven-central-publish:tech.yanand.maven-central-publish.gradle.plugin (#6418) 8 月之前
  dependabot[bot] 39290d63d8 Bump io.github.classgraph:classgraph from 4.8.174 to 4.8.175 (#6419) 8 月之前
  zhangyuhang 672b98ff23 解决DataChangeRecorderInnerInterceptor出现格式转换错误org.postgresql.util.PSQLException: conversion to class (#6416) 8 月之前
  dependabot[bot] 345262cc7a Bump ch.qos.logback:logback-classic from 1.5.6 to 1.5.7 (#6409) 8 月之前
  dependabot[bot] 8f411760dc Bump org.junit.jupiter:junit-jupiter from 5.10.3 to 5.11.0 (#6407) 8 月之前
  dependabot[bot] 0b32d06ac5 Bump com.h2database:h2 from 2.3.230 to 2.3.232 (#6401) 8 月之前

+ 4 - 4
build.gradle

@@ -19,7 +19,7 @@ ext {
         springBoot3Version = '3.3.2',
         springBoot3Version = '3.3.2',
         springCloudVersion = '3.1.8',
         springCloudVersion = '3.1.8',
         jsqlparserVersion = '5.0',
         jsqlparserVersion = '5.0',
-        junitVersion = '5.10.3',
+        junitVersion = '5.11.0',
     ]
     ]
 
 
     lib = [
     lib = [
@@ -58,9 +58,9 @@ ext {
         "postgresql"                 : "org.postgresql:postgresql:42.7.3",
         "postgresql"                 : "org.postgresql:postgresql:42.7.3",
         "oracle"                     : fileTree(dir: 'libs', includes: ['ojdbc8.jar']),
         "oracle"                     : fileTree(dir: 'libs', includes: ['ojdbc8.jar']),
         "dm"                         : fileTree(dir: 'libs', includes: ["jdbcDriver-18.jar"]),
         "dm"                         : fileTree(dir: 'libs', includes: ["jdbcDriver-18.jar"]),
-        "h2"                         : "com.h2database:h2:2.3.230",
+        "h2"                         : "com.h2database:h2:2.3.232",
         "mysql"                      : "com.mysql:mysql-connector-j:9.0.0",
         "mysql"                      : "com.mysql:mysql-connector-j:9.0.0",
-        "sqlite"                     : "org.xerial:sqlite-jdbc:3.46.0.1",
+        "sqlite"                     : "org.xerial:sqlite-jdbc:3.46.1.0",
         "firebird"                   : "org.firebirdsql.jdbc:jaybird:5.0.5.java8",
         "firebird"                   : "org.firebirdsql.jdbc:jaybird:5.0.5.java8",
         //cache
         //cache
         "mybatis-caffeine"           : "org.mybatis.caches:mybatis-caffeine:1.0.0",
         "mybatis-caffeine"           : "org.mybatis.caches:mybatis-caffeine:1.0.0",
@@ -70,7 +70,7 @@ ext {
         "beetl"               : "com.ibeetl:beetl:3.17.0.RELEASE",
         "beetl"               : "com.ibeetl:beetl:3.17.0.RELEASE",
         "swagger-annotations" : "io.swagger:swagger-annotations:1.6.14",
         "swagger-annotations" : "io.swagger:swagger-annotations:1.6.14",
         "enjoy"               : "com.jfinal:enjoy:5.1.3",
         "enjoy"               : "com.jfinal:enjoy:5.1.3",
-        "logback-classic"     : "ch.qos.logback:logback-classic:1.5.6",
+        "logback-classic"     : "ch.qos.logback:logback-classic:1.5.7",
     ]
     ]
 }
 }
 
 

+ 1 - 1
mybatis-plus-extension/build.gradle

@@ -22,7 +22,7 @@ dependencies {
     implementation "${lib.'mybatis-freemarker'}"
     implementation "${lib.'mybatis-freemarker'}"
     implementation "de.ruedigermoeller:fst:3.0.4-jdk17"
     implementation "de.ruedigermoeller:fst:3.0.4-jdk17"
     implementation "com.github.ben-manes.caffeine:caffeine:2.9.3"
     implementation "com.github.ben-manes.caffeine:caffeine:2.9.3"
-    testImplementation "io.github.classgraph:classgraph:4.8.174"
+    testImplementation "io.github.classgraph:classgraph:4.8.175"
     testImplementation "${lib.h2}"
     testImplementation "${lib.h2}"
     testImplementation "${lib.mysql}"
     testImplementation "${lib.mysql}"
     testImplementation "${lib.'logback-classic'}"
     testImplementation "${lib.'logback-classic'}"

+ 2 - 2
mybatis-plus-extension/src/main/java/com/baomidou/mybatisplus/extension/plugins/inner/DataChangeRecorderInnerInterceptor.java

@@ -350,7 +350,7 @@ public class DataChangeRecorderInnerInterceptor implements InnerInterceptor {
                     }
                     }
                 } else {
                 } else {
                     if (columnName != null) {
                     if (columnName != null) {
-                        columnNameValMap.put(columnName, String.valueOf(metaObject.getValue(propertyName)));
+                        columnNameValMap.put(columnName, metaObject.getValue(propertyName));
                     }
                     }
                 }
                 }
             } catch (Exception e) {
             } catch (Exception e) {
@@ -430,7 +430,7 @@ public class DataChangeRecorderInnerInterceptor implements InnerInterceptor {
                         if (setVal instanceof IEnum) {
                         if (setVal instanceof IEnum) {
                             columnNameValMap.put(setColName, String.valueOf(((IEnum<?>) setVal).getValue()));
                             columnNameValMap.put(setColName, String.valueOf(((IEnum<?>) setVal).getValue()));
                         } else {
                         } else {
-                            columnNameValMap.put(setColName, String.valueOf(setVal));
+                            columnNameValMap.put(setColName, setVal);
                         }
                         }
                     }
                     }
                 }
                 }

+ 2 - 2
settings.gradle

@@ -9,8 +9,8 @@ buildscript {
     dependencies {
     dependencies {
         //noinspection DifferentKotlinGradleVersion
         //noinspection DifferentKotlinGradleVersion
         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.10"
         classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.10"
-        classpath "io.freefair.gradle:lombok-plugin:8.7.1"
-        classpath "tech.yanand.maven-central-publish:tech.yanand.maven-central-publish.gradle.plugin:1.1.1"
+        classpath "io.freefair.gradle:lombok-plugin:8.10"
+        classpath "tech.yanand.maven-central-publish:tech.yanand.maven-central-publish.gradle.plugin:1.2.0"
     }
     }
 }
 }