Commit Graph

58713 Commits

Author SHA1 Message Date
Phillip Webb 987ff8ca54 Upgrade to HtmlUnit 4.16.0
Closes gh-47061
2025-09-05 11:41:25 -07:00
Phillip Webb dd67968bc9 Upgrade to HikariCP 7.0.2
Closes gh-47060
2025-09-05 11:41:20 -07:00
Phillip Webb 669f404676 Upgrade to Flyway 11.12.0
Closes gh-47059
2025-09-05 11:41:16 -07:00
Andy Wilkinson 4aa0d9dcac Merge branch '3.5.x'
Closes gh-47058
2025-09-05 17:31:57 +01:00
Andy Wilkinson 90cc5be79f Merge branch '3.4.x' into 3.5.x
Closes gh-47057
2025-09-05 17:31:40 +01:00
Andy Wilkinson f28caee30d Fix NestedJarFile.JarEntryInputStream's available() behavior
Previously, available() would return 0 initially and then negative
values once some data head been read. It should be a positive value
(for entries with content) initially a decrease as data is read
reaching zero once an entry's data has been read in its entirety.

This commit initialises the count of the remaining bytes to
be equal to the entry's uncompressed size. It also removes logic
that closes the stream when remaining equals zero upon read or skip.
This condition was not reached before as remaining would become
negative as soon as any data was read or skipped. With the correct
initialization of remaining, the condition is now reached and it
results in test failures due to premature closure. Furthermore, the
javadoc of read and skip do not require the stream to be closed
when the reach end of file.

Closes gh-47056
2025-09-05 17:29:22 +01:00
Andy Wilkinson 8d2c090af8 Move MongoDB health support into spring-boot-mongodb
Previously the MongoDB health indicates used Spring Data's templates
(imperative and reactive) to access MongoDB. This prevented health
information from being available in apps using Mongo's Java Driver
directly.

This commit updates the health indicates so that they no longer
depend upon Spring Data MongoDB and instead using MongoDB's Java
Driver directly. As they no longer depend on Spring Data MongoDB,
the indicators have also moved from spring-boot-data-mongodb to
spring-boot-mongodb.

Closes gh-47051
2025-09-05 15:07:52 +01:00
Andy Wilkinson a977d260bd Add a property for Data MongoDB's BigDecimal representation
Closes gh-47041
2025-09-05 15:07:52 +01:00
Andy Wilkinson 1554c74c2a Rename spring.data.mongodb.uuid-representation
Closes gh-47052
2025-09-05 15:07:52 +01:00
Andy Wilkinson ab9feff7fa Use mongodb consistently in property names
Closes gh-47050
2025-09-05 15:07:52 +01:00
Andy Wilkinson 08c42701d9 Rename MongoDB properties that don't require Spring Data MongoDB
Previously, all configuration properties for MongoDB used the
prefix spring.data.mongodb irrespective of whether or not they
required Spring Data MongoDB.

This commit renames the properties that do not require Spring Data
MongoDB to use the prefix spring.mongodb.

Closes gh-34954
2025-09-05 15:07:52 +01:00
Moritz Halbritter 63adb82145 Merge branch '3.5.x'
Closes gh-47055
2025-09-05 14:17:39 +02:00
Moritz Halbritter 85afbc6d82 Merge branch '3.4.x' into 3.5.x
Closes gh-47054
2025-09-05 14:14:18 +02:00
Moritz Halbritter d39047183e Merge pull request #47028 from izeye
* pr/47028:
  Polish

Closes gh-47028
2025-09-05 14:13:11 +02:00
Johnny Lim 438df257b5 Polish
See gh-47028

Signed-off-by: Johnny Lim <izeye@naver.com>
2025-09-05 14:13:02 +02:00
Moritz Halbritter ccbf678f5a Merge pull request #47015 from HyunSangHan
* pr/47015:
  Replace deprecated @Temporal with LocalDate

Closes gh-47015
2025-09-05 14:01:37 +02:00
Hyunsang Han 1b7d0b5755 Replace deprecated @Temporal with LocalDate
See gh-47015

Signed-off-by: Hyunsang Han <gustkd3@gmail.com>
2025-09-05 14:00:19 +02:00
Moritz Halbritter d185b319f3 Merge pull request #47029 from maziyarbahramian
* pr/47029:
  Rename ConditionalOnEnabledTracing to ConditionalOnEnabledTracingExport

Closes gh-47029
2025-09-05 13:40:13 +02:00
Maziyar Bahramian 4a888ca1db Rename ConditionalOnEnabledTracing to ConditionalOnEnabledTracingExport
See gh-47029

Signed-off-by: Maziyar Bahramian <maziyar.bahramian@gmail.com>
2025-09-05 13:36:16 +02:00
Phillip Webb 92c3d1835a Adapt to Spring Kafka BackOff updates
See gh-47004
2025-09-04 15:53:38 -07:00
Andy Wilkinson aa3bed5e28 Remove GridFS from MongoConnectionDetails
GridFS is a concept specific to Spring Data MongoDB while
MongoConnectionDetails provides general details for connecting to
MongoDB, with or without Spring Data MongoDB. As such GridFS does not
belong on MongoConnectionDetails and this commit removes it.

