Skip to content

chore(deps): bump the other-dependencies group across 1 directory with 16 updates - #1285

Merged
jjjasper merged 1 commit into
mainfrom
dependabot/maven/other-dependencies-317a368391
Sep 7, 2026
Merged

chore(deps): bump the other-dependencies group across 1 directory with 16 updates#1285
jjjasper merged 1 commit into
mainfrom
dependabot/maven/other-dependencies-317a368391

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the other-dependencies group with 16 updates in the / directory:

Package From To
org.projectlombok:lombok 1.18.46 1.18.48
org.slf4j:slf4j-api 2.0.18 2.0.19
org.codehaus.plexus:plexus-utils 4.0.3 4.1.0
org.codehaus.plexus:plexus-xml 4.1.1 4.2.0
org.slf4j:slf4j-ext 2.0.18 2.0.19
org.yaml:snakeyaml 2.6 2.7
io.swagger.core.v3:swagger-models 2.2.54 2.2.55
io.swagger.core.v3:swagger-core 2.2.54 2.2.55
io.swagger.parser.v3:swagger-parser 2.1.46 2.1.48
org.apache.maven.plugins:maven-compiler-plugin 3.15.0 3.16.0
org.apache.maven.plugins:maven-surefire-plugin 3.5.6 3.6.0
org.codehaus.plexus:plexus-archiver 4.12.0 4.14.0
io.github.openfeign:feign-core 13.13 13.14
io.github.openfeign:feign-jackson 13.13 13.14
io.github.openfeign:feign-slf4j 13.13 13.14
io.github.openfeign:feign-okhttp 13.13 13.14

Updates org.projectlombok:lombok from 1.18.46 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'.
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.slf4j:slf4j-api from 2.0.18 to 2.0.19

Updates org.codehaus.plexus:plexus-utils from 4.0.3 to 4.1.0

Release notes

Sourced from org.codehaus.plexus:plexus-utils's releases.

4.1.0

DirectoryScanner no longer excludes .gitignore and .cvsignore by default. Code that relied on the old defaults has to add the two patterns explicitly. That change is what makes this a minor release rather than 4.0.4.

