Skip to content

Bump the init-dependencies group in /init with 15 updates - #7

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/init/init-dependencies-ca03561efa
Open

Bump the init-dependencies group in /init with 15 updates#7
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/maven/init/init-dependencies-ca03561efa

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the init-dependencies group in /init with 15 updates:

Package From To
org.slf4j:slf4j-api 1.7.25 2.0.18
org.apache.logging.log4j:log4j-slf4j-impl 2.17.0 2.26.1
org.apache.logging.log4j:log4j-core 2.17.0 2.26.1
com.google.code.gson:gson 2.8.5 2.14.0
junit:junit 4.12 4.13.2
redis.clients:jedis 3.1.0 8.0.0
org.springframework.data:spring-data-redis 2.3.1.RELEASE 4.1.0
org.apache.commons:commons-csv 1.8 1.14.1
org.apache.commons:commons-lang3 3.12.0 3.20.0
co.elastic.clients:elasticsearch-java 8.5.0 9.5.1
org.elasticsearch.client:elasticsearch-rest-client 8.5.0 9.5.1
com.fasterxml.jackson.core:jackson-databind 2.12.3 2.22.2
jakarta.json:jakarta.json-api 2.0.1 2.1.3
io.github.hakky54:sslcontext-kickstart 7.1.0 9.2.1
org.apache.maven.plugins:maven-compiler-plugin 3.7.0 3.15.0

Updates org.slf4j:slf4j-api from 1.7.25 to 2.0.18

Updates org.apache.logging.log4j:log4j-slf4j-impl from 2.17.0 to 2.26.1

Updates org.apache.logging.log4j:log4j-core from 2.17.0 to 2.26.1

Updates com.google.code.gson:gson from 2.8.5 to 2.14.0

Release notes

Sourced from com.google.code.gson:gson's releases.

Gson 2.14.0

What's Changed

  • Add type adapters for java.time classes by @​eamonnmcmanus in google/gson#2948

    When the java.time API is available, Gson automatically can read and write instances of classes like Instant and Duration. The format it uses essentially freezes the JSON representation that ReflectiveTypeAdapterFactory established by default, based on the private fields of java.time classes. That's not a great representation, but it is understandable. Changing it to anything else would break compatibility with systems that are expecting the current format.

    With this change, Gson no longer tries to access private fields of these classes using reflection. So it is no longer necessary to run with --add-opens for these classes on recent JDKs.

  • Remove com.google.gson.graph by @​eamonnmcmanus in google/gson#2990.

    This package was not part of any released artifact and depended on Gson internals in potentially problematic ways.

  • Validate that strings being parsed as integers consist of ASCII characters by @​eamonnmcmanus in google/gson#2995

    Previously, strings could contain non-ASCII Unicode digits and still be parsed as integers. That's inconsistent with how JSON numbers are treated.

  • Fix duplicate key detection when first value is null by @​andrewstellman in google/gson#3006

    This could potentially break code that was relying on the incorrect behaviour. For example, this JSON string was previously accepted but will no longer be: {"foo": null, "foo": bar}.

  • Remove Serializable from internal Type implementation classes. by @​eamonnmcmanus in google/gson#3011

    The nested classes ParameterizedTypeImpl, GenericArrayTypeImpl, and WildcardTypeImpl in GsonTypes are implementations of the corresponding types (without Impl) in java.lang.reflect. For some reason, they were serializable, even though the java.lang.reflect implementations are not. Having unnecessarily serializable classes could conceivably have been a security problem if they were part of a larger exploit using serialization. (We do not consider this a likely scenario and do not suggest that you need to update Gson just to get this change.)

  • Add LegacyProtoTypeAdapterFactory. by @​eamonnmcmanus in google/gson#3014

    This is not part of any released artifact, but may be of use when trying to fix code that is currently accessing the internals of protobuf classes via reflection.

  • Make AppendableWriter do flush and close if delegation object supports by @​MukjepScarlet in google/gson#2925

Other less visible changes

New Contributors

Full Changelog: google/gson@gson-parent-2.13.2...gson-parent-2.14.0

