Skip to content

build(deps): bump the maven-non-major group across 1 directory with 53 updates - #2911

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/chat2db-community-server/maven-non-major-e0f30e2a8e
Closed

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/chat2db-community-server/maven-non-major-e0f30e2a8e

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 15, 2026

Copy link
Copy Markdown

Bumps the maven-non-major group with 53 updates in the /chat2db-community-server directory:

Package From To
org.projectlombok:lombok 1.18.44 1.18.48
org.mapstruct:mapstruct-processor 1.5.5.Final 1.6.3
org.mapstruct:mapstruct 1.5.5.Final 1.6.3
org.apache.maven.plugins:maven-compiler-plugin 3.11.0 3.16.0
org.codehaus.mojo:flatten-maven-plugin 1.5.0 1.8.0
org.apache.maven.plugins:maven-surefire-plugin 3.1.2 3.6.0
net.java.dev.jna:jna-platform 5.17.0 5.19.1
io.micrometer:context-propagation 1.2.0 1.2.1
org.antlr:antlr4-runtime 4.13.1 4.13.2
org.antlr:antlr4-maven-plugin 4.13.1 4.13.2
org.apache.commons:commons-collections4 4.4 4.6.0
cn.hutool:hutool-all 5.8.20 5.8.47
com.h2database:h2 2.1.214 2.5.250
com.baomidou:mybatis-plus 3.5.3.1 3.5.17
com.baomidou:mybatis-plus-generator 3.5.3.1 3.5.17
org.freemarker:freemarker 2.3.34 2.3.35
com.aliyun.oss:aliyun-sdk-oss 3.10.2 3.18.5
com.alibaba:druid 1.2.18 1.2.28
cn.dev33:sa-token-spring-boot3-starter 1.34.0 1.46.0
cn.dev33:sa-token-jwt 1.34.0 1.46.0
com.dtflys.forest:forest-core 1.5.32 1.8.1
com.unfbx:chatgpt-java 1.0.8 1.1.5
com.theokanning.openai-gpt3-java:service 0.12.0 0.18.2
commons-beanutils:commons-beanutils 1.9.4 1.11.0
org.ehcache:ehcache 3.10.8 3.12.0
commons-io:commons-io 2.18.0 2.22.0
com.auth0:java-jwt 4.4.0 4.6.1
com.github.vertical-blank:sql-formatter 2.0.4 2.0.5
org.apache.commons:commons-lang3 3.17.0 3.20.0
io.github.classgraph:classgraph 4.8.168 4.8.195
com.formdev:flatlaf 3.6 3.7.2
com.fasterxml.jackson.core:jackson-databind 2.15.3 2.22.2
com.fasterxml.jackson.datatype:jackson-datatype-jsr310 2.15.3 2.22.2
com.fasterxml.jackson.module:jackson-module-afterburner 2.15.0 2.22.2
org.bouncycastle:bcprov-jdk18on 1.71 1.86
org.locationtech.jts:jts-core 1.19.0 1.20.0
org.apache.calcite:calcite-core 1.38.0 1.42.0
org.apache.maven.plugins:maven-antrun-plugin 3.0.0 3.2.0
org.apache.maven.plugins:maven-clean-plugin 3.2.0 3.5.0
org.apache.maven.plugins:maven-dependency-plugin 3.6.1 3.11.0
org.apache.maven.plugins:maven-deploy-plugin 3.1.4 3.2.0
org.apache.maven.plugins:maven-install-plugin 3.1.4 3.2.0
org.apache.maven.plugins:maven-jar-plugin 3.4.2 3.5.1
org.apache.maven.plugins:maven-resources-plugin 3.3.1 3.5.0
org.apache.maven.plugins:maven-source-plugin 3.2.1 3.4.0
org.apache.maven.plugins:maven-shade-plugin 3.6.0 3.6.2
org.postgresql:postgresql 42.5.1 42.7.13
org.duckdb:duckdb_jdbc 1.1.3 1.5.5.1
org.hsqldb:hsqldb 2.7.3 2.7.4
org.apache.derby:derby 10.16.1.1 10.17.1.0
org.apache.derby:derbyshared 10.16.1.1 10.17.1.0
org.apache.derby:derbytools 10.16.1.1 10.17.1.0
org.firebirdsql.jdbc:jaybird 5.0.6.java11 5.0.13.java11

Updates org.projectlombok:lombok from 1.18.44 to 1.18.48

Changelog

Sourced from org.projectlombok:lombok's changelog.