Support for configuring GridFS through properties remains.

Closes gh-47044
2025-09-04 18:01:18 +01:00
Andy Wilkinson 42c494caa2 Rename …DataProperties to Data…Properties
Closes gh-47043
2025-09-04 17:47:18 +01:00
Andy Wilkinson 3f03a3d55e Upgrade to Lettuce 6.8.1.RELEASE
Closes gh-47046
2025-09-04 17:01:23 +01:00
Andy Wilkinson 75dbbad1f7 Upgrade to Jedis 6.2.0
Closes gh-47045
2025-09-04 17:01:18 +01:00
Andy Wilkinson b888ba46da Revert "Merge branch '3.5.x'"
This reverts commit fc2700674e, reversing
changes made to b1b5880f48.

See gh-47038
2025-09-04 16:03:50 +01:00
Andy Wilkinson ed96ed6e8c Merge branch '3.4.x' into 3.5.x
See gh-47037
2025-09-04 16:01:56 +01:00
Andy Wilkinson 055b0993da Revert "Remove stale metadata for management.health.influxdb.enabled"
This reverts commit 987635972d.

See gh-45747
2025-09-04 16:01:32 +01:00
Andy Wilkinson 056ed4f226 Merge pull request #46167 from l-trotta
* gh-46167:
  Polish "Add support for Elasticsearch API-key-based authentication"
  Add support for Elasticsearch API-key-based authentication

Closes gh-46167
2025-09-04 14:35:01 +01:00
Andy Wilkinson 86deef6abf Polish "Add support for Elasticsearch API-key-based authentication"
See gh-46167
2025-09-04 12:08:25 +01:00
Laura Trotta 9a70591f31 Add support for Elasticsearch API-key-based authentication
See gh-46167

Signed-off-by: Laura Trotta <laura.trotta@elastic.co>
2025-09-04 12:01:28 +01:00
Andy Wilkinson 79d409a8fc Merge branch '3.5.x' 2025-09-04 11:56:39 +01:00
Andy Wilkinson 3dcd2b79f2 Merge branch '3.4.x' into 3.5.x 2025-09-04 11:56:33 +01:00
Andy Wilkinson 2d9b258f3d Configure dependabot to add waiting-for-triage label to its PRs 2025-09-04 11:55:50 +01:00
Andy Wilkinson 123b8c6d3d Update Bomr to output upgrade links for the release notes
Closes gh-47032
2025-09-04 11:43:37 +01:00
Andy Wilkinson fc2700674e Merge branch '3.5.x'
Closes gh-47038
2025-09-04 11:05:08 +01:00
Andy Wilkinson 19a7331c3e Merge branch '3.4.x' into 3.5.x
Closes gh-47037
2025-09-04 11:03:09 +01:00
Andy Wilkinson 987635972d Remove stale metadata for management.health.influxdb.enabled
The property was deprecated in 3.2 and support removed in 3.4. This
commit updates the metadata to reflect that removal.

Closes gh-45747
2025-09-04 10:58:40 +01:00
Andy Wilkinson b1b5880f48 Merge branch '3.5.x'
Closes gh-47036
2025-09-04 09:56:46 +01:00
Andy Wilkinson 0c9fcd096c Merge branch '3.4.x' into 3.5.x
Closes gh-47035
2025-09-04 09:55:29 +01:00
Andy Wilkinson 11d6c434d9 Test that default max HTTP request header aligns with Tomcat
Closes gh-46977
2025-09-04 09:27:44 +01:00
Andy Wilkinson 78bc232af4 Merge branch '3.5.x'
Closes gh-47034
2025-09-04 09:04:00 +01:00
Andy Wilkinson 4697f2ea51 Merge branch '3.4.x' into 3.5.x
Closes gh-47033
2025-09-04 09:03:40 +01:00
Andy Wilkinson 985e108ccb Delete old output before documenting auto-configuration classes
Without this change, removing a file from the task's inputs would not
be reflected in its output as the stale output file for that input
would remain.

Closes gh-46970
2025-09-04 09:03:16 +01:00
Andy Wilkinson 023cbd42f0 Adapt to changes in Spring Integration's Graph
See gh-47010
2025-09-04 08:02:33 +01:00
Andy Wilkinson 5e9995999c Upgrade to Ehcache 3.11.1
Closes gh-46893
2025-09-04 07:11:18 +01:00
Andy Wilkinson 12312c75ef Use Tomcat 11 in Paketo war deployment test
Closes gh-47030
2025-09-03 18:43:26 +01:00
Andy Wilkinson 5e8d1d4b31 Update deployment tests to use Servlet 6.1 compatible containers
Closes gh-47026
2025-09-03 16:05:31 +01:00
Moritz Halbritter 96d096e2f9 Improve null-safety of module/spring-boot-micrometer-metrics
See gh-46926
2025-09-03 15:12:20 +02:00
Moritz Halbritter 8001061a3c Improve null-safety of module/spring-boot-cache
See gh-46926
2025-09-03 15:12:06 +02:00
Moritz Halbritter f51f872c28 Improve null-safety of module/spring-boot-actuator
See gh-46926
2025-09-03 15:11:53 +02:00