💥 Breaking changes

  • Do not exclude ".gitignore" and ".cvsignore" by default (#326) @​kwin

👻 Maintenance

🔧 Build

📦 Dependency updates

Commits
  • 572ce90 [maven-release-plugin] prepare release plexus-utils-4.1.0
  • 077e801 Bump the plexus dependencies released today
  • 840a1b4 Update parent to plexus 27
  • 9c560fa Drop the Publish Site workflow
  • 5f96b03 Bump org.codehaus.plexus:plexus from 25 to 26
  • 4846c05 Add the Publish Site workflow
  • 4df3a86 Use the shared release-drafter config instead of a local copy
  • 9eb5fc6 Apply spotless formatting to README
  • f2856f9 Rewrite README with usage, status and version guidance
  • 62fe2fa Bump release-drafter/release-drafter from 7.6.0 to 7.7.0
  • Additional commits viewable in compare view

Updates org.codehaus.plexus:plexus-xml from 4.1.1 to 4.2.0

Release notes

Sourced from org.codehaus.plexus:plexus-xml's releases.

4.2.0

The 4.x line no longer builds its DOM through Maven's deprecated XmlNodeBuilder: Xpp3DomBuilder uses a pull builder of its own, so a future Maven can delete that class without breaking this one. The artifact also carries Automatic-Module-Name: org.codehaus.plexus.util.xml, which anyone on the module path sees.

The Maven dependency is split: maven-api-xml at compile, maven-xml at runtime, since XmlService resolves its implementation through ServiceLoader. Consumers keep the API transitively and lose org.apache.maven.internal.* along with woodstox-core and stax2-api.

Requires Java 17 and Maven 4. On Maven 3, use the 3.x line.

🚀 New features and improvements

📝 Documentation updates

👻 Maintenance

🔧 Build

📦 Dependency updates

Commits
  • 215f435 [maven-release-plugin] prepare release plexus-xml-4.2.0
  • ce5d062 Update parent to plexus 27
  • 38c200b Depend on maven-api-xml at compile and maven-xml at runtime
  • ae27358 Set the next development version to 4.2.0-SNAPSHOT
  • d1c51ce Establish an automatic module name
  • d0f198b Build the DOM with a local pull builder, not Maven's XmlNodeBuilder
  • 470396a Bump org.codehaus.plexus:plexus from 25 to 26
  • 51d60d5 Rewrite README with usage, status and version guidance
  • e91d180 Bump release-drafter/release-drafter from 7.6.0 to 7.7.0
  • b628bf3 Build against maven-xml 4.0.0-rc-6
  • Additional commits viewable in compare view

Updates org.slf4j:slf4j-ext from 2.0.18 to 2.0.19

Updates org.yaml:snakeyaml from 2.6 to 2.7

Updates io.swagger.core.v3:swagger-models from 2.2.54 to 2.2.55

Updates io.swagger.core.v3:swagger-core from 2.2.54 to 2.2.55

Release notes

Sourced from io.swagger.core.v3:swagger-core's releases.

Swagger-core 2.2.55 released!

  • chore: update dependency-check-maven to 12.2.2 (#5299)
  • chore: remove ACTIONS_ALLOW_UNSECURE_COMMANDS from workflows (#5293)
  • chore(deps-dev): bump org.jboss.arquillian.testng:arquillian-testng-container from 1.9.3.Final to 1.10.2.Final (#5285)
  • chore(deps): bump org.sonatype.central:central-publishing-maven-plugin from 0.10.0 to 0.11.0 (#5284)
  • chore(deps): bump slf4j-version from 2.0.17 to 2.0.18 (#5283)
  • fix: _isSetType now detects indirect Set implementations (#5265)
Changelog

Sourced from io.swagger.core.v3:swagger-core's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog.

[Unreleased]

Commits
  • 528cd88 prepare release 2.2.55 (#5305)
  • a3e35e3 Fix: primitive boxed type schemas incorrectly cast to "string" in OAS 3.1 #49...
  • c7d7736 fix: _isSetType now detects indirect Set implementations (#5265)
  • 06495ab chore: update dependency-check-maven to 12.2.2 (#5299)
  • 0e12cb6 chore: update workflows to improve security (#5293)
  • 0a508d0 chore(deps-dev): bump org.jboss.arquillian.testng:arquillian-testng-container...
  • 5cd11eb chore(deps): bump org.sonatype.central:central-publishing-maven-plugin (#5284)
  • 25f5726 chore(deps): bump slf4j-version from 2.0.17 to 2.0.18 (#5283)
  • 18ee62f bump snapshot 2.2.55-SNAPSHOT (#5280)
  • See full diff in compare view

Updates io.swagger.core.v3:swagger-core from 2.2.54 to 2.2.55

Release notes

Sourced from io.swagger.core.v3:swagger-core's releases.

Swagger-core 2.2.55 released!

  • chore: update dependency-check-maven to 12.2.2 (#5299)
  • chore: remove ACTIONS_ALLOW_UNSECURE_COMMANDS from workflows (#5293)
  • chore(deps-dev): bump org.jboss.arquillian.testng:arquillian-testng-container from 1.9.3.Final to 1.10.2.Final (#5285)
  • chore(deps): bump org.sonatype.central:central-publishing-maven-plugin from 0.10.0 to 0.11.0 (#5284)
  • chore(deps): bump slf4j-version from 2.0.17 to 2.0.18 (#5283)
  • fix: _isSetType now detects indirect Set implementations (#5265)
Changelog

Sourced from io.swagger.core.v3:swagger-core's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog.

[Unreleased]

Commits
  • 528cd88 prepare release 2.2.55 (#5305)
  • a3e35e3 Fix: primitive boxed type schemas incorrectly cast to "string" in OAS 3.1 #49...
  • c7d7736 fix: _isSetType now detects indirect Set implementations (#5265)
  • 06495ab chore: update dependency-check-maven to 12.2.2 (#5299)
  • 0e12cb6 chore: update workflows to improve security (#5293)
  • 0a508d0 chore(deps-dev): bump org.jboss.arquillian.testng:arquillian-testng-container...
  • 5cd11eb chore(deps): bump org.sonatype.central:central-publishing-maven-plugin (#5284)
  • 25f5726 chore(deps): bump slf4j-version from 2.0.17 to 2.0.18 (#5283)
  • 18ee62f bump snapshot 2.2.55-SNAPSHOT (#5280)
  • See full diff in compare view

Updates io.swagger.parser.v3:swagger-parser from 2.1.46 to 2.1.48

Release notes

Sourced from io.swagger.parser.v3:swagger-parser's releases.

Swagger-parser 2.1.48 released!

  • Fix: resolution of external refs inside path items with templated fragments (#2033) (#2394)
  • fix: Fix relative references inside external path items (#1948, #2066) (#2393)
  • chore: update dependency-check-maven to 12.2.2 (#2387)
  • fix: Inlining of references with dot (#2109) (#2384)
  • fix: Fix duplicate schemas from root document back-references (#1961) (#2383)
  • fix: External Refs with same name are ignored (#2055) (#2382)
  • build(deps): bump org.apache.maven.plugins:maven-jar-plugin from 3.5.0 to 3.5.1 (#2379)
  • build(deps-dev): bump org.apache.maven.plugins:maven-compiler-plugin from 3.11.0 to 3.15.0 (#2378)
  • build(deps): bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.5 to 3.5.6 (#2377)
  • build(deps): bump swagger-core-version from 2.2.52 to 2.2.53 (#2376)

Swagger-parser 2.1.47 released!

  • build(deps): bump org.testng:testng from 7.11.0 to 7.12.0 (#2371)
  • build(deps): bump org.slf4j:slf4j-simple from 2.0.9 to 2.0.18 (#2358)
  • build(deps-dev): bump org.apache.maven.plugins:maven-enforcer-plugin from 3.4.1 to 3.6.3 (#2351)
  • Resolve same-named schemas from different files as distinct components (fixes #2333) (#2349)
  • fix: resolve relative refs correctly from spring boot jars (#2080, #2298) (#2320)
Commits
  • a982879 prepare release 2.1.48 (#2397)
  • 28b1a73 Fix: resolution of external refs inside path items with templated fragments (...
  • b2a9955 fix: Fix relative references inside external path items (#1948, #2066) (#2393)
  • f23d962 chore: update dependabot to 12.2.2 (#2387)
  • d3398c8 fix: Inlining of references with dot (#2109) (#2384)
  • 0255d18 fix: Fix duplicate schemas from root document back-references (#1961) (#2383)
  • 2242451 build(deps): bump org.apache.maven.plugins:maven-jar-plugin (#2379)
  • 8b683a9 build(deps-dev): bump org.apache.maven.plugins:maven-compiler-plugin (#2378)
  • 9804796 build(deps): bump org.apache.maven.plugins:maven-surefire-plugin (#2377)
  • aea5c1e build(deps): bump swagger-core-version from 2.2.52 to 2.2.53 (#2376)
  • Additional commits viewable in compare view

Updates org.apache.maven.plugins:maven-compiler-plugin from 3.15.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

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.apache.maven.plugins:maven-surefire-plugin from 3.5.6 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 org.codehaus.plexus:plexus-archiver from 4.12.0 to 4.14.0

Release notes

Sourced from org.codehaus.plexus:plexus-archiver's releases.

4.14.0

🚀 New features and improvements

📝 Documentation updates

📦 Dependency updates

4.13.0

The jar declares Automatic-Module-Name: org.codehaus.plexus.archiver, which is what makes this 4.13.0 rather than a patch. It also picks up plexus-io 3.7.0, whose FileSelector now follows symbolic links to files when isFollowingSymLinks() is set.

slf4j stays on 1.7.36 on this line: the 2.0.18 bump was taken and reverted, since the 4.x line targets consumers that have not moved.

🚀 New features and improvements

📦 Dependency updates

🔧 Build

Commits
  • b9de34c [maven-release-plugin] prepare release plexus-archiver-4.14.0
  • 1825ccf Pin Guava on the test classpath
  • 70399e4 Set the 4.x line to 4.14.0-SNAPSHOT
  • a9d06d9 Draft the version the labels imply, not always a patch
  • bc2fccc Let a FileSet follow symbolic links
  • 611f6d8 Bump com.github.luben:zstd-jni from 1.5.7-14 to 1.5.7-15
  • 52d5989 [maven-release-plugin] prepare for next development iteration
  • d30dcc2 [maven-release-plugin] prepare release plexus-archiver-4.13.0
  • b131b07 Describe the artifact in the POM
  • 02005c6 [maven-release-plugin] prepare for next development iteration
  • Additional commits viewable in compare view

Updates io.github.openfeign:feign-core from 13.13 to 13.14

Release notes

Sourced from io.github.openfeign:feign-core's releases.

OpenFeign 13.14

What's Changed

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 7, 2026
…h 16 updates

Bumps the other-dependencies group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.projectlombok:lombok](https://github.com/projectlombok/lombok) | `1.18.46` | `1.18.48` |
| org.slf4j:slf4j-api | `2.0.18` | `2.0.19` |
| [org.codehaus.plexus:plexus-utils](https://github.com/codehaus-plexus/plexus-utils) | `4.0.3` | `4.1.0` |
| [org.codehaus.plexus:plexus-xml](https://github.com/codehaus-plexus/plexus-xml) | `4.1.1` | `4.2.0` |
| org.slf4j:slf4j-ext | `2.0.18` | `2.0.19` |
| org.yaml:snakeyaml | `2.6` | `2.7` |
| io.swagger.core.v3:swagger-models | `2.2.54` | `2.2.55` |
| [io.swagger.core.v3:swagger-core](https://github.com/swagger-api/swagger-core) | `2.2.54` | `2.2.55` |
| [io.swagger.parser.v3:swagger-parser](https://github.com/swagger-api/swagger-parser) | `2.1.46` | `2.1.48` |
| [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) | `3.15.0` | `3.16.0` |
| [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) | `3.5.6` | `3.6.0` |
| [org.codehaus.plexus:plexus-archiver](https://github.com/codehaus-plexus/plexus-archiver) | `4.12.0` | `4.14.0` |
| [io.github.openfeign:feign-core](https://github.com/openfeign/feign) | `13.13` | `13.14` |
| [io.github.openfeign:feign-jackson](https://github.com/openfeign/feign) | `13.13` | `13.14` |
| [io.github.openfeign:feign-slf4j](https://github.com/openfeign/feign) | `13.13` | `13.14` |
| [io.github.openfeign:feign-okhttp](https://github.com/openfeign/feign) | `13.13` | `13.14` |



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

Updates `org.slf4j:slf4j-api` from 2.0.18 to 2.0.19

Updates `org.codehaus.plexus:plexus-utils` from 4.0.3 to 4.1.0
- [Release notes](https://github.com/codehaus-plexus/plexus-utils/releases)
- [Commits](codehaus-plexus/plexus-utils@plexus-utils-4.0.3...plexus-utils-4.1.0)

Updates `org.codehaus.plexus:plexus-xml` from 4.1.1 to 4.2.0
- [Release notes](https://github.com/codehaus-plexus/plexus-xml/releases)
- [Commits](codehaus-plexus/plexus-xml@plexus-xml-4.1.1...plexus-xml-4.2.0)

Updates `org.slf4j:slf4j-ext` from 2.0.18 to 2.0.19

Updates `org.yaml:snakeyaml` from 2.6 to 2.7

Updates `io.swagger.core.v3:swagger-models` from 2.2.54 to 2.2.55

Updates `io.swagger.core.v3:swagger-core` from 2.2.54 to 2.2.55
- [Release notes](https://github.com/swagger-api/swagger-core/releases)
- [Changelog](https://github.com/swagger-api/swagger-core/blob/master/CHANGELOG.md)
- [Commits](swagger-api/swagger-core@v2.2.54...v2.2.55)

Updates `io.swagger.core.v3:swagger-core` from 2.2.54 to 2.2.55
- [Release notes](https://github.com/swagger-api/swagger-core/releases)
- [Changelog](https://github.com/swagger-api/swagger-core/blob/master/CHANGELOG.md)
- [Commits](swagger-api/swagger-core@v2.2.54...v2.2.55)

Updates `io.swagger.parser.v3:swagger-parser` from 2.1.46 to 2.1.48
- [Release notes](https://github.com/swagger-api/swagger-parser/releases)
- [Commits](swagger-api/swagger-parser@v2.1.46...v2.1.48)

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

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

Updates `org.codehaus.plexus:plexus-archiver` from 4.12.0 to 4.14.0
- [Release notes](https://github.com/codehaus-plexus/plexus-archiver/releases)
- [Changelog](https://github.com/codehaus-plexus/plexus-archiver/blob/master/ReleaseNotes.md)
- [Commits](codehaus-plexus/plexus-archiver@plexus-archiver-4.12.0...plexus-archiver-4.14.0)

Updates `io.github.openfeign:feign-core` from 13.13 to 13.14
- [Release notes](https://github.com/openfeign/feign/releases)
- [Changelog](https://github.com/OpenFeign/feign/blob/master/CHANGELOG.md)
- [Commits](OpenFeign/feign@13.13...13.14)

Updates `io.github.openfeign:feign-jackson` from 13.13 to 13.14
- [Release notes](https://github.com/openfeign/feign/releases)
- [Changelog](https://github.com/OpenFeign/feign/blob/master/CHANGELOG.md)
- [Commits](OpenFeign/feign@13.13...13.14)

Updates `io.github.openfeign:feign-slf4j` from 13.13 to 13.14
- [Release notes](https://github.com/openfeign/feign/releases)
- [Changelog](https://github.com/OpenFeign/feign/blob/master/CHANGELOG.md)
- [Commits](OpenFeign/feign@13.13...13.14)

Updates `io.github.openfeign:feign-okhttp` from 13.13 to 13.14
- [Release notes](https://github.com/openfeign/feign/releases)
- [Changelog](https://github.com/OpenFeign/feign/blob/master/CHANGELOG.md)
- [Commits](OpenFeign/feign@13.13...13.14)

Updates `io.github.openfeign:feign-jackson` from 13.13 to 13.14
- [Release notes](https://github.com/openfeign/feign/releases)
- [Changelog](https://github.com/OpenFeign/feign/blob/master/CHANGELOG.md)
- [Commits](OpenFeign/feign@13.13...13.14)

Updates `io.github.openfeign:feign-slf4j` from 13.13 to 13.14
- [Release notes](https://github.com/openfeign/feign/releases)
- [Changelog](https://github.com/OpenFeign/feign/blob/master/CHANGELOG.md)
- [Commits](OpenFeign/feign@13.13...13.14)

Updates `io.github.openfeign:feign-okhttp` from 13.13 to 13.14
- [Release notes](https://github.com/openfeign/feign/releases)
- [Changelog](https://github.com/OpenFeign/feign/blob/master/CHANGELOG.md)
- [Commits](OpenFeign/feign@13.13...13.14)

---
updated-dependencies:
- dependency-name: org.projectlombok:lombok
  dependency-version: 1.18.48
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
- dependency-name: org.slf4j:slf4j-api
  dependency-version: 2.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
- dependency-name: org.codehaus.plexus:plexus-utils
  dependency-version: 4.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: org.codehaus.plexus:plexus-xml
  dependency-version: 4.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: org.slf4j:slf4j-ext
  dependency-version: 2.0.19
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
- dependency-name: org.yaml:snakeyaml
  dependency-version: '2.7'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: io.swagger.core.v3:swagger-models
  dependency-version: 2.2.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
- dependency-name: io.swagger.core.v3:swagger-core
  dependency-version: 2.2.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
- dependency-name: io.swagger.core.v3:swagger-core
  dependency-version: 2.2.55
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
- dependency-name: io.swagger.parser.v3:swagger-parser
  dependency-version: 2.1.48
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: other-dependencies
- 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: other-dependencies
- 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: other-dependencies
- dependency-name: org.codehaus.plexus:plexus-archiver
  dependency-version: 4.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: io.github.openfeign:feign-core
  dependency-version: '13.14'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: io.github.openfeign:feign-jackson
  dependency-version: '13.14'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: io.github.openfeign:feign-slf4j
  dependency-version: '13.14'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: io.github.openfeign:feign-okhttp
  dependency-version: '13.14'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: io.github.openfeign:feign-jackson
  dependency-version: '13.14'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: io.github.openfeign:feign-slf4j
  dependency-version: '13.14'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
- dependency-name: io.github.openfeign:feign-okhttp
  dependency-version: '13.14'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: other-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@jjjasper
jjjasper force-pushed the dependabot/maven/other-dependencies-317a368391 branch from 5c37f9b to 5e98485 Compare September 7, 2026 10:58
@jjjasper
jjjasper enabled auto-merge (squash) September 7, 2026 10:59
@sonarqubecloud

sonarqubecloud Bot commented Sep 7, 2026

Copy link
Copy Markdown

@jjjasper
jjjasper merged commit 0088d78 into main Sep 7, 2026
4 checks passed
@dependabot
dependabot Bot deleted the dependabot/maven/other-dependencies-317a368391 branch September 7, 2026 11:03
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

None yet

Development

Successfully merging this pull request may close these issues.

1 participant