v1.18.48 (September 1st, 2026)

  • BREAKING CHANGE/BUGFIX: @Builder(builderClassName = "Builder") now generates an error, because the type names collide. #3857 (found after release)
  • PLATFORM: JDK27 support added #4072.
  • BUGFIX: @SneakyThrows usage on JDK26 no longer results in class files that require lombok.jar to be on the runtime classpath (which should not be neccessary). #4040.
  • FEATURE: New config key lombok.checkReturnValueAnnotation (values: none, lombok; default: none) lets lombok generate @lombok.CheckReturnValue on generated methods where the return value should not be ignored, such as @With methods and @Builder.build(). A future lombok release may flip the default to lombok. #4013.
  • PROMOTION: @SuperBuilder has been promoted to the main package. Otherwise, no changes have been made to the annotation. The old experimental annotation will remain for a few versions, at which point it will be marked as a deprecated annotation. Eventually it'll be removed. If you had lombok.config configuration for this annotation, the configuration keys for this feature have been renamed. #2209.
  • OLD-CRUFT: lombok.experimental.Wither and lombok.Delegate are deprecated remnants; these features were moved (to respectively lombok.With and lombok.experimental.Delegate over 5 years ago. They are now removed entirely. If your project is dependent on an older version of lombok which still has those; fret not, lombok still processes these annotations. It just no longer includes them in the jar.
  • FEATURE: CheckerFramework: Lombok now adds @SideEffectFree to constructors it makes if you have enabled checker framework via lombok.config.
  • BUGFIX: CheckerFramework: Lombok would add @SideEffectFree to the build() method of any generated builder, even if it is a builder for invoking a method; in that case, the side-effect-free nature of build() mirrors the side-effect-free nature of the method invocation you've built. Lombok now checks if the method it generated a builder for is side effect free / 'check return type'.

v1.18.46 (April 22nd, 2026)

  • PLATFORM: JDK26 support added #4019.
  • PLATFORM: Spring Tools Suite 5 supported #3985.
  • BUGFIX: @Jacksonized no longer stops generating @JsonProperty once an explicit @JsonIgnore annotations is encountered #4022.
  • BUGFIX: In eclipse, mixing @Jacksonized and fluent = true no longer causes the error com.fasterxml.jackson.annotation.JsonProperty is not a repeatable annotation interface. #3934.
  • BUGFIX: Some finishing touches for v1.18.44's support of Jackson3 #4004.
Commits
  • b48657c [version] pre-release version bump v1.18.48
  • d1d0039 Merge branch 'jdk27'
  • 1a23dad [review][refactor] No meaningful changes: Improved comments, javadoc, and cle...
  • 40cdde8 [changelog] JDK27 support
  • 25eae29 Add Danish Nawab to AUTHORS
  • 10ab92b Support JDK27: end positions moved from EndPosTable to JCTree.endpos
  • af01b7a Document the new configuration syntax for listy things
  • 1be3857 There is no more HtAccess
  • 405985d Semantic sections for website
  • 04b7340 [trivial] fixing some outdated tests (tests were broken, not lombok).
  • Additional commits viewable in compare view

Updates org.mapstruct:mapstruct-processor from 1.5.5.Final to 1.6.3

Release notes

Sourced from org.mapstruct:mapstruct-processor's releases.

1.6.3

Bugs

  • Redundant if condition in Java record mapping with RETURN_DEFAULT strategy (#3747)
  • Stackoverflow with Immutables custom builder (#3370)
  • Unused import of java.time.LocalDate when mapping source LocalDateTime to target LocalDate (#3732)

Documentation

  • Add section to README.md comparing mapstruct with Java Records (#3751)

1.6.2

Bugs

  • Regression from 1.6.1: ClassCastException when using records (#3717)

1.6.1

Enhancements

  • Use Java LinkedHashSet and LinkedHashMap new factory method with known capacity when on Java 19 or later (#3113)

Bugs

  • Inverse Inheritance Strategy not working for ignored mappings only with target (#3652)
  • Inconsistent ambiguous mapping method error when using SubclassMapping: generic vs raw types (#3668)
  • Fix regression when using InheritInverseConfiguration with nested target properties and reversing target = "." (#3670)
  • Deep mapping with multiple mappings broken in 1.6.0 (#3667)
  • Two different constants are ignored in 1.6.0 (#3673)
  • Inconsistent ambiguous mapping method error: generic vs raw types in 1.6.0 (#3668)
  • Fix cross module records with interfaces not recognizing accessors (#3661)
  • @AfterMapping methods are called twice when using target with builder (#3678)
  • Compile error when using @AfterMapping method with Builder and TargetObject (#3703)

Behaviour change

Inverse Inheritance Strategy not working for ignored mappings only with target

Prior to this fix @Mapping(target = "myProperty", ignore = true) was being ignored when using @InheritInverseConfiguration.

e.g.

@Mapper
public interface ModelMapper {
@Mapping(target = "creationDate", ignore = true)
Entity toEntity(Model model);    
@InheritInverseConfiguration
Model toModel(Entity entity);

</tr></table>

... (truncated)

Commits
  • b4e25e4 Releasing version 1.6.3
  • 772fae4 Prepare release notes for 1.6.3
  • efdf435 #3751 Improve readme to include support for Java 16+ records
  • c2bd847 #3732 Do not generate obsolete imports for LocalDateTime <-> LocalDate conver...
  • 21fdaa0 #3747 Do not generate redundant if condition with constructor mapping and RET...
  • 32f1fea #3370 Prevent stack overflow error for Immutables with custom builder
  • 26c5bcd Update readme with 1.6.2
  • 4e0d73d Next version 1.7.0-SNAPSHOT
  • 212607b Releasing version 1.6.2
  • 4fd22d6 Prepare release notes for 1.6.2
  • Additional commits viewable in compare view

Updates org.mapstruct:mapstruct from 1.5.5.Final to 1.6.3

Release notes

Sourced from org.mapstruct:mapstruct's releases.

1.6.3

Bugs

  • Redundant if condition in Java record mapping with RETURN_DEFAULT strategy (#3747)
  • Stackoverflow with Immutables custom builder (#3370)
  • Unused import of java.time.LocalDate when mapping source LocalDateTime to target LocalDate (#3732)

Documentation

  • Add section to README.md comparing mapstruct with Java Records (#3751)

1.6.2

Bugs

  • Regression from 1.6.1: ClassCastException when using records (#3717)

1.6.1

Enhancements

  • Use Java LinkedHashSet and LinkedHashMap new factory method with known capacity when on Java 19 or later (#3113)

Bugs

  • Inverse Inheritance Strategy not working for ignored mappings only with target (#3652)
  • Inconsistent ambiguous mapping method error when using SubclassMapping: generic vs raw types (#3668)
  • Fix regression when using InheritInverseConfiguration with nested target properties and reversing target = "." (#3670)
  • Deep mapping with multiple mappings broken in 1.6.0 (#3667)
  • Two different constants are ignored in 1.6.0 (#3673)
  • Inconsistent ambiguous mapping method error: generic vs raw types in 1.6.0 (#3668)
  • Fix cross module records with interfaces not recognizing accessors (#3661)
  • @AfterMapping methods are called twice when using target with builder (#3678)
  • Compile error when using @AfterMapping method with Builder and TargetObject (#3703)

Behaviour change

Inverse Inheritance Strategy not working for ignored mappings only with target

Prior to this fix @Mapping(target = "myProperty", ignore = true) was being ignored when using @InheritInverseConfiguration.

e.g.

@Mapper
public interface ModelMapper {
@Mapping(target = &quot;creationDate&quot;, ignore = true)
Entity toEntity(Model model);    
@InheritInverseConfiguration
Model toModel(Entity entity);

</tr></table>

... (truncated)

Commits
  • b4e25e4 Releasing version 1.6.3
  • 772fae4 Prepare release notes for 1.6.3
  • efdf435 #3751 Improve readme to include support for Java 16+ records
  • c2bd847 #3732 Do not generate obsolete imports for LocalDateTime <-> LocalDate conver...
  • 21fdaa0 #3747 Do not generate redundant if condition with constructor mapping and RET...
  • 32f1fea #3370 Prevent stack overflow error for Immutables with custom builder
  • 26c5bcd Update readme with 1.6.2
  • 4e0d73d Next version 1.7.0-SNAPSHOT
  • 212607b Releasing version 1.6.2
  • 4fd22d6 Prepare release notes for 1.6.2
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-compiler-plugin from 3.11.0 to 3.16.0

Release notes

Sourced from org.apache.maven.plugins:maven-compiler-plugin's releases.

3.16.0

🚀 New features and improvements

🐛 Bug Fixes

📝 Documentation updates

👻 Maintenance

📦 Dependency updates

3.15.0

... (truncated)

Commits
  • e7bba6e [maven-release-plugin] prepare release maven-compiler-plugin-3.16.0
  • c906809 Avoid using deprecated method CompilerConfiguration.setCompilerVersion
  • ad74fee Replace adopt-openj9 by semeru JDK distribution on GH
  • beb0eda Recompile when dependencies change (#1102)
  • a0b689e [MCOMPILER-578] Track outputs across compiler executions (#1091)
  • 2e81228 Fix incremental detection of empty sources, 3.x (#1075)
  • 2132f5b configure ATR project
  • 5992b77 Build fails when annotation processor list is empty (but present) (#1077)
  • acccef7 Bump plexusCompilerVersion from 2.16.2 to 2.17.0
  • 72bc445 Bump org.codehaus.plexus:plexus-java from 1.5.2 to 1.6.0
  • Additional commits viewable in compare view

Updates org.codehaus.mojo:flatten-maven-plugin from 1.5.0 to 1.8.0

Release notes

Sourced from org.codehaus.mojo:flatten-maven-plugin's releases.

1.8.0

🚀 New features and improvements

🐛 Bug Fixes

🔧 Build

📦 Dependency updates

1.7.3

🐛 Bug Fixes

  • Fixes condition-activated profiles not considered in effective model (#481) @​oldhen

📦 Dependency updates

... (truncated)

Commits
  • 1b21193 [maven-release-plugin] prepare release 1.8.0
  • f693210 Add PR automation workflow to GitHub Actions
  • cff2c4f Document revisionVariableName parameter with @since 1.8.0 tag
  • f18a67d Fix for #408, ensure nested dependency exclusions aren't overrided (#485)
  • 35396b6 Bump mavenVersion from 3.9.15 to 3.9.16
  • f78e07e Bump apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml
  • 25f849e Bump apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml
  • 5fcc98f Bump apache/maven-gh-actions-shared/.github/workflows/stale.yml
  • 4bd9eda Bump org.codehaus.mojo:mojo-parent from 96 to 97
  • 7bacd0e Fix for Maven 3.10.x (#517)
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.6.0

Release notes

Sourced from org.apache.maven.plugins:maven-surefire-plugin's releases.

3.6.0

Please refer to the main page for what's new https://maven.apache.org/surefire/ And the migration page https://maven.apache.org/surefire/maven-surefire-plugin/whats-new-3-6-0.html

🚀 New features and improvements

🐛 Bug Fixes

📝 Documentation updates

👻 Maintenance

... (truncated)

Commits
  • 0ff622b [maven-release-plugin] prepare release surefire-3.6.0
  • bb3932a Let's go for 3.6.0 release
  • 3002a16 Bump mavenVersion from 3.9.14 to 3.9.16
  • 61a531d Bump Maven parent version from 47 to 49 (#3449)
  • e52ead4 [SUREFIRE-523] Link all reported tests to source XRef (#3445)
  • 45102fa [SUREFIRE-3446] Fix direct selection of JUnit Jupiter @​Nested classes (#3447)
  • b2e1f70 Fix #3303: distinguish JUnit 6 ParameterizedClass invocations (#3432)
  • c051938 Discover tests in a fork when a toolchain JDK is used (#3444)
  • db75df8 Bump org.codehaus.plexus:plexus-java from 1.5.2 to 1.6.0 (#3441)
  • 77f2759 Bump org.codehaus.plexus:plexus-interpolation from 1.29 to 1.30.0
  • Additional commits viewable in compare view

Updates net.java.dev.jna:jna-platform from 5.17.0 to 5.19.1

Changelog

Sourced from net.java.dev.jna:jna-platform's changelog.

Release 5.19.1

Bug Fixes

Release 5.19.0

Features

  • #1696: Add LARGE_INTEGER.ByValue to LARGE_INTEGER in WinNT.java - @​baier233.
  • #1697: Add WlanApi module - @​eranl.
  • #1718: Add Cups to c.s.j.p.unix providing CUPS printing system bindings for destinations, jobs, options, and server configuration - @​dbwiddis.
  • #1720: Add groupCount and groupMasks fields to CACHE_RELATIONSHIP in c.s.j.p.win32.WinNT, matching the updated Windows struct layout - @​dbwiddis.
  • #1719: Add CoreGraphics to c.s.j.p.mac with Quartz Window Services and Display Services bindings; implement getAllWindows() in MacWindowUtils - @​dbwiddis.
  • #1723: Add ProcFdInfo, InSockInfo, TcpSockInfo, proc_pidfdinfo, statfs64, and vm_deallocate to c.s.j.p.mac.SystemB - @​dbwiddis.
  • #1725: Add BluetoothApis to c.s.j.p.win32 providing Bluetooth device and radio enumeration via BluetoothFindFirstRadio, BluetoothFindFirstDevice, and related functions - @​dbwiddis.

Bug Fixes

  • #1644: Fix bug in VARDESC and TYPEDESC causing an illegal memory access - @​lwahonen
  • #1715: Fix UdevDevice.getSysname() calling udev_device_get_syspath instead of udev_device_get_sysname - @​dbwiddis.
  • #1721: Fix switched serverName/domainName arguments in Netapi32Util#getDCName - @​dbwiddis.
  • #1722: Fix Advapi32#RegisterServiceCtrlHandler using wrong Handler type - @​dbwiddis.
  • #1636: Drop hard dependency on java.lang.SecurityManager/java.security.AccessController - @​matthiasblaesing.
  • #1724: Fix host_page_size in c.s.j.p.mac.SystemB and getxattr/setxattr/listxattr in c.s.j.p.mac.XAttr using long instead of pointer-sized types for size_t/ssize_t parameters - @​dbwiddis.
  • #1727: Include DragonFlyBSD in NativeLibrary versioned library resolution, libc special-case loading, and 64-bit search paths - @​dbwiddis.
  • #1709: Rebuild native library for OpenBSD 7.9 x86-64, drop OpenBSD x86 - @​matthiasblaesing.

Release 5.18.1

Bug Fixes

  • #1686: Fix sortFields race condition while getting fields - @​bendk.

Release 5.18.0

Features

  • #1671: Add isRISCV to c.s.j.Platform - @​Glavo.
  • #1672: Add CFLocale, CFLocaleCopyCurrent, CFCFDateFormatter, CFDateFormatterStyle, CFDateFormatterCreate and CFDateFormatterGetFormat to c.s.j.p.mac.CoreFoundation - @​dbwiddis.
  • #1669: Document requirement for running on JDK 24+ - @​matthiasblaesing.

Bug Fixes

... (truncated)

Commits
  • 1a91122 Release 5.19.1
  • cbfcb4a Merge pull request #1731 from matthiasblaesing/ancient_android
  • 4ba086b Restore support for Android versions not supporting MethodHandles
  • 699935f Merge pull request #1729 from thesamesam/parallel-fix
  • 3fe4cb5 native: fix parallel build issue
  • 01c7807 Prepare next development iteration
  • 9ff1381 Release 5.19.0
  • 2d038ef Merge pull request #1726 from matthiasblaesing/openbsd
  • eecab35 Update native built for OpenBSD 7.9 (x86-64 only)
  • f670868 Merge pull request #1727 from dbwiddis/fix/dragonflybsd-library-loading
  • Additional commits viewable in compare view

Updates io.micrometer:context-propagation from 1.2.0 to 1.2.1

Release notes

Sourced from io.micrometer:context-propagation's releases.

1.2.1

🐞 Bug Fixes

  • ContextRegistry#removeThreadLocalAccessor should accept Object key #119
Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Sep 15, 2026
@dependabot
dependabot Bot requested a review from Aias00 as a code owner September 15, 2026 06:08
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 15, 2026
@dependabot
dependabot Bot requested review from a team and openai0229 as code owners September 15, 2026 06:08
@dependabot dependabot Bot added the java Pull requests that update java code label Sep 15, 2026
@openai0229 openai0229 moved this to In Review in Chat2DB Community Sep 15, 2026
@dependabot
dependabot Bot force-pushed the dependabot/maven/chat2db-community-server/maven-non-major-e0f30e2a8e branch from f9fb72c to 6b62c65 Compare September 16, 2026 05:18
…3 updates

Bumps the maven-non-major group with 53 updates in the /chat2db-community-server directory:

| Package | From | To |
| --- | --- | --- |
| [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.44` | `1.18.48` |
| [org.mapstruct:mapstruct-processor](https://github.com/mapstruct/mapstruct) | `1.5.5.Final` | `1.6.3` |
| [org.mapstruct:mapstruct](https://github.com/mapstruct/mapstruct) | `1.5.5.Final` | `1.6.3` |
| [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) | `3.11.0` | `3.16.0` |
| [org.codehaus.mojo:flatten-maven-plugin](https://github.com/mojohaus/flatten-maven-plugin) | `1.5.0` | `1.8.0` |
| [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) | `3.1.2` | `3.6.0` |
| [net.java.dev.jna:jna-platform](https://github.com/java-native-access/jna) | `5.17.0` | `5.19.1` |
| [io.micrometer:context-propagation](https://github.com/micrometer-metrics/context-propagation) | `1.2.0` | `1.2.1` |
| [org.antlr:antlr4-runtime](https://github.com/antlr/antlr4) | `4.13.1` | `4.13.2` |
| [org.antlr:antlr4-maven-plugin](https://github.com/antlr/antlr4) | `4.13.1` | `4.13.2` |
| org.apache.commons:commons-collections4 | `4.4` | `4.6.0` |
| [cn.hutool:hutool-all](https://github.com/looly/hutool) | `5.8.20` | `5.8.47` |
| [com.h2database:h2](https://github.com/h2database/h2database) | `2.1.214` | `2.5.250` |
| [com.baomidou:mybatis-plus](https://github.com/baomidou/mybatis-plus) | `3.5.3.1` | `3.5.17` |
| [com.baomidou:mybatis-plus-generator](https://github.com/baomidou/mybatis-plus) | `3.5.3.1` | `3.5.17` |
| org.freemarker:freemarker | `2.3.34` | `2.3.35` |
| [com.aliyun.oss:aliyun-sdk-oss](https://github.com/aliyun/aliyun-oss-java-sdk) | `3.10.2` | `3.18.5` |
| [com.alibaba:druid](https://github.com/alibaba/druid) | `1.2.18` | `1.2.28` |
| cn.dev33:sa-token-spring-boot3-starter | `1.34.0` | `1.46.0` |
| cn.dev33:sa-token-jwt | `1.34.0` | `1.46.0` |
| [com.dtflys.forest:forest-core](https://github.com/dromara/forest) | `1.5.32` | `1.8.1` |
| [com.unfbx:chatgpt-java](https://github.com/Grt1228/chatgpt-java) | `1.0.8` | `1.1.5` |
| [com.theokanning.openai-gpt3-java:service](https://github.com/theokanning/openai-java) | `0.12.0` | `0.18.2` |
| commons-beanutils:commons-beanutils | `1.9.4` | `1.11.0` |
| [org.ehcache:ehcache](https://github.com/ehcache/ehcache3) | `3.10.8` | `3.12.0` |
| commons-io:commons-io | `2.18.0` | `2.22.0` |
| [com.auth0:java-jwt](https://github.com/auth0/java-jwt) | `4.4.0` | `4.6.1` |
| [com.github.vertical-blank:sql-formatter](https://github.com/vertical-blank/sql-formatter) | `2.0.4` | `2.0.5` |
| org.apache.commons:commons-lang3 | `3.17.0` | `3.20.0` |
| [io.github.classgraph:classgraph](https://github.com/classgraph/classgraph) | `4.8.168` | `4.8.195` |
| [com.formdev:flatlaf](https://github.com/JFormDesigner/FlatLaf) | `3.6` | `3.7.2` |
| [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson-databind) | `2.15.3` | `2.22.2` |
| com.fasterxml.jackson.datatype:jackson-datatype-jsr310 | `2.15.3` | `2.22.2` |
| [com.fasterxml.jackson.module:jackson-module-afterburner](https://github.com/FasterXML/jackson-modules-base) | `2.15.0` | `2.22.2` |
| [org.bouncycastle:bcprov-jdk18on](https://github.com/bcgit/bc-java) | `1.71` | `1.86` |
| org.locationtech.jts:jts-core | `1.19.0` | `1.20.0` |
| [org.apache.calcite:calcite-core](https://github.com/apache/calcite) | `1.38.0` | `1.42.0` |
| [org.apache.maven.plugins:maven-antrun-plugin](https://github.com/apache/maven-antrun-plugin) | `3.0.0` | `3.2.0` |
| [org.apache.maven.plugins:maven-clean-plugin](https://github.com/apache/maven-clean-plugin) | `3.2.0` | `3.5.0` |
| [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) | `3.6.1` | `3.11.0` |
| [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) | `3.1.4` | `3.2.0` |
| [org.apache.maven.plugins:maven-install-plugin](https://github.com/apache/maven-install-plugin) | `3.1.4` | `3.2.0` |
| [org.apache.maven.plugins:maven-jar-plugin](https://github.com/apache/maven-jar-plugin) | `3.4.2` | `3.5.1` |
| [org.apache.maven.plugins:maven-resources-plugin](https://github.com/apache/maven-resources-plugin) | `3.3.1` | `3.5.0` |
| [org.apache.maven.plugins:maven-source-plugin](https://github.com/apache/maven-source-plugin) | `3.2.1` | `3.4.0` |
| [org.apache.maven.plugins:maven-shade-plugin](https://github.com/apache/maven-shade-plugin) | `3.6.0` | `3.6.2` |
| [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) | `42.5.1` | `42.7.13` |
| [org.duckdb:duckdb_jdbc](https://github.com/duckdb/duckdb) | `1.1.3` | `1.5.5.1` |
| org.hsqldb:hsqldb | `2.7.3` | `2.7.4` |
| org.apache.derby:derby | `10.16.1.1` | `10.17.1.0` |
| org.apache.derby:derbyshared | `10.16.1.1` | `10.17.1.0` |
| org.apache.derby:derbytools | `10.16.1.1` | `10.17.1.0` |
| [org.firebirdsql.jdbc:jaybird](https://github.com/FirebirdSQL/jaybird) | `5.0.6.java11` | `5.0.13.java11` |



Updates `org.projectlombok:lombok` from 1.18.44 to 1.18.48
- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)
- [Commits](projectlombok/lombok@v1.18.44...v1.18.48)

Updates `org.mapstruct:mapstruct-processor` from 1.5.5.Final to 1.6.3
- [Release notes](https://github.com/mapstruct/mapstruct/releases)
- [Commits](mapstruct/mapstruct@1.5.5.Final...1.6.3)

Updates `org.mapstruct:mapstruct` from 1.5.5.Final to 1.6.3
- [Release notes](https://github.com/mapstruct/mapstruct/releases)
- [Commits](mapstruct/mapstruct@1.5.5.Final...1.6.3)

Updates `org.apache.maven.plugins:maven-compiler-plugin` from 3.11.0 to 3.16.0
- [Release notes](https://github.com/apache/maven-compiler-plugin/releases)
- [Commits](apache/maven-compiler-plugin@maven-compiler-plugin-3.11.0...maven-compiler-plugin-3.16.0)

Updates `org.codehaus.mojo:flatten-maven-plugin` from 1.5.0 to 1.8.0
- [Release notes](https://github.com/mojohaus/flatten-maven-plugin/releases)
- [Commits](mojohaus/flatten-maven-plugin@1.5.0...1.8.0)

Updates `org.apache.maven.plugins:maven-surefire-plugin` from 3.1.2 to 3.6.0
- [Release notes](https://github.com/apache/maven-surefire/releases)
- [Commits](apache/maven-surefire@surefire-3.1.2...surefire-3.6.0)

Updates `net.java.dev.jna:jna-platform` from 5.17.0 to 5.19.1
- [Changelog](https://github.com/java-native-access/jna/blob/master/CHANGES.md)
- [Commits](java-native-access/jna@5.17.0...5.19.1)

Updates `io.micrometer:context-propagation` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/micrometer-metrics/context-propagation/releases)
- [Commits](micrometer-metrics/context-propagation@v1.2.0...v1.2.1)

Updates `org.antlr:antlr4-runtime` from 4.13.1 to 4.13.2
- [Release notes](https://github.com/antlr/antlr4/releases)
- [Changelog](https://github.com/antlr/antlr4/blob/dev/CHANGES.txt)
- [Commits](antlr/antlr4@4.13.1...4.13.2)

Updates `org.antlr:antlr4-maven-plugin` from 4.13.1 to 4.13.2
- [Release notes](https://github.com/antlr/antlr4/releases)
- [Changelog](https://github.com/antlr/antlr4/blob/dev/CHANGES.txt)
- [Commits](antlr/antlr4@4.13.1...4.13.2)

Updates `org.apache.commons:commons-collections4` from 4.4 to 4.6.0

Updates `cn.hutool:hutool-all` from 5.8.20 to 5.8.47
- [Release notes](https://github.com/looly/hutool/releases)
- [Changelog](https://github.com/chinabugotech/hutool/blob/v5-master/CHANGELOG.md)
- [Commits](chinabugotech/hutool@5.8.20...5.8.47)

Updates `org.mapstruct:mapstruct` from 1.5.5.Final to 1.6.3
- [Release notes](https://github.com/mapstruct/mapstruct/releases)
- [Commits](mapstruct/mapstruct@1.5.5.Final...1.6.3)

Updates `com.h2database:h2` from 2.1.214 to 2.5.250
- [Release notes](https://github.com/h2database/h2database/releases)
- [Commits](h2database/h2database@version-2.1.214...version-2.5.250)

Updates `com.baomidou:mybatis-plus` from 3.5.3.1 to 3.5.17
- [Release notes](https://github.com/baomidou/mybatis-plus/releases)
- [Changelog](https://github.com/baomidou/mybatis-plus/blob/3.0/CHANGELOG.md)
- [Commits](baomidou/mybatis-plus@v3.5.3.1...v3.5.17)

Updates `com.baomidou:mybatis-plus-generator` from 3.5.3.1 to 3.5.17
- [Release notes](https://github.com/baomidou/mybatis-plus/releases)
- [Changelog](https://github.com/baomidou/mybatis-plus/blob/3.0/CHANGELOG.md)
- [Commits](baomidou/mybatis-plus@v3.5.3.1...v3.5.17)

Updates `com.baomidou:mybatis-plus-generator` from 3.5.3.1 to 3.5.17
- [Release notes](https://github.com/baomidou/mybatis-plus/releases)
- [Changelog](https://github.com/baomidou/mybatis-plus/blob/3.0/CHANGELOG.md)
- [Commits](baomidou/mybatis-plus@v3.5.3.1...v3.5.17)

Updates `org.freemarker:freemarker` from 2.3.34 to 2.3.35

Updates `com.aliyun.oss:aliyun-sdk-oss` from 3.10.2 to 3.18.5
- [Release notes](https://github.com/aliyun/aliyun-oss-java-sdk/releases)
- [Commits](aliyun/aliyun-oss-java-sdk@3.10.2...3.18.5)

Updates `com.alibaba:druid` from 1.2.18 to 1.2.28
- [Release notes](https://github.com/alibaba/druid/releases)
- [Commits](alibaba/druid@1.2.18...1.2.28)

Updates `cn.dev33:sa-token-spring-boot3-starter` from 1.34.0 to 1.46.0

Updates `cn.dev33:sa-token-jwt` from 1.34.0 to 1.46.0

Updates `cn.dev33:sa-token-jwt` from 1.34.0 to 1.46.0

Updates `com.dtflys.forest:forest-core` from 1.5.32 to 1.8.1
- [Release notes](https://github.com/dromara/forest/releases)
- [Commits](https://github.com/dromara/forest/commits)

Updates `com.unfbx:chatgpt-java` from 1.0.8 to 1.1.5
- [Release notes](https://github.com/Grt1228/chatgpt-java/releases)
- [Commits](https://github.com/Grt1228/chatgpt-java/commits/v1.1.5)

Updates `com.theokanning.openai-gpt3-java:service` from 0.12.0 to 0.18.2
- [Release notes](https://github.com/theokanning/openai-java/releases)
- [Commits](TheoKanning/openai-java@0.12.0...0.18.2)

Updates `commons-beanutils:commons-beanutils` from 1.9.4 to 1.11.0

Updates `org.ehcache:ehcache` from 3.10.8 to 3.12.0
- [Release notes](https://github.com/ehcache/ehcache3/releases)
- [Commits](ehcache/ehcache3@v3.10.8...v3.12.0)

Updates `commons-io:commons-io` from 2.18.0 to 2.22.0

Updates `com.auth0:java-jwt` from 4.4.0 to 4.6.1
- [Release notes](https://github.com/auth0/java-jwt/releases)
- [Changelog](https://github.com/auth0/java-jwt/blob/master/CHANGELOG.md)
- [Commits](auth0/java-jwt@4.4.0...4.6.1)

Updates `com.github.vertical-blank:sql-formatter` from 2.0.4 to 2.0.5
- [Release notes](https://github.com/vertical-blank/sql-formatter/releases)
- [Commits](vertical-blank/sql-formatter@2.0.4...2.0.5)

Updates `org.apache.commons:commons-lang3` from 3.17.0 to 3.20.0

Updates `io.github.classgraph:classgraph` from 4.8.168 to 4.8.195
- [Release notes](https://github.com/classgraph/classgraph/releases)
- [Commits](classgraph/classgraph@classgraph-4.8.168...classgraph-4.8.195)

Updates `com.formdev:flatlaf` from 3.6 to 3.7.2
- [Release notes](https://github.com/JFormDesigner/FlatLaf/releases)
- [Changelog](https://github.com/JFormDesigner/FlatLaf/blob/main/CHANGELOG.md)
- [Commits](JFormDesigner/FlatLaf@3.6...3.7.2)

Updates `com.fasterxml.jackson.core:jackson-databind` from 2.15.3 to 2.22.2
- [Commits](FasterXML/jackson-databind@jackson-databind-2.15.3...jackson-databind-2.22.2)

Updates `com.fasterxml.jackson.datatype:jackson-datatype-jsr310` from 2.15.3 to 2.22.2

Updates `com.fasterxml.jackson.module:jackson-module-afterburner` from 2.15.0 to 2.22.2
- [Commits](FasterXML/jackson-modules-base@jackson-modules-base-2.15.0...jackson-modules-base-2.22.2)

Updates `com.fasterxml.jackson.datatype:jackson-datatype-jsr310` from 2.15.3 to 2.22.2

Updates `org.bouncycastle:bcprov-jdk18on` from 1.71 to 1.86
- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.md)
- [Commits](https://github.com/bcgit/bc-java/commits)

Updates `org.locationtech.jts:jts-core` from 1.19.0 to 1.20.0

Updates `org.apache.calcite:calcite-core` from 1.38.0 to 1.42.0
- [Commits](apache/calcite@calcite-1.38.0...calcite-1.42.0)

Updates `org.apache.maven.plugins:maven-antrun-plugin` from 3.0.0 to 3.2.0
- [Release notes](https://github.com/apache/maven-antrun-plugin/releases)
- [Commits](apache/maven-antrun-plugin@maven-antrun-plugin-3.0.0...maven-antrun-plugin-3.2.0)

Updates `org.apache.maven.plugins:maven-clean-plugin` from 3.2.0 to 3.5.0
- [Release notes](https://github.com/apache/maven-clean-plugin/releases)
- [Commits](apache/maven-clean-plugin@maven-clean-plugin-3.2.0...maven-clean-plugin-3.5.0)

Updates `org.apache.maven.plugins:maven-dependency-plugin` from 3.6.1 to 3.11.0
- [Release notes](https://github.com/apache/maven-dependency-plugin/releases)
- [Commits](apache/maven-dependency-plugin@maven-dependency-plugin-3.6.1...maven-dependency-plugin-3.11.0)

Updates `org.apache.maven.plugins:maven-deploy-plugin` from 3.1.4 to 3.2.0
- [Release notes](https://github.com/apache/maven-deploy-plugin/releases)
- [Commits](apache/maven-deploy-plugin@maven-deploy-plugin-3.1.4...maven-deploy-plugin-3.2.0)

Updates `org.apache.maven.plugins:maven-install-plugin` from 3.1.4 to 3.2.0
- [Release notes](https://github.com/apache/maven-install-plugin/releases)
- [Commits](apache/maven-install-plugin@maven-install-plugin-3.1.4...maven-install-plugin-3.2.0)

Updates `org.apache.maven.plugins:maven-jar-plugin` from 3.4.2 to 3.5.1
- [Release notes](https://github.com/apache/maven-jar-plugin/releases)
- [Commits](apache/maven-jar-plugin@maven-jar-plugin-3.4.2...maven-jar-plugin-3.5.1)

Updates `org.apache.maven.plugins:maven-resources-plugin` from 3.3.1 to 3.5.0
- [Release notes](https://github.com/apache/maven-resources-plugin/releases)
- [Commits](apache/maven-resources-plugin@maven-resources-plugin-3.3.1...maven-resources-plugin-3.5.0)

Updates `org.apache.maven.plugins:maven-source-plugin` from 3.2.1 to 3.4.0
- [Release notes](https://github.com/apache/maven-source-plugin/releases)
- [Commits](apache/maven-source-plugin@maven-source-plugin-3.2.1...maven-source-plugin-3.4.0)

Updates `org.apache.maven.plugins:maven-shade-plugin` from 3.6.0 to 3.6.2
- [Release notes](https://github.com/apache/maven-shade-plugin/releases)
- [Commits](apache/maven-shade-plugin@maven-shade-plugin-3.6.0...maven-shade-plugin-3.6.2)

Updates `org.postgresql:postgresql` from 42.5.1 to 42.7.13
- [Release notes](https://github.com/pgjdbc/pgjdbc/releases)
- [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md)
- [Commits](pgjdbc/pgjdbc@REL42.5.1...REL42.7.13)

Updates `org.antlr:antlr4-maven-plugin` from 4.13.1 to 4.13.2
- [Release notes](https://github.com/antlr/antlr4/releases)
- [Changelog](https://github.com/antlr/antlr4/blob/dev/CHANGES.txt)
- [Commits](antlr/antlr4@4.13.1...4.13.2)

Updates `org.duckdb:duckdb_jdbc` from 1.1.3 to 1.5.5.1
- [Release notes](https://github.com/duckdb/duckdb/releases)
- [Commits](https://github.com/duckdb/duckdb/commits)

Updates `org.hsqldb:hsqldb` from 2.7.3 to 2.7.4

Updates `org.apache.derby:derby` from 10.16.1.1 to 10.17.1.0

Updates `org.apache.derby:derbyshared` from 10.16.1.1 to 10.17.1.0

Updates `org.apache.derby:derbytools` from 10.16.1.1 to 10.17.1.0

Updates `org.firebirdsql.jdbc:jaybird` from 5.0.6.java11 to 5.0.13.java11
- [Release notes](https://github.com/FirebirdSQL/jaybird/releases)
- [Commits](https://github.com/FirebirdSQL/jaybird/commits)

---
updated-dependencies:
- dependency-name: cn.dev33:sa-token-jwt
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: cn.dev33:sa-token-jwt
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: cn.dev33:sa-token-spring-boot3-starter
  dependency-version: 1.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: cn.hutool:hutool-all
  dependency-version: 5.8.47
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: com.alibaba:druid
  dependency-version: 1.2.28
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: com.aliyun.oss:aliyun-sdk-oss
  dependency-version: 3.18.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.auth0:java-jwt
  dependency-version: 4.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.baomidou:mybatis-plus
  dependency-version: 3.5.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: com.baomidou:mybatis-plus-generator
  dependency-version: 3.5.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: com.baomidou:mybatis-plus-generator
  dependency-version: 3.5.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: com.dtflys.forest:forest-core
  dependency-version: 1.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-version: 2.22.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310
  dependency-version: 2.22.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.fasterxml.jackson.datatype:jackson-datatype-jsr310
  dependency-version: 2.22.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.fasterxml.jackson.module:jackson-module-afterburner
  dependency-version: 2.22.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.formdev:flatlaf
  dependency-version: 3.7.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.github.vertical-blank:sql-formatter
  dependency-version: 2.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: com.h2database:h2
  dependency-version: 2.5.250
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.theokanning.openai-gpt3-java:service
  dependency-version: 0.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: com.unfbx:chatgpt-java
  dependency-version: 1.1.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: commons-beanutils:commons-beanutils
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: commons-io:commons-io
  dependency-version: 2.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: io.github.classgraph:classgraph
  dependency-version: 4.8.195
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: io.micrometer:context-propagation
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: net.java.dev.jna:jna-platform
  dependency-version: 5.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.antlr:antlr4-maven-plugin
  dependency-version: 4.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: org.antlr:antlr4-maven-plugin
  dependency-version: 4.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: org.antlr:antlr4-runtime
  dependency-version: 4.13.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: org.apache.calcite:calcite-core
  dependency-version: 1.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.commons:commons-collections4
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.derby:derby
  dependency-version: 10.17.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.derby:derbyshared
  dependency-version: 10.17.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.derby:derbytools
  dependency-version: 10.17.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-antrun-plugin
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-clean-plugin
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-compiler-plugin
  dependency-version: 3.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-dependency-plugin
  dependency-version: 3.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-deploy-plugin
  dependency-version: 3.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-install-plugin
  dependency-version: 3.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-jar-plugin
  dependency-version: 3.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-resources-plugin
  dependency-version: 3.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-shade-plugin
  dependency-version: 3.6.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-source-plugin
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.apache.maven.plugins:maven-surefire-plugin
  dependency-version: 3.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.bouncycastle:bcprov-jdk18on
  dependency-version: '1.86'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.codehaus.mojo:flatten-maven-plugin
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.duckdb:duckdb_jdbc
  dependency-version: 1.5.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.ehcache:ehcache
  dependency-version: 3.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.firebirdsql.jdbc:jaybird
  dependency-version: 5.0.13.java11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: org.freemarker:freemarker
  dependency-version: 2.3.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: org.hsqldb:hsqldb
  dependency-version: 2.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
- dependency-name: org.locationtech.jts:jts-core
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.mapstruct:mapstruct
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.mapstruct:mapstruct
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.mapstruct:mapstruct-processor
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.postgresql:postgresql
  dependency-version: 42.7.13
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: maven-non-major
- dependency-name: org.projectlombok:lombok
  dependency-version: 1.18.48
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: maven-non-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/maven/chat2db-community-server/maven-non-major-e0f30e2a8e branch from 6b62c65 to 3ae8a8a Compare September 16, 2026 08:18
@dependabot @github

dependabot Bot commented on behalf of github Sep 18, 2026

Copy link
Copy Markdown
Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 18, 2026
@dependabot
dependabot Bot deleted the dependabot/maven/chat2db-community-server/maven-non-major-e0f30e2a8e branch September 18, 2026 02:22
@openai0229 openai0229 moved this from In Review to Done in Chat2DB Community Sep 18, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update java code

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

1 participant