Gson 2.13.2

The main changes in this release are just newer dependencies.

... (truncated)

Changelog

Sourced from com.google.code.gson:gson's changelog.

Change Log

The change log for versions newer than 2.10 is available only on the GitHub Releases page.

Version 2.10

Version 2.9.1

Also many small improvements to javadoc.

Version 2.9.0

The minimum supported Java version changes from 6 to 7.

... (truncated)

Commits
  • 3ff35d6 [maven-release-plugin] prepare release gson-parent-2.14.0
  • a3024fd Bump the maven group with 13 updates (#3002)
  • 5689ffe Bump the github-actions group across 1 directory with 3 updates (#3018)
  • 48db33c Add LegacyProtoTypeAdapterFactory. (#3014)
  • 53d703e Update outdated comment regarding serializable types (#3012)
  • 0189b72 Remove Serializable from internal Type implementation classes. (#3011)
  • f4d371d Fix duplicate key detection when first value is null (#3006)
  • 27d9ba1 Fix typo in README (JPMS dependencies section) (#3005)
  • 1fa9b7a Validate that strings being parsed as integers consist of ASCII characters (#...
  • b7d5954 Add iterator fail-fast tests for LinkedTreeMap.clear() (#2992)
  • Additional commits viewable in compare view

Updates junit:junit from 4.12 to 4.13.2

Release notes

Sourced from junit:junit's releases.

JUnit 4.13.2

Please refer to the release notes for details.

JUnit 4.13.1

Please refer to the release notes for details.

JUnit 4.13

Please refer to the release notes for details.

JUnit 4.13 RC 2

Please refer to the release notes for details.

JUnit 4.13 RC 1

Please refer to the release notes for details.

JUnit 4.13 Beta 3

Please refer to the release notes for details.

JUnit 4.13 Beta 2

Please refer to the release notes for details.

JUnit 4.13 Beta 1

Please refer to the release notes for details.

Commits
  • 05fe2a6 [maven-release-plugin] prepare release r4.13.2
  • ff57344 Add build for JDK 17-ea
  • 02aaa01 Improve check that thread is stopped
  • e9a75f4 Merge test for exception type and message
  • d27ad52 Rename DelegateStatement to DelegatingStatement
  • b83dc2e Better name for test that stops statement
  • 527f3a3 Replace InfiniteLoop with RunForASecond
  • 2db6394 Tidy up FailOnTimeoutTest
  • 64634e1 Update 4.13.2 release notes to document pull 1654
  • f8ee412 Fix serialization of AssumptionViolatedException (#1654)
  • Additional commits viewable in compare view

Updates redis.clients:jedis from 3.1.0 to 8.0.0

Release notes

Sourced from redis.clients:jedis's releases.

8.0.0

Jedis 8.0.0 completes the client class consolidation started in 7.0.0, modernizes protocol defaults, tightens security defaults, and adds command coverage for Redis 8.8 and the Redis 8.10 preview.

  • RESP3 auto-negotiation on by default for all UnifiedJedis-based clients (with graceful RESP2 fallback)
  • Final removal of legacy JedisPooled / JedisSentineled classes in favor of the RedisClient family introduced in 7.0.0
  • Removal of deprecated UnifiedJedis public constructors
  • Internal refactoring that affects users of low-level extension points (custom CommandExecutor, Transaction subclasses, ClusterPipeline, CommandObjects) — protocol and connection wiring is now explicit at construction time
  • Search modernization — the low-level cursor APIs are superseded by ftAggregateIterator(), and the manual broadcast API is removed (Redis 8.0+ broadcasts FT.CREATE server-side)
  • TLS hostname verification enforced by default in DefaultJedisSocketFactory
  • New Redis 8.8 command coverage — XNACK, JSON.SET FPHA, Array commands, INCREX, COUNT aggregator on ZINTER / ZUNION(STORE) and their *STORE variants, multi-aggregator TS.RANGE / TS.MRANGE, plus an experimental COLLECT parameter for FT.AGGREGATE
  • Redis 8.10 command coverage — HIMPORT (Hinted Hash Templates), FT.ALIASLIST, MAXCOUNT / MAXSIZE on XREAD and XREADGROUP, SUNIONCARD / SDIFFCARD, LMOVEM / BLMOVEM, TS.READ, TS.NRANGE / TS.NREVRANGE, TS.QUERYLABELS, and EXCLUDEEMPTY on TS.MRANGE / TS.MREVRANGE

For step-by-step upgrade instructions, see the v7 → v8 migration guide: https://redis.github.io/jedis/migration-guides/v7-to-v8/

Changes

🔥 Breaking Changes

  • Remove unusable aclLogBinary() methods (#4580)
  • Tighten Connection.initializeFromClientConfig() visibility to package-private (#4548)
  • CommandObjects refactoring : Enforce protocol (#4515, #4514, #4513)
  • Bump org.apache.commons:commons-pool2 from 2.12.1 to 2.13.1 (#4409)
  • Fix Connection Close Exception Handling for commons-pool2 2.13.1 (#4439)
  • Switch to RESP3 as default protocol version (#4468)
  • Drop deprecated classes and constructors (#4488)
  • Align Search APIs and behaviour with Redis 8.0+ (#4173)
  • refactor: decouple Transaction from Jedis (#4440)
  • Introduce request & response policy support (#4411)
  • Remove unused leftovers from JedisSharding (#4348)

🧪 Experimental Features

  • Add new COLLECT parameter for FT.AGGREGATE (#4534)

🚀 New Features

  • [Redis 8.10] Add HIMPORT (Hinted Hash Templates) support (#4667)
  • [Redis 8.10] Add FT.ALIASLIST search command support (#4619)
  • [Redis 8.10] Add MAXCOUNT and MAXSIZE options to XREAD and XREADGROUP (#4627)
  • [Redis 8.10] Add SUNIONCARD and SDIFFCARD commands (#4638)
  • [Redis 8.10] Add LMVOVEM/BLMOVEM commands (#4635)
  • [Redis 8.10] Support TS.NRANGE and TS.NREVRANGE time series commands (#4650)
  • [Redis 8.10] Add TS.QUERYLABELS support to the client (#4651)
  • [Redis 8.10] Regenerate command flags registry from Redis 8.10-rc2 (#4653)
  • [Redis 8.10] Regenerate command flags registry from Redis 8.8 (#4652)
  • [Redis 8.10] Add EXCLUDEEMPTY option to TS.MRANGE / TS.MREVRANGE (#4641)
  • [Redis 8.10] Add support for the TS.READ time series command (#4642)
  • Add VISMEMBER vector set command (#4599)
  • Mark connections broken on protocol I/O failures (#4549)
  • Improve MultiDbTransaction functionality and test coverage (#4561)

... (truncated)

Commits
  • 8e393b9 Fix FTSearchParams.params(Map) dropping values when parameters are already se...
  • 9bcb5c6 Pin SDR integration tests to redis:8.6.2 on PR runs (#4676)
  • d2f4d5d [Redis 8.10] Add HIMPORT (Hinted Hash Templates) support (#4667)
  • f2fe13e Add SECURITY.md with vulnerability reporting policy (#4673)
  • 0dca44c decode ScanParams.match with SafeEncoder, not the JVM default charset (#4661)
  • 43bef11 chore(deps-dev): bump org.apache.httpcomponents.client5:httpclient5-fluent fr...
  • c8e87aa Fix sporadic doctest failures: stale keys and FT.AGGREGATE row-order assumpti...
  • aaf15e8 [Redis 8.10] Add integration test for search-on-timeout config (#4600)
  • 87e9df2 Bump 8.10 test env to official 8.10.0 release (#4663)
  • 411d14c Speed up slow integration tests (#4659)
  • Additional commits viewable in compare view

Updates org.springframework.data:spring-data-redis from 2.3.1.RELEASE to 4.1.0

Release notes

Sourced from org.springframework.data:spring-data-redis's releases.

4.1.0

📗 Links

⭐ New Features

  • Add RedisMessageSendingTemplate #3339
  • Added Redis DIGEST command support for connection and template layer #3333
  • Refactor SET command API to include CAS options #3324
  • Add RedisListenerEndpointRegistrar and content negotiation #3321
  • Deprecate TimeUnit-based Template API in favor of Duration and Expiration types #3319
  • Added support for Redis 8.4 DELEX command #3318
  • Reset Caches by flushing DB #3314
  • Add Expiration-based API for SET command operations #3305
  • Add support for annotation-driven Redis Pub/Sub Listeners #3303
  • Make auto-startup configurable in DefaultStreamMessageListenerContainer #3293
  • Support CacheManager.resetCaches() optimization #3290
  • Provide library client information to Redis #3268
  • Add incrementScore to RedisZSet #3257
  • Add incrementScore to RedisZSet #3256
  • Expand bitwise operations with DIFF, DIFF1, ANDOR, ONE #3250
  • Add support for XDELEX and XACKDEL, and expand options for XADD and XTRIM #3247
  • Feature Request: Support XDELEX, XACKEX and extend XADD and XTRIM options from Redis 8.2 #3232
  • Migrate to JSpecify annotations for nullability constraints #3092
  • Consider enabling auto-startup for DefaultStreamMessageListenerContainer #2568
  • Introduce annotation-driven Redis listener endpoint programming model #1004

🐞 Bug Fixes

  • Fix RedisPipelineException double-wrapping in LettuceConnection.closePipeline() #3347
  • RedisPipelineException is double-wrapped in LettuceConnection.closePipeline() #3346
  • Fix sort direction ignored in GeoSearchStoreCommandArgs.sort() #3345
  • Fix sort direction ignored in GeoSearchStoreCommandArgs.sort() #3342
  • JedisClusterStringCommands uses LettuceConverters #3328
  • Fix Duration validation to accept nanosecond fractions #3302
  • Use Jackson default factory to create JavaType #3277
  • JacksonJsonRedisSerializer in Spring Data Redis 4.0.0 breaks deserialization due to use of unsafeSimpleType #3271
  • ReactiveListOperations left/right pop operations fail with Duration with fractions of second #2975

📔 Documentation

  • Fix typos and a malformed anchor in the preface #3377
  • Refine MessageListenerAdapter regarding channel and pattern arguments #3338
  • Update observability note to reflect MicrometerTracing usage #3323
  • Adopt Lettuce observability documentation to Spring Boot 4 changes #3313
  • Refine Antora-build #2797
  • Add Readme templates #2758

🔨 Dependency Upgrades

  • Upgrade to Maven Wrapper 3.9.16 #3373
  • Upgrade to Lettuce 7.5.2.RELEASE #3369
  • Upgrade to Jedis 7.4.1 #3344

... (truncated)

Commits
  • 372d34d Release version 4.1 GA (2026.0.0).
  • a978508 Polishing.
  • 5cb6efe Fix typos and a malformed anchor in the preface.
  • 8486e8b Upgrade to Maven Wrapper 3.9.16.
  • 5d1e833 Refine GitHub Actions workflows.
  • af382a1 Upgrade to Lettuce 7.5.2.RELEASE.
  • e974c67 Refine default typing configuration for RedisMessageConverters.
  • 0875c20 Polishing.
  • 5494d99 After release cleanups.
  • c589786 Prepare next development iteration.
  • Additional commits viewable in compare view

Updates org.apache.commons:commons-csv from 1.8 to 1.14.1

Changelog

Sourced from org.apache.commons:commons-csv's changelog.

Apache Commons CSV 1.14.1 Release Notes

The Apache Commons CSV team is pleased to announce the release of Apache Commons CSV 1.14.1.

This document contains the release notes for the 1.14.1 version of Apache Commons CSV. Commons CSV reads and writes files in Comma Separated Value (CSV) format variations.

Commons CSV requires at least Java 8.

The Apache Commons CSV library provides a simple interface for reading and writing CSV files of various types.

This is a feature and maintenance release. Java 8 or later is required.

Changes in this version include:

Fixed Bugs

  • CSV-318: CSVPrinter.printRecord(Stream) hangs if given a parallel stream. Thanks to Joseph Shraibman, Gary Gregory.
  • CSV-318: CSVPrinter now uses an internal lock instead of synchronized methods. Thanks to Joseph Shraibman, Gary Gregory.
  •       org.apache.commons.csv.CSVPrinter.printRecords(ResultSet) now writes one record at a time using a lock. Thanks to Gary Gregory.
    

Changes

  •       Bump org.apache.commons:commons-parent from 81 to 85 [#542](https://github.com/apache/commons-csv/issues/542). Thanks to Gary Gregory, Dependabot.
    
  •       Bump commons-io:commons-io from 2.18.0 to 2.20.0. Thanks to Gary Gregory.
    
  •       Bump com.opencsv:opencsv from 5.10 to 5.11.2 [#545](https://github.com/apache/commons-csv/issues/545), [#551](https://github.com/apache/commons-csv/issues/551), [#553](https://github.com/apache/commons-csv/issues/553). Thanks to Gary Gregory, Dependabot.
    
  •       Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0 [#556](https://github.com/apache/commons-csv/issues/556). Thanks to Gary Gregory, Dependabot.
    
  •       Bump commons-codec:commons-codec from 1.18.0 to 1.19.0. Thanks to Gary Gregory.
    

Historical list of changes: https://commons.apache.org/proper/commons-csv/changes.html

For complete information on Apache Commons CSV, including instructions on how to submit bug reports, patches, or suggestions for improvement, see the Apache Commons CSV website:

https://commons.apache.org/proper/commons-csv/

Download page: https://commons.apache.org/proper/commons-csv/download_csv.cgi

Have fun! -Apache Commons CSV team


Apache Commons CSV 1.14.0 Release Notes

... (truncated)

Commits
  • e14ef86 Ignore macOS file
  • d8724bf Prepare for the release candidate 1.14.1 RC1
  • b76971c Prepare for the next release candidate
  • b66814e Merge pull request #557 from apache/dependabot/github_actions/github/codeql-a...
  • 9c95e92 Bump github/codeql-action from 3.29.2 to 3.29.4
  • 1fb3716 Bump commons-codec:commons-codec from 1.18.0 to 1.19.0
  • 7b72c50 Merge some string literals
  • 9658373 Update the GitHub pull request template for AI
  • 67192a9 Bump commons-io:commons-io from 2.19.0 to 2.20.0
  • 59164c8 Bump com.opencsv:opencsv from 5.11.1 to 5.11.2 #553
  • Additional commits viewable in compare view

Updates org.apache.commons:commons-lang3 from 3.12.0 to 3.20.0

Updates co.elastic.clients:elasticsearch-java from 8.5.0 to 9.5.1

Release notes

Sourced from co.elastic.clients:elasticsearch-java's releases.

v9.5.1

What's Changed

Fixed elastic/elasticsearch-java#691, thanks @​arimu1!

Full Changelog: elastic/elasticsearch-java@v9.5.0...v9.5.1

v9.5.0

What's Changed

Check the official release notes - in particular the breaking changes.

Fixed a few old issues: elastic/elasticsearch-java#279, elastic/elasticsearch-java#455, elastic/elasticsearch-java#557 (thank you @​aOvOb!)

Full Changelog: elastic/elasticsearch-java@v9.4.5...v9.5.0

v9.4.6

What's Changed

Fixed elastic/elasticsearch-java#691, thanks @​arimu1!

Full Changelog: elastic/elasticsearch-java@v9.4.5...v9.4.6

v9.4.5

What's Changed

Network performance fix: elastic/elasticsearch-java#1292.

Full Changelog: elastic/elasticsearch-java@v9.4.4...v9.4.5

v9.4.4

What's Changed

Full Changelog: elastic/elasticsearch-java@v9.4.3...v9.4.4

v9.4.3

What's Changed

Small breaking change for TextIndexPrefixes:

  • maxChars from int to Integer (now optional)
  • minChars from int to Integer (now optional)

it shouldn't be a breaking change in practice, because the server always returns a default values for these fields.

Full Changelog: elastic/elasticsearch-java@v9.4.2...v9.4.3

v9.4.2

What's Changed

Log bug fix: #1239 thank you @​raynigon

... (truncated)

Commits

Updates org.elasticsearch.client:elasticsearch-rest-client from 8.5.0 to 9.5.1

Release notes

Sourced from org.elasticsearch.client:elasticsearch-rest-client's releases.

Elasticsearch 9.5.1

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.5.1-release-notes

Elasticsearch 9.5.0

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.5.0-release-notes

Elasticsearch 9.4.5

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.4.5-release-notes

Elasticsearch 9.4.4

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.4.4-release-notes

Elasticsearch 9.4.3

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.4.3-release-notes

Elasticsearch 9.4.2

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.4.2-release-notes

Elasticsearch 9.4.1

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.4.1-release-notes

Elasticsearch 9.4.0

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.4.0-release-notes

Elasticsearch 9.3.8

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.3.8-release-notes

Elasticsearch 9.3.7

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.3.7-release-notes

Elasticsearch 9.3.6

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.3.6-release-notes

Elasticsearch 9.3.5

Downloads: https://elastic.co/downloads/elasticsearch Release notes: https://www.elastic.co/docs/release-notes/elasticsearch#elasticsearch-9.3.5-release-notes

Elasticsearch 9.3.4

Downloads: https://elastic.co/downloads/elasticsearch

... (truncated)

Commits
  • 0e1cdd5 Fix false-positive in boolean queries with must_not queries on not indexed fi...
  • 9b692d5 Unmute RejectionActionIT and add logging (#155914) (#155993)
  • e58ef4d Fixing flaky VirtualBatchedCompoundCommitsIT.testVirtualBatchedCompoundCommit...
  • 12b39a6 Fix cloud-ess docker build with docker-container buildx driver (#155985) (#15...
  • 541a145 [9.5] [Test] Fix SearchCommitPrefetcherIT.testSearchNodePrefetchesOnlyLatestG...
  • 72a5314 Update Bouncy Castle FIPS TLS libraries (#155937) (#155959)
  • 2935e3f Fix flaky ES92GpuHnswWriteGraphTests float vector comparison (#155935) (#155956)
  • d4bf7c0 [9.5] Limit number_of_fragments in highlighting to prevent OOM crash (#155507...
  • 6bf4fe9 Unmute AzureBlobContainerStatsTests.testRetriesAndOperationsAreTrackedSeparat...
  • 92472b8 Mute org.elasticsearch.xpack.logsdb.LogsdbIndexingRollingUpgradeIT testIndexi...
  • Additional commits viewable in compare view

Updates com.fasterxml.jackson.core:jackson-databind from 2.12.3 to 2.22.2

Commits

Updates jakarta.json:jakarta.json-api from 2.0.1 to 2.1.3

Release notes

Sourced from jakarta.json:jakarta.json-api's releases.

Jakarta JSON Processing 2.1.3

What's Changed

Full Changelog: jakartaee/jsonp-api@2.1.2-RELEASE...2.1.3-RELEASE

Jakarta JSON Processing 2.1.2

What's Changed

New Contributors

Full Changelog: jakartaee/jsonp-api@2.1.1-RELEASE...2.1.2-RELEASE

Jakarta JSON Processing 2.1.1

What's Changed

New Contributors

Full Changelog: jakartaee/jsonp-api@2.1.0-RELEASE...2.1.1-RELEASE

Jakarta JSON Processing 2.1.0

This release contains following changes:

  • added API to create JsonValue from primitive types
  • added API to create get JsonValue from java.lang.Number type
  • added API to get current event from the JsonParser
  • added standard property to handle duplicated keys
  • clarified behaviour of JsonObjectBuilder.build() method
  • clarified behaviour of JsonGenerator.close() method
  • changed type bounds of a Map argument in Json.createObjectBuilder(Map): JsonObjectBuilder method
  • added definition of exceptions thrown by JsonParser.getValue()/getObject()/getArray() methods
  • removed (default) implementation from the specification API artifact and moved the implementation to the separate project (Eclipse Parsson)
  • provided standalone, Apache Maven based TCK

New Contributors

... (truncated)

Commits
  • b7f9d85 Update API version of jakarta.json:jsonp to 2.1.3
  • 357e30a Update gh action build
  • ed5c55c update parent, build plugins
  • 7ff1087 add support for OSGi Service Loader Mediator
  • 4d57820 Merge pull request #397 from senivam/master_2.1.2
  • 1371b92 Merge remote-tracking branch 'origin/2.1.2' into 'origin/master'
  • dc41223 Update API version of jakarta.json:jsonp to 2.1.3-SNAPSHOT
  • 190d5ff Update API version of jakarta.json:jsonp to 2.1.2
  • 080d0e0 add 21-ea to gh action build
  • 81184d4 update build plugins
  • Additional commits viewable in compare view

Updates io.github.hakky54:sslcontext-kickstart from 7.1.0 to 9.2.1

Changelog

Sourced from io.github.hakky54:sslcontext-kickstart's changelog.

v9.2.1

  • Corrected relocation information for the version from 1.0.0 to 10.0.0
  • Pointed SCM information to the rebranded repository

v9.2.0

  • Added support for loading additional mac certificates from filesystem
  • Improved resolving openssl directory for mac
  • Added support for a custom client for certificate extraction (websockets, sftp, etc)
  • Added support for adding additional identity material at runtime
  • Added relocation information. Project will be renamed to Ayza with the next release
  • Bumped dependencies

v9.1.0

  • Added methods for supporting Security Provider for loading Keystores
  • Skip resolving root ca if unavailable
  • Improved java doc of AggregatedX509ExtendedTrustManager
  • Bumped dependencies

v9.0.0

  • Simplified removing security provider within ProviderUtils
  • Renamed internal class CompositeX509Exten...

    Description has been truncated

Bumps the init-dependencies group in /init with 15 updates:

| Package | From | To |
| --- | --- | --- |
| org.slf4j:slf4j-api | `1.7.25` | `2.0.18` |
| org.apache.logging.log4j:log4j-slf4j-impl | `2.17.0` | `2.26.1` |
| org.apache.logging.log4j:log4j-core | `2.17.0` | `2.26.1` |
| [com.google.code.gson:gson](https://github.com/google/gson) | `2.8.5` | `2.14.0` |
| [junit:junit](https://github.com/junit-team/junit4) | `4.12` | `4.13.2` |
| [redis.clients:jedis](https://github.com/redis/jedis) | `3.1.0` | `8.0.0` |
| [org.springframework.data:spring-data-redis](https://github.com/spring-projects/spring-data-redis) | `2.3.1.RELEASE` | `4.1.0` |
| [org.apache.commons:commons-csv](https://github.com/apache/commons-csv) | `1.8` | `1.14.1` |
| org.apache.commons:commons-lang3 | `3.12.0` | `3.20.0` |
| [co.elastic.clients:elasticsearch-java](https://github.com/elastic/elasticsearch-java) | `8.5.0` | `9.5.1` |
| [org.elasticsearch.client:elasticsearch-rest-client](https://github.com/elastic/elasticsearch) | `8.5.0` | `9.5.1` |
| [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) | `2.12.3` | `2.22.2` |
| [jakarta.json:jakarta.json-api](https://github.com/eclipse-ee4j/jsonp) | `2.0.1` | `2.1.3` |
| [io.github.hakky54:sslcontext-kickstart](https://github.com/Hakky54/sslcontext-kickstart) | `7.1.0` | `9.2.1` |
| [org.apache.maven.plugins:maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) | `3.7.0` | `3.15.0` |


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

Updates `org.apache.logging.log4j:log4j-slf4j-impl` from 2.17.0 to 2.26.1

Updates `org.apache.logging.log4j:log4j-core` from 2.17.0 to 2.26.1

Updates `com.google.code.gson:gson` from 2.8.5 to 2.14.0
- [Release notes](https://github.com/google/gson/releases)
- [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md)
- [Commits](google/gson@gson-parent-2.8.5...gson-parent-2.14.0)

Updates `junit:junit` from 4.12 to 4.13.2
- [Release notes](https://github.com/junit-team/junit4/releases)
- [Changelog](https://github.com/junit-team/junit4/blob/main/doc/ReleaseNotes4.12.md)
- [Commits](junit-team/junit4@r4.12...r4.13.2)

Updates `redis.clients:jedis` from 3.1.0 to 8.0.0
- [Release notes](https://github.com/redis/jedis/releases)
- [Commits](redis/jedis@jedis-3.1.0...v8.0.0)

Updates `org.springframework.data:spring-data-redis` from 2.3.1.RELEASE to 4.1.0
- [Release notes](https://github.com/spring-projects/spring-data-redis/releases)
- [Commits](spring-projects/spring-data-redis@2.3.1.RELEASE...4.1.0)

Updates `org.apache.commons:commons-csv` from 1.8 to 1.14.1
- [Changelog](https://github.com/apache/commons-csv/blob/master/RELEASE-NOTES.txt)
- [Commits](apache/commons-csv@rel/commons-csv-1.8...rel/commons-csv-1.14.1)

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

Updates `co.elastic.clients:elasticsearch-java` from 8.5.0 to 9.5.1
- [Release notes](https://github.com/elastic/elasticsearch-java/releases)
- [Changelog](https://github.com/elastic/elasticsearch-java/blob/main/CHANGELOG.md)
- [Commits](elastic/elasticsearch-java@v8.5.0...v9.5.1)

Updates `org.elasticsearch.client:elasticsearch-rest-client` from 8.5.0 to 9.5.1
- [Release notes](https://github.com/elastic/elasticsearch/releases)
- [Changelog](https://github.com/elastic/elasticsearch/blob/main/docs/changelog.yml)
- [Commits](elastic/elasticsearch@v8.5.0...v9.5.1)

Updates `com.fasterxml.jackson.core:jackson-databind` from 2.12.3 to 2.22.2
- [Commits](https://github.com/FasterXML/jackson/commits)

Updates `jakarta.json:jakarta.json-api` from 2.0.1 to 2.1.3
- [Release notes](https://github.com/eclipse-ee4j/jsonp/releases)
- [Commits](jakartaee/jsonp-api@2.0.1-RELEASE...2.1.3-RELEASE)

Updates `io.github.hakky54:sslcontext-kickstart` from 7.1.0 to 9.2.1
- [Changelog](https://github.com/Hakky54/ayza/blob/master/CHANGELOG.md)
- [Commits](Hakky54/ayza@v7.1.0...v9.2.1)

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

---
updated-dependencies:
- dependency-name: org.slf4j:slf4j-api
  dependency-version: 2.0.18
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: init-dependencies
- dependency-name: org.apache.logging.log4j:log4j-slf4j-impl
  dependency-version: 2.26.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: init-dependencies
- dependency-name: org.apache.logging.log4j:log4j-core
  dependency-version: 2.26.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: init-dependencies
- dependency-name: com.google.code.gson:gson
  dependency-version: 2.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: init-dependencies
- dependency-name: junit:junit
  dependency-version: 4.13.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: init-dependencies
- dependency-name: redis.clients:jedis
  dependency-version: 8.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: init-dependencies
- dependency-name: org.springframework.data:spring-data-redis
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: init-dependencies
- dependency-name: org.apache.commons:commons-csv
  dependency-version: 1.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: init-dependencies
- dependency-name: org.apache.commons:commons-lang3
  dependency-version: 3.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: init-dependencies
- dependency-name: co.elastic.clients:elasticsearch-java
  dependency-version: 9.5.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: init-dependencies
- dependency-name: org.elasticsearch.client:elasticsearch-rest-client
  dependency-version: 9.5.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: init-dependencies
- 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: init-dependencies
- dependency-name: jakarta.json:jakarta.json-api
  dependency-version: 2.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: init-dependencies
- dependency-name: io.github.hakky54:sslcontext-kickstart
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: init-dependencies
- dependency-name: org.apache.maven.plugins:maven-compiler-plugin
  dependency-version: 3.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: init-dependencies
...

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 23, 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