Skip to content

chore: [DevOps] bump the production-minor-patch group with 7 updates - #1251

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/main/production-minor-patch-4afa8bcedb
Open

chore: [DevOps] bump the production-minor-patch group with 7 updates#1251
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/main/production-minor-patch-4afa8bcedb

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-minor-patch group with 7 updates:

Package From To
io.swagger.core.v3:swagger-models 2.2.52 2.2.53
io.swagger.parser.v3:swagger-parser 2.1.45 2.1.46
io.swagger.parser.v3:swagger-parser-core 2.1.45 2.1.46
com.sap.cloud.security:java-bom 4.0.8 4.1.0
org.apache.httpcomponents.client5:httpclient5 5.6.3 5.6.4
org.checkerframework:checker-qual 4.2.1 4.2.2
io.netty:netty-bom 4.2.16.Final 4.2.17.Final

Updates io.swagger.core.v3:swagger-models from 2.2.52 to 2.2.53

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

Release notes

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

Swagger-parser 2.1.46 released!

  • chore: introduce jackson bom and update to 2.22 line (#2368)
Commits

Updates io.swagger.parser.v3:swagger-parser-core from 2.1.45 to 2.1.46

Updates io.swagger.parser.v3:swagger-parser-core from 2.1.45 to 2.1.46

Updates com.sap.cloud.security:java-bom from 4.0.8 to 4.1.0

Release notes

Sourced from com.sap.cloud.security:java-bom's releases.

4.1.0

  • Skip IAS proof-token validation for tokens with a single audience or no audience claim
    • SapIdJwtSignatureValidator previously gated the proof-token / forwarded-client-cert check on the presence of the ias_apis claim. It now gates on token.getAudiences().size() > 1, so the check only runs for genuine app-to-app tokens (multiple audiences) and is skipped for app-to-service tokens (single audience) and tokens with a missing/empty aud claim
    • Eliminates spurious "client certificate could not be read" failures on requests where no x-forwarded-client-cert header is expected
  • Support additional JWT signature algorithms in JwtSignatureValidator. In addition to the previously supported RS256, tokens signed with the following algorithms (RFC 7518 §3.3 / §3.4 / §3.5) can now be validated:
    • RS384, RS512 (RSASSA-PKCS1-v1_5 with SHA-384 / SHA-512)
    • PS256, PS384, PS512 (RSASSA-PSS with SHA-256 / SHA-384 / SHA-512). The corresponding PSSParameterSpec is set automatically before signature verification.
    • ES256, ES384, ES512 (ECDSA on P-256 / P-384 / P-521 with SHA-256 / SHA-384 / SHA-512). The JCA name SHA*withECDSAinP1363Format is used so the raw R||S signature format mandated by RFC 7518 §3.4 is accepted directly. EC JWKs are constructed from crv/x/y with strict curve and coordinate-length validation per RFC 7518 §6.2.1.
    • Selection is driven by the JWT header alg value. Unknown values continue to be rejected with the existing "is not supported" error.
  • Expose the sap_id_type claim on SapIdToken
    • New SapIdToken#getIdType() returning a typed SapIdType enum (USER, APP); resolves to null if the claim is absent or carries an unknown value
    • New TokenClaims.SAP_ID_TYPE constant
    • DefaultIdTokenExtension#isTechnicalUser now prefers the sap_id_type claim and falls back to the sub == azp heuristic for tokens issued before the claim was introduced
  • Tolerate unsupported or malformed entries in a JWKS response
    • JsonWebKeySetFactory previously aborted the whole parse when a single entry resolved to an algorithm the library does not recognise (or was otherwise malformed), so an IdP adding a key for a new algorithm family broke token validation for every tenant sharing the endpoint — including tokens signed with algorithms this library DOES support
    • Each entry is now parsed in isolation: unsupported alg/kty is skipped with an INFO log, a malformed entry is skipped with a WARN, and both carry sanitized kid/kty/alg for diagnostics
    • When a caller later requests a kid that was silently dropped at parse time, the pre-throw WARN in OAuth2TokenKeyServiceWithCache now points at the earlier Skipping JWK entry log lines so the root cause is discoverable. The existing Key with kid <kid> not found in JWKS. exception message is unchanged for downstream log-based alerts
  • Update dependencies:
    • Jetty: 12.1.10 → 12.1.11
    • JUnit Jupiter: 6.1.0 → 6.1.2
    • log4j2: 2.26.0 → 2.26.1
    • org.json: 20260522 → 20260719
    • SpotBugs annotations: 4.10.2 → 4.10.3
    • SpotBugs Maven Plugin: 4.10.2.0 → 4.10.3.0
    • logback-core (test scope, token-client / token-client-spring / token-client-spring-3): 1.5.25 → 1.5.34
Changelog

Sourced from com.sap.cloud.security:java-bom's changelog.

4.1.0

  • Skip IAS proof-token validation for tokens with a single audience or no audience claim
    • SapIdJwtSignatureValidator previously gated the proof-token / forwarded-client-cert check on the presence of the ias_apis claim. It now gates on token.getAudiences().size() > 1, so the check only runs for genuine app-to-app tokens (multiple audiences) and is skipped for app-to-service tokens (single audience) and tokens with a missing/empty aud claim
    • Eliminates spurious "client certificate could not be read" failures on requests where no x-forwarded-client-cert header is expected
  • Support additional JWT signature algorithms in JwtSignatureValidator. In addition to the previously supported RS256, tokens signed with the following algorithms (RFC 7518 §3.3 / §3.4 / §3.5) can now be validated:
    • RS384, RS512 (RSASSA-PKCS1-v1_5 with SHA-384 / SHA-512)
    • PS256, PS384, PS512 (RSASSA-PSS with SHA-256 / SHA-384 / SHA-512). The corresponding PSSParameterSpec is set automatically before signature verification.
    • ES256, ES384, ES512 (ECDSA on P-256 / P-384 / P-521 with SHA-256 / SHA-384 / SHA-512). The JCA name SHA*withECDSAinP1363Format is used so the raw R||S signature format mandated by RFC 7518 §3.4 is accepted directly. EC JWKs are constructed from crv/x/y with strict curve and coordinate-length validation per RFC 7518 §6.2.1.
    • Selection is driven by the JWT header alg value. Unknown values continue to be rejected with the existing "is not supported" error.
  • Expose the sap_id_type claim on SapIdToken
    • New SapIdToken#getIdType() returning a typed SapIdType enum (USER, APP); resolves to null if the claim is absent or carries an unknown value
    • New TokenClaims.SAP_ID_TYPE constant
    • DefaultIdTokenExtension#isTechnicalUser now prefers the sap_id_type claim and falls back to the sub == azp heuristic for tokens issued before the claim was introduced
  • Tolerate unsupported or malformed entries in a JWKS response
    • JsonWebKeySetFactory previously aborted the whole parse when a single entry resolved to an algorithm the library does not recognise (or was otherwise malformed), so an IdP adding a key for a new algorithm family broke token validation for every tenant sharing the endpoint — including tokens signed with algorithms this library DOES support
    • Each entry is now parsed in isolation: unsupported alg/kty is skipped with an INFO log, a malformed entry is skipped with a WARN, and both carry sanitized kid/kty/alg for diagnostics
    • When a caller later requests a kid that was silently dropped at parse time, the pre-throw WARN in OAuth2TokenKeyServiceWithCache now points at the earlier Skipping JWK entry log lines so the root cause is discoverable. The existing Key with kid <kid> not found in JWKS. exception message is unchanged for downstream log-based alerts
  • Update dependencies:
    • Jetty: 12.1.10 → 12.1.11
    • JUnit Jupiter: 6.1.0 → 6.1.2
    • log4j2: 2.26.0 → 2.26.1
    • org.json: 20260522 → 20260719
    • SpotBugs annotations: 4.10.2 → 4.10.3
    • SpotBugs Maven Plugin: 4.10.2.0 → 4.10.3.0
    • logback-core (test scope, token-client / token-client-spring / token-client-spring-3): 1.5.25 → 1.5.34
Commits

Updates org.apache.httpcomponents.client5:httpclient5 from 5.6.3 to 5.6.4

Changelog

Sourced from org.apache.httpcomponents.client5:httpclient5's changelog.

Release 5.6.4

This maintenance release fixes SSL parameter application in the async TLS upgrade strategy.

Change Log

  • BearerScheme to reject control characters in bearer token. Contributed by Javid Khan

  • Corrects application of SSL parameters in the async TLS upgrade method. Contributed by Oleg Kalnichevski

Commits
  • 36508ce HttpClient 5.6.4 release
  • 59b3d2e Updated release notes for HttpClient 5.6.4 release
  • c0af759 reject control characters in bearer token in BearerScheme
  • 2422b6c Corrects application of SSL parameters in the async TLS upgrade method
  • 66452ea Upgraded HttpClient version to 5.6.4-SNAPSHOT
  • See full diff in compare view

Updates org.checkerframework:checker-qual from 4.2.1 to 4.2.2

Release notes

Sourced from org.checkerframework:checker-qual's releases.

Checker Framework 4.2.2

Version 4.2.2 (2026-08-06)

Implementation details

Renamed CFAbstractValue.validateSet() to hasAnnotationFromEveryHierarchy().

Closed issues

#7723, #7784, #7806.

Changelog

Sourced from org.checkerframework:checker-qual's changelog.

Version 4.2.2 (2026-08-06)

Implementation details

Renamed CFAbstractValue.validateSet() to hasAnnotationFromEveryHierarchy().

Closed issues

#7723, #7784, #7806.

Commits

Updates io.netty:netty-bom from 4.2.16.Final to 4.2.17.Final

Release notes

Sourced from io.netty:netty-bom's releases.

netty-4.2.17.Final

What's Changed

New Contributors

... (truncated)

Commits
  • e0789d3 [maven-release-plugin] prepare release netty-4.2.17.Final
  • 1b5abc6 Merge changes from forks (#17213)
  • 36fbf57 Update surefire plugin to latest version (#17210)
  • a96226c Add .editorconfig to enforce consistent coding style (#17052)
  • 14a4e6a OpenSSL: Allow to obtain used named group via OpenSslSession (#17058)
  • 26255b1 Weakly reference engines from the OpenSSL engine map (#17199)
  • ae41417 HttpServerCodec: do not consume the method queue for 1xx interim responses ...
  • 41f1db5 Do not write WebSocket handshake response to the tail of the pipeline (#17192)
  • 035d76e Update compress-lzf to 1.2.1 (#17194)
  • 7681aff Fix JdkZlibDecompressor losing the tail of highly compressible streams (#17191)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-minor-patch group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| io.swagger.core.v3:swagger-models | `2.2.52` | `2.2.53` |
| [io.swagger.parser.v3:swagger-parser](https://github.com/swagger-api/swagger-parser) | `2.1.45` | `2.1.46` |
| io.swagger.parser.v3:swagger-parser-core | `2.1.45` | `2.1.46` |
| [com.sap.cloud.security:java-bom](https://github.com/SAP/cloud-security-xsuaa-integration) | `4.0.8` | `4.1.0` |
| [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) | `5.6.3` | `5.6.4` |
| [org.checkerframework:checker-qual](https://github.com/typetools/checker-framework) | `4.2.1` | `4.2.2` |
| [io.netty:netty-bom](https://github.com/netty/netty) | `4.2.16.Final` | `4.2.17.Final` |


Updates `io.swagger.core.v3:swagger-models` from 2.2.52 to 2.2.53

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

Updates `io.swagger.parser.v3:swagger-parser-core` from 2.1.45 to 2.1.46

Updates `io.swagger.parser.v3:swagger-parser-core` from 2.1.45 to 2.1.46

Updates `com.sap.cloud.security:java-bom` from 4.0.8 to 4.1.0
- [Release notes](https://github.com/SAP/cloud-security-xsuaa-integration/releases)
- [Changelog](https://github.com/SAP/cloud-security-services-integration-library/blob/main/CHANGELOG.md)
- [Commits](SAP/cloud-security-services-integration-library@4.0.8...4.1.0)

Updates `org.apache.httpcomponents.client5:httpclient5` from 5.6.3 to 5.6.4
- [Changelog](https://github.com/apache/httpcomponents-client/blob/rel/v5.6.4/RELEASE_NOTES.txt)
- [Commits](apache/httpcomponents-client@rel/v5.6.3...rel/v5.6.4)

Updates `org.checkerframework:checker-qual` from 4.2.1 to 4.2.2
- [Release notes](https://github.com/typetools/checker-framework/releases)
- [Changelog](https://github.com/typetools/checker-framework/blob/master/docs/CHANGELOG.md)
- [Commits](typetools/checker-framework@checker-framework-4.2.1...checker-framework-4.2.2)

Updates `io.netty:netty-bom` from 4.2.16.Final to 4.2.17.Final
- [Release notes](https://github.com/netty/netty/releases)
- [Commits](netty/netty@netty-4.2.16.Final...netty-4.2.17.Final)

---
updated-dependencies:
- dependency-name: io.swagger.core.v3:swagger-models
  dependency-version: 2.2.53
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: io.swagger.parser.v3:swagger-parser
  dependency-version: 2.1.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: io.swagger.parser.v3:swagger-parser-core
  dependency-version: 2.1.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: io.swagger.parser.v3:swagger-parser-core
  dependency-version: 2.1.46
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: com.sap.cloud.security:java-bom
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-minor-patch
- dependency-name: org.apache.httpcomponents.client5:httpclient5
  dependency-version: 5.6.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: org.checkerframework:checker-qual
  dependency-version: 4.2.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
- dependency-name: io.netty:netty-bom
  dependency-version: 4.2.17.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Aug 10, 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

None yet

Development

Successfully merging this pull request may close these issues.

0 participants