choi-hyeseong
bd223e8bea
Remove duplicated `file.getName()` call
...
Update `WebServerPortFileWriter` so that `file.getName()` is only called
once.
See gh-42411
2024-09-22 19:56:59 -07:00
Phillip Webb
21b0bdec12
Merge branch '3.3.x'
...
Closes gh-42418
2024-09-22 17:52:42 -07:00
Phillip Webb
593862b082
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42417
2024-09-22 17:52:37 -07:00
arefbehboudi
0d3fceec5d
Polish
...
See gh-42413
2024-09-22 17:45:59 -07:00
Andy Wilkinson
3952d63369
Revert "Merge branch '3.3.x'"
...
This reverts commit ba0ef11b6b
, reversing
changes made to d380ada4b2
.
See gh-42389
2024-09-20 11:08:37 +01:00
Andy Wilkinson
391b643d8d
Revert "Merge branch '3.2.x' into 3.3.x"
...
This reverts commit d86160d362
, reversing
changes made to 70d2907351
.
See gh-42388
2024-09-20 11:07:30 +01:00
Andy Wilkinson
b4702612de
Revert "Increase timeouts in ZipkinWebClientSenderTests"
...
This reverts commit 0aeea6f069
.
See gh-42375
2024-09-20 11:06:18 +01:00
Andy Wilkinson
4a7d6c445a
Merge branch '3.3.x'
...
Closes gh-42398
2024-09-20 10:33:17 +01:00
Andy Wilkinson
a1593585e3
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42397
2024-09-20 10:33:02 +01:00
Andy Wilkinson
267a642e0f
Reduce duplicate binding of meters to user-defined composites
...
Fixes gh-42396
2024-09-20 10:32:20 +01:00
Moritz Halbritter
ee322d69f1
Merge branch '3.3.x'
...
Closes gh-42394
2024-09-20 10:25:54 +02:00
Yanming Zhou
7c8a6740c1
Remove redundant @Test annotation
...
See gh-42393
2024-09-20 10:22:47 +02:00
Andy Wilkinson
ba0ef11b6b
Merge branch '3.3.x'
...
Closes gh-42389
2024-09-19 19:10:06 +01:00
Andy Wilkinson
d86160d362
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42388
2024-09-19 19:09:52 +01:00
Andy Wilkinson
0aeea6f069
Increase timeouts in ZipkinWebClientSenderTests
...
This is an attempt to stabilize the tests. They are currently flaky
due to a timeout that appears to occur because the mock web server isn't
responding quickly enough. A larger timeout will either confirm this if
the tests stabilize or indicate that the problem has a different cause
if they do not stabilize.
Closes gh-42375
2024-09-19 19:06:53 +01:00
Andy Wilkinson
d380ada4b2
Merge branch '3.3.x'
...
Closes gh-42387
2024-09-19 19:06:23 +01:00
Andy Wilkinson
70d2907351
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42386
2024-09-19 19:06:12 +01:00
Andy Wilkinson
319e33f786
Make a single scrape attempt, protected by Awaitility
...
Using a single scrape attempt that is protected by Awaitility should
protect against instability of the OpenTelemetry Collector instance
running in the container and will hopefully stabilize the test.
This commit has also increased the timeout for a successful response
to 30 seconds and removed the configuration of the configuration of
the polling delay and interval as the values being set were the same
as the defaults.
Closes gh-42377
2024-09-19 19:06:05 +01:00
Andy Wilkinson
24a5b04c28
Merge branch '3.3.x'
...
Closes gh-42383
2024-09-19 19:04:00 +01:00
Andy Wilkinson
61ce431761
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42382
2024-09-19 19:03:11 +01:00
Andy Wilkinson
0e7bdb3e8b
Remove note about graceful shutdown requiring Tomcat 9.0.33
...
Since the note was added, we've upgraded to and now require Tomcat
10.1 so it no longer applies.
Closes gh-42373
2024-09-19 19:02:56 +01:00
Andy Wilkinson
1c65bb1d21
Merge branch '3.3.x'
...
Closes gh-42381
2024-09-19 19:02:17 +01:00
Andy Wilkinson
d4f7cb7bae
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42380
2024-09-19 19:02:03 +01:00
Andy Wilkinson
41bcda8429
Document support for Java 23
...
Closes gh-42374
2024-09-19 14:23:32 +01:00
Stéphane Nicoll
e930a963ad
Polish "Add option for configuring max messages per task"
...
See gh-42341
2024-09-19 14:19:01 +02:00
Dmytro Nosan
09b57eff76
Add option for configuring max messages per task
...
See gh-42341
2024-09-19 14:12:24 +02:00
Andy Wilkinson
6346d4fd6b
Accommodate absence of last execution
...
A task's last execution is absent if it has not yet been executed.
This commit updates the documentation test to accommodate this
possibility.
See gh-42351
2024-09-19 12:03:04 +01:00
Andy Wilkinson
627c691616
Document the reason for deprecation of clean-on-validation-error
...
See gh-42295
2024-09-19 11:22:08 +01:00
Andy Wilkinson
814369e8b0
Enable graceful shutdown by default
...
Closes gh-37495
2024-09-19 10:58:53 +01:00
Johnny Lim
94e8c5db36
Polish gh-39957 and gh-41444
...
See gh-42359
2024-09-19 11:37:11 +02:00
Phillip Webb
d72a9d9eb5
Allow EndpointRequest to match additional paths
...
Add `toAdditionalPaths(...)` methods on the servlet and reactive
`EndpointRequest` classes to support matching of additional paths.
A new `AdditionalPathsMapper` interface provides the mappings between
endpoint IDs and any additional paths that they might use. The existing
`AutoConfiguredHealthEndpointGroups` class has been updated to implement
the interface.
Auto-configurations have also been updated so that additional health
endpoint paths (typically `/livez` and `/readyz`) are permitted
when using Spring Security without any custom configuration.
Fixes gh-40962
2024-09-18 23:47:13 -07:00
Phillip Webb
f5b6514bef
Allow additional context interfaces to be defined for testing
...
Update `AssertableApplicationContext` and `ApplicationContextRunner`
implementations to support additional `ApplicationContext` interfaces.
Closes gh-42369
2024-09-18 23:47:13 -07:00
Stéphane Nicoll
8ac3528b89
Upgrade to SendGrid 4.10.3
...
Closes gh-42368
2024-09-19 08:15:40 +02:00
Stéphane Nicoll
ced82a854c
Upgrade to Zipkin Reporter 3.4.2
...
Closes gh-42367
2024-09-19 08:15:36 +02:00
Stéphane Nicoll
97dd01e28a
Upgrade to SendGrid 4.10.3
...
Closes gh-42366
2024-09-19 07:48:46 +02:00
Stéphane Nicoll
1b3b3aaef4
Upgrade to Hibernate 6.5.3.Final
...
Closes gh-42365
2024-09-19 07:48:42 +02:00
Stéphane Nicoll
c2adc3b6cb
Upgrade to Zipkin Reporter 3.4.2
...
Closes gh-42364
2024-09-19 07:48:38 +02:00
Phillip Webb
d7c6589b5e
Make `PulsarContainerFactoryCustomizers` package private
...
See gh-42182
2024-09-18 18:31:40 -07:00
Andy Wilkinson
47134974fc
Revert "Start building against Spring Session 3.4.0 snapshots"
...
This reverts commit 0ce4170612
.
See gh-42149
2024-09-18 19:09:54 +01:00
Andy Wilkinson
1a4f5abb13
Merge branch '3.3.x'
...
Closes gh-42358
2024-09-18 14:58:35 +01:00
Andy Wilkinson
4a6793eab5
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42357
2024-09-18 14:55:35 +01:00
Andy Wilkinson
1240c59482
Only configure plugin classpath where it's needed
...
When spring-boot-gradle-plugin is using GradleRunner, it needs to be
configured with a custom plugin classpath to account for the fact
that our Gradle plugin is on the classpath of the system classloader
but some of the other plugins would only be available on a
Gradle-created classloader. This imbalance cause class loading
problems as code in spring-boot-gradle-plugin can't see types at
runtime that are only available on the Gradle-created classloader.
To overcome this, we need to configure the GradleRunner with a custom
plugin classpath that contains both spring-boot-gradle-plugin and all
of the other plugins that are used in its various integration tests.
Previously, this was done in GradleBuild that's used by both
spring-boot-gradle-plugin and spring-boot-image-tests. This caused
a problem as spring-boot-image-tests does not have the
above-described problem and trying to correct it did not work leaving
tests that use spring-boot-gradle-plugin unable to see other plugins
such that the native image plugin.
This commit reworks the customization of the plugin classpath so that
it's only done in spring-boot-gradle-plugin's integration tests.
Closes gh-42338
2024-09-18 14:53:54 +01:00
Andy Wilkinson
713afae013
Accommodate next execution time being unknown
...
A task's next execution time is unknown if, for example, it's
currently running. When it's unknown the nextExecution.time will be
missing from the json describing the task. This commit updates the
documentation test to accommodate this possibility.
Closes gh-42351
2024-09-18 11:55:35 +01:00
Andy Wilkinson
c1bd5bdc8b
Upgrade to Spring Batch 5.2.0-M1
...
Closes gh-42142
2024-09-18 10:30:09 +01:00
Johnny Lim
a0d1c10d8a
Polish
...
See gh-42340
2024-09-18 11:19:59 +02:00
Andy Wilkinson
7eaf6d1a96
Prohibit upgrades to Kotlin Coroutines 1.9
...
Closes gh-42348
2024-09-18 09:49:28 +01:00
Andy Wilkinson
fe90ef0d13
Upgrade to Spring Integration 6.4.0-M3
...
Closes gh-42145
2024-09-18 08:57:41 +01:00
Andy Wilkinson
32917323f9
Upgrade to Spring Authorization Server 1.4.0-M2
...
Closes gh-42141
2024-09-18 08:57:40 +01:00
Andy Wilkinson
6fc881e565
Upgrade to Rabbit AMQP Client 5.22.0
...
Closes gh-42350
2024-09-18 08:57:40 +01:00
Andy Wilkinson
59fb90ea0c
Upgrade to Hibernate 6.6.1.Final
...
Closes gh-42349
2024-09-18 08:57:35 +01:00
Andy Wilkinson
3706dced23
Upgrade to Spring Integration 6.3.4
...
Closes gh-42134
2024-09-18 08:48:02 +01:00
Andy Wilkinson
c37f786914
Upgrade to Spring Integration 6.2.9
...
Closes gh-42126
2024-09-18 08:19:23 +01:00
Moritz Halbritter
9294c003b4
Remove setting BP_NATIVE_IMAGE
...
Closes gh-32884
2024-09-17 15:50:57 +02:00
Stéphane Nicoll
f057559b17
Upgrade to Spring Security 6.4.0-M4
...
Closes gh-42148
2024-09-17 09:14:40 +02:00
Stéphane Nicoll
01b4ae526a
Upgrade to Spring Pulsar 1.2.0-M2
...
Closes gh-42147
2024-09-17 09:14:40 +02:00
Stéphane Nicoll
12b25e5280
Upgrade to Spring Kafka 3.3.0-M3
...
Closes gh-42146
2024-09-17 09:14:39 +02:00
Stéphane Nicoll
f844c64b12
Upgrade to Spring AMQP 3.2.0-M3
...
Closes gh-42140
2024-09-17 09:14:39 +02:00
Stéphane Nicoll
36b43f681c
Upgrade to Spring Pulsar 1.1.4
...
Closes gh-42136
2024-09-17 09:13:10 +02:00
Stéphane Nicoll
fc5b80ac64
Upgrade to Spring Kafka 3.2.4
...
Closes gh-42135
2024-09-17 09:13:10 +02:00
Stéphane Nicoll
de5f7ad318
Upgrade to Spring Pulsar 1.0.10
...
Closes gh-42128
2024-09-17 09:13:03 +02:00
Stéphane Nicoll
e009581a41
Upgrade to Spring Kafka 3.1.9
...
Closes gh-42127
2024-09-17 09:13:02 +02:00
Stéphane Nicoll
4dbc636c51
Upgrade to Spring Retry 2.0.9
...
Closes gh-42329
2024-09-16 14:56:13 +02:00
Stéphane Nicoll
c5cfcfb2fd
Upgrade to R2DBC MariaDB 1.2.2
...
Closes gh-42328
2024-09-16 14:56:09 +02:00
Stéphane Nicoll
f7cb18c605
Upgrade to Spring Retry 2.0.9
...
Closes gh-42327
2024-09-16 14:49:27 +02:00
Stéphane Nicoll
c16c04abfe
Upgrade to R2DBC MariaDB 1.2.2
...
Closes gh-42326
2024-09-16 14:49:22 +02:00
Stéphane Nicoll
b75c2b6529
Upgrade to Spring Retry 2.0.9
...
Closes gh-42325
2024-09-16 14:48:13 +02:00
Moritz Halbritter
4877e4d1e3
Allow the configuration of active profiles in SpringApplication.Augmented
...
Closes gh-36660
2024-09-16 11:27:26 +02:00
Stéphane Nicoll
eff76131fb
Merge branch '3.3.x'
...
Closes gh-42323
2024-09-16 09:45:30 +02:00
Stéphane Nicoll
04891746ff
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42322
2024-09-16 09:45:23 +02:00
Stéphane Nicoll
78a140ae25
Polish "Use DataSource.unwrap to get routing data source"
...
See gh-42313
2024-09-16 09:37:22 +02:00
Dmytro Nosan
3f9f0490a6
Use DataSource.unwrap to get routing data source
...
This commit uses DataSource.isWrapperFor and DataSource.unwrap to detect
if a DataSource is an AbstractRoutingDataSource. Previously, it relied
on instanceof which does not account for cases where the datasource has
been proxied.
See gh-42313
2024-09-16 09:28:46 +02:00
Stéphane Nicoll
00440b982c
Merge branch '3.3.x'
...
Closes gh-42321
2024-09-16 09:04:19 +02:00
Stéphane Nicoll
437ff754ef
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42320
2024-09-16 09:04:07 +02:00
Stéphane Nicoll
242803d59b
Polish "Replace Configuration fully qualified name by constant"
...
See gh-42311
2024-09-16 09:01:36 +02:00
mushroom528
9bcfc72307
Replace Configuration fully qualified name by constant
...
See gh-42311
2024-09-16 09:01:23 +02:00
Phillip Webb
d3a2bf4044
Merge pull request #42289 from quaff
...
* pr/42289:
Add common definition annotations support for ConfigurationProperties
Closes gh-42289
2024-09-13 10:52:05 -07:00
Yanming Zhou
44be2e11d9
Add common definition annotations support for ConfigurationProperties
...
Update `` to ensure that common bean definition annotations, such as
`@Lazy`, `@Primary` and `@Fallback`, are applied.
See gh-42289
2024-09-13 10:18:13 -07:00
Stéphane Nicoll
27169a9ace
Merge branch '3.3.x'
...
Closes gh-42304
2024-09-13 16:27:24 +02:00
Stéphane Nicoll
6c36c82376
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42303
2024-09-13 16:27:13 +02:00
Stéphane Nicoll
e6e7357303
Upgrade to Undertow 2.3.17.Final
...
Closes gh-42302
2024-09-13 16:26:00 +02:00
Stéphane Nicoll
4c6d1de284
Upgrade to Spring Data Bom 2024.1.0-M1
...
Closes gh-42143
2024-09-13 15:50:33 +02:00
Stéphane Nicoll
99d4e5cbf8
Upgrade to Spring Data Bom 2024.0.4
...
Closes gh-42132
2024-09-13 15:47:29 +02:00
Stéphane Nicoll
d3861bcaef
Upgrade to Spring Data Bom 2023.1.10
...
Closes gh-42124
2024-09-13 15:45:58 +02:00
Stéphane Nicoll
535ec4c14a
Upgrade to OpenTelemetry 1.42.1
...
Closes gh-42298
2024-09-13 15:18:06 +02:00
Stéphane Nicoll
baff7a5c64
Upgrade to HttpCore5 5.3
...
Closes gh-42297
2024-09-13 15:18:06 +02:00
Stéphane Nicoll
c65d26fb81
Upgrade to Groovy 4.0.23
...
Closes gh-42296
2024-09-13 15:18:06 +02:00
Stéphane Nicoll
d6bfdbd90e
Upgrade to Flyway 10.18.0
...
Closes gh-42295
2024-09-13 15:18:06 +02:00
Stéphane Nicoll
831cbedb31
Upgrade to Groovy 4.0.23
...
Closes gh-42292
2024-09-13 11:20:54 +02:00
Stéphane Nicoll
0215da06df
Upgrade to Groovy 4.0.23
...
Closes gh-42291
2024-09-13 11:17:58 +02:00
Phillip Webb
36abc9c933
Merge branch '3.3.x'
...
Closes gh-42288
2024-09-12 18:57:09 -07:00
Phillip Webb
ee2ec9bc9d
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42287
2024-09-12 18:57:01 -07:00
Yanming Zhou
ee10425b6d
Add tests to ensure private constructor is not used for binding
...
See gh-42277
2024-09-12 18:54:30 -07:00
Phillip Webb
dab5326f59
Merge branch '3.3.x'
...
Closes gh-42286
2024-09-12 18:44:42 -07:00
Phillip Webb
a405c42006
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42285
2024-09-12 18:43:54 -07:00
Phillip Webb
03e7be3ccf
Document that spring.jmx.enabled is not for third-party libraries
...
Closes gh-42272
2024-09-12 18:35:57 -07:00
Phillip Webb
3723a9e040
Support Testcontainer JDBC URLs with `Replace.NON_TEST`
...
Update `TestDatabaseAutoConfiguration` so that Testcontainer JDBC URLs
are also detected when using `Replace.NON_TEST`.
Closes gh-35253
2024-09-12 13:02:23 -07:00
Stéphane Nicoll
af34690093
Upgrade to Spring HATEOAS 2.4.0-RC1
...
Closes gh-42283
2024-09-12 15:30:56 +02:00
Stéphane Nicoll
37cd9e7949
Upgrade to Spring HATEOAS 2.3.3
...
Closes gh-42282
2024-09-12 15:13:43 +02:00
Stéphane Nicoll
a810494447
Upgrade to Spring HATEOAS 2.2.5
...
Closes gh-42281
2024-09-12 15:06:46 +02:00
Moritz Halbritter
ce01dbbad4
Merge branch '3.3.x'
...
Closes gh-42280
2024-09-12 14:29:59 +02:00
Moritz Halbritter
4e3360560a
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42279
2024-09-12 14:29:49 +02:00
Moritz Halbritter
206c28704f
Put registration id in validation error message
...
Closes gh-42278
2024-09-12 14:19:03 +02:00
arefbehboudi
bf1ef30818
Polish
...
See gh-42268
2024-09-12 11:50:27 +02:00
Andy Wilkinson
2bfd784d7b
Revert "Prevent duplicate DynamicPropertyRegistry beans"
...
This partially reverts commit 4d4b189cce
.
The changes to main code are no longer needed as Framework's test
context framework no longer defines a DynamicPropertyRegistry bean. The
changes to test code have been kept to verify that @SpringBootTest and
TestcontainersPropertySourceAutoConfiguration continue to work in
combination.
Closes gh-42275
2024-09-12 08:20:27 +01:00
Phillip Webb
8628f7334f
Ensure `@AutoConfigureTestDatabase` does not replace test databases
...
Update `@AutoConfigureTestDatabase` support so that by default test
databases are not replaced.
Fixes gh-35253
2024-09-11 21:01:54 -07:00
Phillip Webb
2e28d2642d
Polish
2024-09-11 21:01:08 -07:00
Phillip Webb
06e3f37afd
Polish
2024-09-11 15:06:37 -07:00
Phillip Webb
a418943cbc
Merge branch '3.3.x'
2024-09-11 12:54:36 -07:00
Phillip Webb
94fc6b4fe1
Polish formatting
2024-09-11 12:53:25 -07:00
Stéphane Nicoll
3f8079a01d
Upgrade to Neo4j Java Driver 5.24.0
...
Closes gh-42271
2024-09-11 19:04:46 +02:00
Stéphane Nicoll
3dd901703d
Merge branch '3.3.x'
...
Closes gh-42270
2024-09-11 18:57:33 +02:00
Stéphane Nicoll
726ee27cce
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42269
2024-09-11 18:56:35 +02:00
Stéphane Nicoll
5bddca850a
Link to major.minor versions of Spring projects
...
This commit updates the doc build process to link to the latest doc for
a given generation, rather than a specific version. This applies to both
the reference guide and the aggregated Javadoc.
Closes gh-42196
2024-09-11 18:55:27 +02:00
Andy Wilkinson
511bbeebc2
Merge branch '3.3.x'
...
Closes gh-42264
2024-09-11 14:04:47 +01:00
Andy Wilkinson
0758624209
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42263
2024-09-11 14:04:32 +01:00
Andy Wilkinson
504fd62472
Update the link to Log4j2's system properties documentation
...
Closes gh-42262
2024-09-11 14:02:55 +01:00
Andy Wilkinson
b2edefe982
Upgrade to Tomcat 10.1.29
...
Closes gh-42261
2024-09-11 13:30:08 +01:00
Andy Wilkinson
1503b8db8f
Upgrade to Reactor Bom 2023.0.10
...
Closes gh-42131
2024-09-11 13:30:08 +01:00
Andy Wilkinson
11bd835b5a
Upgrade to Postgresql 42.7.4
...
Closes gh-42260
2024-09-11 13:30:07 +01:00
Andy Wilkinson
a253a24228
Upgrade to Netty 4.1.113.Final
...
Closes gh-42259
2024-09-11 13:30:07 +01:00
Andy Wilkinson
2975661b41
Upgrade to MSSQL JDBC 12.6.4.jre11
...
Closes gh-42258
2024-09-11 13:30:06 +01:00
Andy Wilkinson
a08d173b99
Upgrade to Micrometer Tracing 1.3.4
...
Closes gh-42130
2024-09-11 13:30:06 +01:00
Andy Wilkinson
b570c03044
Upgrade to Micrometer 1.13.4
...
Closes gh-42129
2024-09-11 13:30:05 +01:00
Andy Wilkinson
6c2fa2fab0
Upgrade to Logback 1.5.8
...
Closes gh-42257
2024-09-11 13:30:05 +01:00
Andy Wilkinson
9794dc3480
Upgrade to Jetty 12.0.13
...
Closes gh-42256
2024-09-11 13:27:10 +01:00
Andy Wilkinson
a7f74aae36
Upgrade to Jetty Reactive HTTPClient 4.0.7
...
Closes gh-42255
2024-09-11 13:27:05 +01:00
Andy Wilkinson
ef63f1799f
Upgrade to Jakarta Servlet JSP JSTL 3.0.2
...
Closes gh-42254
2024-09-11 13:27:00 +01:00
Andy Wilkinson
ad78f8f823
Upgrade to Infinispan 15.0.8.Final
...
Closes gh-42253
2024-09-11 13:26:56 +01:00
Andy Wilkinson
b63f78c4fd
Upgrade to Zipkin Reporter 3.4.1
...
Closes gh-42252
2024-09-11 13:26:51 +01:00
Andy Wilkinson
e65cc54ec4
Upgrade to Tomcat 10.1.29
...
Closes gh-42251
2024-09-11 13:06:45 +01:00
Andy Wilkinson
c08c5ae5ed
Upgrade to Reactor Bom 2023.0.10
...
Closes gh-42123
2024-09-11 13:05:26 +01:00
Andy Wilkinson
e1724277af
Upgrade to Netty 4.1.113.Final
...
Closes gh-42250
2024-09-11 13:05:26 +01:00
Andy Wilkinson
7d22d7f9cf
Upgrade to MongoDB 4.11.4
...
Closes gh-42249
2024-09-11 13:05:22 +01:00
Andy Wilkinson
4676ad4f4b
Upgrade to Micrometer Tracing 1.2.10
...
Closes gh-42122
2024-09-11 13:05:17 +01:00
Andy Wilkinson
6bced8fe56
Upgrade to Micrometer 1.12.10
...
Closes gh-42121
2024-09-11 13:05:16 +01:00
Andy Wilkinson
d8748ec35d
Upgrade to Jetty 12.0.13
...
Closes gh-42248
2024-09-11 13:05:16 +01:00
Andy Wilkinson
a6c9382540
Upgrade to Jetty Reactive HTTPClient 4.0.7
...
Closes gh-42247
2024-09-11 13:05:11 +01:00
Andy Wilkinson
216c69259e
Upgrade to Jakarta Servlet JSP JSTL 3.0.2
...
Closes gh-42246
2024-09-11 13:05:07 +01:00
Andy Wilkinson
ec91b4c8b8
Upgrade to Infinispan 14.0.31.Final
...
Closes gh-42245
2024-09-11 13:05:02 +01:00
Andy Wilkinson
74f3f8188c
Remove workaround for LOG4J2-3618
...
Closes gh-41906
2024-09-11 12:50:02 +01:00
Andy Wilkinson
080e43ee36
Upgrade to Micrometer Tracing 1.4.0-M3
...
Closes gh-42138
2024-09-11 12:50:02 +01:00
Andy Wilkinson
1073c3bf89
Upgrade to Micrometer 1.14.0-M3
...
Closes gh-42137
2024-09-11 12:50:02 +01:00
Andy Wilkinson
a456a0c208
Upgrade to Tomcat 10.1.29
...
Closes gh-42244
2024-09-11 12:50:02 +01:00
Andy Wilkinson
a3a6b25b81
Upgrade to Spring HATEOAS 2.4.0-M1
...
Closes gh-42243
2024-09-11 12:50:01 +01:00
Andy Wilkinson
c50976a142
Upgrade to Selenium 4.24.0
...
Closes gh-42241
2024-09-11 12:50:01 +01:00
Andy Wilkinson
608f235430
Upgrade to Reactor Bom 2024.0.0-M6
...
Closes gh-42139
2024-09-11 12:50:01 +01:00
Andy Wilkinson
a6afb64d66
Upgrade to R2DBC MySQL 1.3.0
...
Closes gh-42240
2024-09-11 12:50:00 +01:00
Andy Wilkinson
6692e15001
Upgrade to Postgresql 42.7.4
...
Closes gh-42239
2024-09-11 12:50:00 +01:00
Andy Wilkinson
bddda107e0
Upgrade to Netty 4.1.113.Final
...
Closes gh-42238
2024-09-11 12:50:00 +01:00
Andy Wilkinson
8b4d66d10e
Upgrade to MSSQL JDBC 12.8.1.jre11
...
Closes gh-42237
2024-09-11 12:50:00 +01:00
Andy Wilkinson
dc301d33e8
Upgrade to MongoDB 5.1.4
...
Closes gh-42236
2024-09-11 12:49:59 +01:00
Andy Wilkinson
fda09d5a35
Upgrade to Mockito 5.13.0
...
Closes gh-42235
2024-09-11 12:49:59 +01:00
Andy Wilkinson
e178e34f4f
Upgrade to Maven Surefire Plugin 3.5.0
...
Closes gh-42234
2024-09-11 12:49:59 +01:00
Andy Wilkinson
53554278bc
Upgrade to Maven Javadoc Plugin 3.10.0
...
Closes gh-42233
2024-09-11 12:49:59 +01:00
Andy Wilkinson
bd96e20a29
Upgrade to Maven Invoker Plugin 3.8.0
...
Closes gh-42232
2024-09-11 12:49:58 +01:00
Andy Wilkinson
9341afb888
Upgrade to Maven Help Plugin 3.5.0
...
Closes gh-42231
2024-09-11 12:49:58 +01:00
Andy Wilkinson
965cc24d91
Upgrade to Maven Failsafe Plugin 3.5.0
...
Closes gh-42230
2024-09-11 12:49:58 +01:00
Andy Wilkinson
e5858e5d40
Upgrade to Maven Dependency Plugin 3.8.0
...
Closes gh-42229
2024-09-11 12:49:58 +01:00
Andy Wilkinson
07347465ab
Upgrade to Logback 1.5.8
...
Closes gh-42228
2024-09-11 12:49:57 +01:00
Andy Wilkinson
5a3e65c336
Upgrade to Log4j2 2.24.0
...
Closes gh-42227
2024-09-11 11:56:26 +01:00
Andy Wilkinson
9f7d10a388
Upgrade to Liquibase 4.29.2
...
Closes gh-42226
2024-09-11 11:56:26 +01:00
Andy Wilkinson
173915df3d
Upgrade to Lettuce 6.4.0.RELEASE
...
Closes gh-42225
2024-09-11 11:56:25 +01:00
Andy Wilkinson
6dfc7d9c74
Upgrade to Jetty 12.0.13
...
Closes gh-42224
2024-09-11 11:56:25 +01:00
Andy Wilkinson
0c9e183744
Upgrade to Jetty Reactive HTTPClient 4.0.7
...
Closes gh-42223
2024-09-11 11:56:25 +01:00
Andy Wilkinson
add55e91da
Upgrade to Jedis 5.1.5
...
Closes gh-42222
2024-09-11 11:56:25 +01:00
Andy Wilkinson
477c2c4581
Upgrade to JBoss Logging 3.6.1.Final
...
Closes gh-42221
2024-09-11 11:56:24 +01:00
Andy Wilkinson
276a33c37d
Upgrade to Jakarta Servlet JSP JSTL 3.0.2
...
Closes gh-42220
2024-09-11 11:56:24 +01:00
Andy Wilkinson
9df090094f
Upgrade to Infinispan 15.0.8.Final
...
Closes gh-42219
2024-09-11 11:56:24 +01:00
Andy Wilkinson
ee48e83153
Upgrade to Flyway 10.17.3
...
Closes gh-42218
2024-09-11 11:56:24 +01:00
Andy Wilkinson
8c9666b328
Upgrade to Elasticsearch Client 8.15.1
...
Closes gh-42217
2024-09-11 11:16:56 +01:00
Andy Wilkinson
3dafc45707
Upgrade to Commons Lang3 3.17.0
...
Closes gh-42216
2024-09-11 11:16:51 +01:00
Andy Wilkinson
df55630467
Upgrade to Byte Buddy 1.15.1
...
Closes gh-42215
2024-09-11 11:16:46 +01:00
Andy Wilkinson
3e2d9c07c5
Upgrade to Zipkin Reporter 3.4.1
...
Closes gh-42214
2024-09-11 11:16:42 +01:00
Andy Wilkinson
0130ca17f3
Upgrade to Artemis 2.37.0
...
Closes gh-42213
2024-09-11 11:16:38 +01:00
Stéphane Nicoll
04d2a5059f
Merge branch '3.3.x'
...
Closes gh-42209
2024-09-11 11:22:49 +02:00
Stéphane Nicoll
0b44452686
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42208
2024-09-11 11:22:36 +02:00
Stéphane Nicoll
915cb12c64
Fix broken Spring GraphQL links
...
Closes gh-42207
2024-09-11 11:05:37 +02:00
Phillip Webb
81853d4ae4
Use early static registration of EventPublishingContextWrapper in tests
...
Add `OpenTelemetryEventPublisherBeansTestExecutionListener` JUnit
class to automatically trigger early addition of the `ContextStorage`
wrapper. The listener has also been updated with a static `addWrapper()`
method that can be called directly for other test frameworks.
Closes gh-42005
2024-09-10 23:05:47 -07:00
Stéphane Nicoll
bee3158d91
Use Antora links for Spring Data reference doc
...
Closes gh-42203
2024-09-11 06:48:21 +02:00
Stéphane Nicoll
23d76a05e7
Polish "Add consistent scope support for ConfigurationProperties beans"
...
See gh-42073
2024-09-11 05:27:04 +02:00
Dmytro Nosan
2f8fc5cb05
Add consistent scope support for ConfigurationProperties beans
...
See gh-42073
2024-09-10 16:55:02 +02:00
Moritz Halbritter
b5e7302031
Polish "Add Graylog Extended Log Format (GELF) for structured logging"
...
See gh-42158
2024-09-10 13:23:47 +02:00
Samuel Lissner
74a9d11d1b
Add Graylog Extended Log Format (GELF) for structured logging
...
See gh-42158
2024-09-10 13:23:47 +02:00
Stéphane Nicoll
ece5c6fe9e
Polish contribution
...
See gh-42192
2024-09-10 12:44:45 +02:00
arefbehboudi
a5367b52c2
Polish
...
See gh-42192
2024-09-10 12:38:22 +02:00
Stéphane Nicoll
5b25a37a36
Polish "Add Pulsar container factory customizer infrastructure"
...
See gh-42182
2024-09-10 12:22:44 +02:00
Chris Bono
5cbe0e84f9
Add Pulsar container factory customizer infrastructure
...
This commit adds the ability for users to customize the auto-configured
Spring for Apache Pulsar message container factories. Each container
factory holds a set of container properties that is a common target for
users to configure. Allowing the customization of these properties
prevents a rapid increase of configuration properties.
See gh-42182
2024-09-10 12:22:44 +02:00
Stéphane Nicoll
920e3cc4c2
Merge branch '3.3.x'
...
Closes gh-42201
2024-09-10 12:22:21 +02:00
Stéphane Nicoll
2389a9c343
Fix syntax error in Pulsar section
...
Closes gh-42200
2024-09-10 12:21:41 +02:00
Andy Wilkinson
69de06ac2d
Remove origin support for empty YAML maps
...
Adding origin support caused an unexpected and unwanted change
in behavior where configuration property binding would fail. The
failure would occur because there was no way to convert from the
entry in the environment that represents the empty map to the
target type.
The commit changes the YAML loader to drop empty maps,
effectively reverting the map portion of
3bcbb0e594
and gh-21704. This aligns
the behavior with the decision we made in gh-19095.
Origin support for an empty list has been retained as it does not
have a negative effect on configuration property binding. Prior to
these changes, an empty YAML list was mapped to an origin tracked
value that contains an empty list. Fully reverting
3bcbb0e594
would have resulted in an
empty YAML list being mapped to an empty string. To avoid adding a
collection type to the environment, we now map an empty YAML list
to an origin tracked value that contains an empty string.
Closes gh-35403
2024-09-10 10:09:51 +01:00
Andy Wilkinson
bcb2049c40
Polish OpenTelemetryTracingAutoConfiguration
2024-09-10 09:12:11 +01:00
Phillip Webb
e5fde685d4
Rename OpenTelemetryAutoConfiguration in tracing package
...
Deprecate and replace `OpenTelemetryAutoConfiguration` with
`OpenTelemetryTracingAutoConfiguration`.
Closes gh-41991
2024-09-09 20:06:23 -07:00
Phillip Webb
72588fcda7
Provide support for deprecated auto-configuration classes
...
Support `AutoConfiguration.replacements` file that can be placed
alongside an `AutoConfiguration.imports` to replace deprecated
auto-configurations.
Closes gh-14860
2024-09-09 20:06:22 -07:00
Phillip Webb
ddd0d898c2
Polish
2024-09-09 19:22:06 -07:00
Stéphane Nicoll
eb8fe66cb8
Merge branch '3.3.x'
...
Closes gh-42194
2024-09-09 15:42:31 +02:00
Stéphane Nicoll
0cef42c2b1
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42193
2024-09-09 15:42:22 +02:00
Stéphane Nicoll
b1db3ad8ae
Clarify reason for deprecating autotime properties
...
Closes gh-41745
2024-09-09 15:25:23 +02:00
Stéphane Nicoll
c591fab618
Merge branch '3.3.x'
...
Closes gh-42191
2024-09-09 15:05:25 +02:00
Stéphane Nicoll
7b6997a9c6
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42190
2024-09-09 15:04:45 +02:00
Stéphane Nicoll
aef56bceb9
Replace RFC 7807 by RFC 9457 in documentation
...
This commit updates all references to RFC 7807 by RFC 9457 since the
former is now obsolete.
Closes gh-41260
2024-09-09 14:59:21 +02:00
Andy Wilkinson
c460600c43
Merge branch '3.3.x'
...
Closes gh-42189
2024-09-09 13:53:14 +01:00
Andy Wilkinson
2c9f693d17
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42188
2024-09-09 13:53:03 +01:00
Andy Wilkinson
9a74437fbc
Delete unused javadoc CSS file
...
Closes gh-42187
2024-09-09 13:52:23 +01:00
Andy Wilkinson
cbc732832b
Use EnableConfigurationProperties to define MessageSourceProperties
...
Closes gh-42181
2024-09-09 11:34:00 +01:00
Eddú Meléndez
793e9a8795
Add OpenTelemetry Logging Service Connection from LgtmStackContainer and Docker Compose
...
See gh-42174
2024-09-09 08:37:39 +02:00
Stéphane Nicoll
6cd6f75664
Add configuration support for ExponentialHistogram in OTLP Registry
...
Closes gh-41837
2024-09-06 15:59:45 +02:00
Andy Wilkinson
807a38fb12
Merge branch '3.3.x'
...
Closes gh-42177
2024-09-06 14:27:56 +01:00
Andy Wilkinson
be4f06bb17
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42176
2024-09-06 14:27:34 +01:00
Andy Wilkinson
e30ae7a240
Document problem with property binding and Kotlin value classes
...
Closes gh-41693
2024-09-06 14:26:13 +01:00
Moritz Halbritter
c907bec434
Reference context propagation from correlation ID documentation
...
Also links from the logging documenttaion to the correlation ID
documentation.
Closes gh-42054
2024-09-06 14:38:34 +02:00
Moritz Halbritter
861e5209ef
Add transport selection to OtlpLoggingConnectionDetails
...
Closes gh-42171
2024-09-06 14:26:03 +02:00
Moritz Halbritter
bac330354b
Polish "Support Otlp Tracing's GRPC port from service connections"
...
See gh-41333
2024-09-06 13:18:26 +02:00
Eddú Meléndez
7baa553760
Support Otlp Tracing's GRPC port from service connections
...
Otlp Tracing's exporter is configured using Transport. Current support
for service connections read the mapped port for HTTP transport 4318.
This commits adds support to read port for GRPC transport 4317.
See gh-41333
2024-09-06 13:18:26 +02:00
Andy Wilkinson
f6505f7a18
Merge branch '3.3.x'
...
Closes gh-42170
2024-09-06 11:50:52 +01:00
Andy Wilkinson
21b4eb56ec
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42169
2024-09-06 11:32:12 +01:00
Andy Wilkinson
a89ae3fbee
Improve laziness of Pem and JKS SSL store bundles
...
Fixes gh-42119
2024-09-06 11:28:46 +01:00
Stéphane Nicoll
3651ff87cd
Reinstate auto-configuration support for embedded ActiveMQ
...
This commit restores auto-configuration for using an Embedded broker
with ActiveMQ classic.
Contrary to its 2.7.x version, "spring-boot-starter-activemq" no longer
adds the broker for consistency with Artemis, and to keep the existing
3.x behavior. Rather than "inMemory", a "s.a.embedded.enabled"
property has been reintroduced that matches the name used by Artemis.
The documentation has been updated to mention that the broker
dependency must be added to use it.
Closes gh-38404
2024-09-06 11:34:35 +02:00
Andy Wilkinson
1f7e7738e8
Merge branch '3.3.x'
...
Closes gh-42168
2024-09-06 10:19:43 +01:00
Andy Wilkinson
4d2aa2dcf5
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42167
2024-09-06 10:19:30 +01:00
Andy Wilkinson
f8130791ea
Update docs to reflect new no handler found exception behavior
...
Closes gh-42164
2024-09-06 10:17:20 +01:00
Andy Wilkinson
2978ca277c
Merge branch '3.3.x'
...
Closes gh-42166
2024-09-06 10:12:22 +01:00
Andy Wilkinson
f471990b9d
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42165
2024-09-06 10:12:12 +01:00
Andy Wilkinson
4f576031bc
Polish configuration property reference
...
Closes gh-42162
2024-09-06 10:11:43 +01:00
Andy Wilkinson
ac4c24e450
Polish "Add config prop for Spring Data Web's serialization mode"
...
See gh-39797
2024-09-06 09:41:38 +01:00
Yanming Zhou
81c903cde7
Add config prop for Spring Data Web's serialization mode
...
See gh-39797
2024-09-06 09:41:15 +01:00
Moritz Halbritter
8fc1bca56c
Polish "Add service connection from Opentelemetry Collector for Logging"
...
See gh-41324
2024-09-06 10:20:41 +02:00
Eddú Meléndez
7adf843bfd
Add service connection from Opentelemetry Collector for Logging
...
Adds ConnectionDetails from Docker Compose and Testcontainers.
See gh-41324
2024-09-06 10:10:17 +02:00
Moritz Halbritter
9a81796e62
Polish "Reapply "Merge pull request #41213 from timpeeters""
...
See gh-41213
2024-09-06 09:57:45 +02:00
Moritz Halbritter
e39d9434ea
Reapply "Merge pull request #41213 from timpeeters"
...
This reverts commit 653443adc1
.
See gh-41213
2024-09-06 09:45:43 +02:00
Moritz Halbritter
1679a72b0e
Remove spring-web dependency from ZipkinHttpClientSender
...
Closes gh-42161
2024-09-06 08:46:20 +02:00
Moritz Halbritter
dc428e3fc9
Fix deprecations for OpenTelemetry in tests
2024-09-06 08:30:44 +02:00
Moritz Halbritter
2144a159f2
Remove spring-web dependency from ZipkinHttpClientSender
...
Closes gh-42160
2024-09-06 08:21:38 +02:00
Moritz Halbritter
bc3bcd68d6
Polish "Added documentation for configuring OpenTelemetry SDK logs"
...
See gh-41825
2024-09-05 16:59:19 +02:00
famaridon
4261ed9c2b
Added documentation for configuring OpenTelemetry SDK logs
...
See gh-41825
2024-09-05 16:59:19 +02:00
Andy Wilkinson
f7ba5f1bbc
Polish support for Testcontainers Redis
...
- Add support for RedisStackContainer
- Update the docs
Closes gh-41450
2024-09-05 14:25:51 +01:00
Vedran Pavic
4eba42f6dd
Improve Pulsar listener container concurrency configuration
...
This is a follow-up to gh-42062 that utilizes newly introduced
`concurrency` property in `PulsarContainerProperties` to simplify
auto-configuration support for Pulsar listener container concurrency.
See: https://github.com/spring-projects/spring-pulsar/issues/820
See gh-42120
2024-09-05 14:11:26 +01:00
Chris Bono
62ef81b5c8
Add subscription name to Pulsar mapped config props
...
The subscription name config prop was not being set on the Pulsar
listener container properties. This commit adds the subscription
name to the Pulsar property mappers.
See gh-42067
2024-09-05 13:41:07 +01:00
Andy Wilkinson
f024c193e4
Upgrade to Elasticsearch Client 8.15.0
...
Closes gh-42155
2024-09-05 09:03:46 +01:00
Andy Wilkinson
0ce4170612
Start building against Spring Session 3.4.0 snapshots
...
See gh-42149
2024-09-04 16:22:12 +01:00
Andy Wilkinson
0232f27b5e
Start building against Spring Security 6.4.0 snapshots
...
See gh-42148
2024-09-04 16:22:11 +01:00
Andy Wilkinson
23ad50ee60
Start building against Spring Pulsar 1.2.0 snapshots
...
See gh-42147
2024-09-04 16:22:10 +01:00
Andy Wilkinson
1aca11c622
Start building against Spring Kafka 3.3.0 snapshots
...
See gh-42146
2024-09-04 16:22:10 +01:00
Andy Wilkinson
5880d3857e
Start building against Spring Integration 6.4.0 snapshots
...
See gh-42145
2024-09-04 16:22:09 +01:00
Andy Wilkinson
620947f99a
Start building against Spring Data Bom 2024.1.0 snapshots
...
See gh-42143
2024-09-04 16:22:08 +01:00
Andy Wilkinson
a12e36237c
Start building against Spring Batch 5.2.0 snapshots
...
See gh-42142
2024-09-04 16:22:07 +01:00
Andy Wilkinson
b691f7c4bc
Start building against Spring Authorization Server 1.4.0 snapshots
...
See gh-42141
2024-09-04 16:22:07 +01:00
Andy Wilkinson
504b738a10
Start building against Spring AMQP 3.2.0 snapshots
...
See gh-42140
2024-09-04 16:22:06 +01:00
Andy Wilkinson
814999a315
Start building against Reactor Bom 2024.0.0 snapshots
...
See gh-42139
2024-09-04 16:22:06 +01:00
Andy Wilkinson
0982c65213
Start building against Micrometer Tracing 1.4.0 snapshots
...
See gh-42138
2024-09-04 16:22:05 +01:00
Andy Wilkinson
9f79769030
Start building against Micrometer 1.14.0 snapshots
...
See gh-42137
2024-09-04 16:22:05 +01:00
Andy Wilkinson
92ed9efd2c
Start building against Spring Pulsar 1.1.4 snapshots
...
See gh-42136
2024-09-04 13:19:04 +01:00
Andy Wilkinson
f804e82d41
Start building against Spring Kafka 3.2.4 snapshots
...
See gh-42135
2024-09-04 13:19:03 +01:00
Andy Wilkinson
725b1789a4
Start building against Spring Integration 6.3.4 snapshots
...
See gh-42134
2024-09-04 13:19:02 +01:00
Andy Wilkinson
009ccddcab
Start building against Spring Data Bom 2024.0.4 snapshots
...
See gh-42132
2024-09-04 13:19:00 +01:00
Andy Wilkinson
acc60dcab0
Start building against Reactor Bom 2023.0.10 snapshots
...
See gh-42131
2024-09-04 13:18:59 +01:00
Andy Wilkinson
44882e1ec0
Start building against Micrometer Tracing 1.3.4 snapshots
...
See gh-42130
2024-09-04 13:18:58 +01:00
Andy Wilkinson
23f8e16d4a
Start building against Micrometer 1.13.4 snapshots
...
See gh-42129
2024-09-04 13:18:57 +01:00
Andy Wilkinson
4b1fcdb74a
Start building against Spring Pulsar 1.0.10 snapshots
...
See gh-42128
2024-09-04 12:14:26 +01:00
Andy Wilkinson
e972ddfe50
Start building against Spring Kafka 3.1.9 snapshots
...
See gh-42127
2024-09-04 12:14:21 +01:00
Andy Wilkinson
68c331f496
Start building against Spring Integration 6.2.9 snapshots
...
See gh-42126
2024-09-04 12:14:17 +01:00
Andy Wilkinson
ced01c1dd3
Start building against Spring Data Bom 2023.1.10 snapshots
...
See gh-42124
2024-09-04 12:14:08 +01:00
Andy Wilkinson
a465e37908
Start building against Reactor Bom 2023.0.10 snapshots
...
See gh-42123
2024-09-04 12:14:03 +01:00
Andy Wilkinson
49d4f7ac0e
Start building against Micrometer Tracing 1.2.10 snapshots
...
See gh-42122
2024-09-04 12:13:59 +01:00
Andy Wilkinson
593fecbe35
Start building against Micrometer 1.12.10 snapshots
...
See gh-42121
2024-09-04 12:13:54 +01:00
Moritz Halbritter
45cecf5914
Merge branch '3.3.x'
...
Closes gh-42114
2024-09-04 08:48:11 +02:00
Moritz Halbritter
8d44fd5f3e
Improve docker without buildpacks documentation
...
Explain how CDS can be enabled with plain Dockerfiles.
Closes gh-42106
2024-09-04 08:47:32 +02:00
Phillip Webb
b05336d218
Merge branch '3.3.x'
2024-09-03 21:05:05 -07:00
Phillip Webb
599f1f1a9c
Merge branch '3.2.x' into 3.3.x
2024-09-03 21:04:36 -07:00
Phillip Webb
f3645bba13
Update copyright year of changed files
2024-09-03 21:04:26 -07:00
Vedran Pavic
ddf7af7ce3
Add support for configuring Pulsar listener container concurrency
...
Add a configuration property that allows users to configure Pulsar
message listener container concurrency.
See gh-42062
2024-09-03 21:03:27 -07:00
Phillip Webb
0cb311b01d
Merge branch '3.3.x'
2024-09-03 20:31:49 -07:00
Phillip Webb
43afb5bf69
Fix Spring Framework documentation link
...
See gh-41227
2024-09-03 20:31:15 -07:00
Phillip Webb
7e3893f58c
Merge branch '3.3.x'
...
Closes gh-42113
2024-09-03 20:19:20 -07:00
Einar Pehrson
26fb0eecb5
Fix StatsD link typo on Metrics documentation page
...
The documentation link for StatsD metrics has incorrect anchor text.
See gh-42109
2024-09-03 20:18:48 -07:00
Brian Clozel
555ce1e6c9
Merge branch '3.3.x'
2024-09-03 21:13:07 +02:00
Brian Clozel
a04dee67a3
Merge branch '3.2.x' into 3.3.x
2024-09-03 21:12:55 +02:00
Brian Clozel
d0c9e0e9e7
List types of OpenTelemetry support in Spring Boot
...
Closes gh-41227
2024-09-03 21:12:14 +02:00
Phillip Webb
937dbff3f2
Merge branch '3.3.x'
...
Closes gh-42108
2024-09-03 12:10:04 -07:00
Phillip Webb
9f38f2b74f
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42107
2024-09-03 12:09:51 -07:00
Phillip Webb
aeafa20727
Prevent 'Recursive update' exceptions with Restarter
...
Update `Restarter` to prevent 'Recursive update' `IllegalStateException`
from being thrown. Calls to `objectFactory.getObject()` now happen
outside of `computeIfAbsent`.
Fixes gh-41571
2024-09-03 12:09:40 -07:00
Andy Wilkinson
41afc6adcf
Merge branch '3.3.x'
...
Closes gh-42104
2024-09-03 15:04:36 +01:00
Andy Wilkinson
ea246d378e
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42103
2024-09-03 15:04:22 +01:00
Leszek Jasek
0cd99a7435
Improve "Command-line Completion" section
...
Replaced deprecated Spring CLI options with the current ones,
improved section related to completion setup for zsh.
See gh-42091
2024-09-03 15:02:46 +01:00
Andy Wilkinson
4e2212b84a
Merge branch '3.3.x'
...
Closes gh-42101
2024-09-03 14:57:29 +01:00
Andy Wilkinson
790fd4a3e3
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42100
2024-09-03 14:57:18 +01:00
Andy Wilkinson
55f2af1279
Polish "Polish"
...
See gh-42095
2024-09-03 14:56:14 +01:00
arefbehboudi
aa83bbee3d
Polish
...
See gh-42095
2024-09-03 14:45:56 +01:00
Moritz Halbritter
742bfa91eb
Merge branch '3.3.x'
...
Closes gh-42099
2024-09-03 14:47:06 +02:00
Moritz Halbritter
8c5a0f08a4
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42098
2024-09-03 14:46:52 +02:00
Moritz Halbritter
e7d6bd6ccd
Test spring-boot-maven-plugin against Maven 3.9.9
...
Closes gh-42097
2024-09-03 14:29:49 +02:00
Andy Wilkinson
2f9bc79fff
Merge branch '3.3.x'
...
Closes gh-42096
2024-09-03 10:10:42 +01:00
Andy Wilkinson
d2f0b2b090
Correct package statements of Testing section's Kotlin snippets
...
Closes gh-42094
2024-09-03 10:05:19 +01:00
Vedran Pavic
aa40c0fec0
Add support for configuring Pulsar client IO and listener threads
...
Add configuration properties that allow users to configure number
of IO threads and listener threads used by the Pulsar client.
See gh-42052
2024-09-01 20:07:27 -07:00
문정환
08106b5a69
Use List.copyOf() instead of Collections.unmodifiableList()
...
See gh-42019
2024-09-01 19:09:58 -07:00
LeeJaeHoon
d0fe5c24d2
Apply instanceof pattern matching
...
See gh-42049
2024-09-01 19:08:00 -07:00
Phillip Webb
09684295e0
Merge branch '3.3.x'
...
Closes gh-42083
2024-09-01 18:56:14 -07:00
martinfrancois
fd9d907ef3
Improve formatting for Docker configuration example with Colima
...
See gh-42078
2024-09-01 18:55:59 -07:00
Phillip Webb
7fc5c4bb6c
Merge branch '3.3.x'
...
Closes gh-42082
2024-09-01 18:51:45 -07:00
Phillip Webb
b29bc2dc2e
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42081
2024-09-01 18:51:33 -07:00
Johnny Lim
a8452b54b5
Polish
...
See gh-42069
2024-09-01 18:50:38 -07:00
Phillip Webb
85682f8498
Merge branch '3.3.x'
...
Closes gh-42080
2024-09-01 15:25:25 -07:00
Phillip Webb
101ed0e543
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42079
2024-09-01 15:25:15 -07:00
Phillip Webb
8c1d9872d2
Fix support for large zip files
...
Update `spring-boot-loader` to support large zip files by correctly
dealing with unsigned ints.
Fixes gh-42012
2024-09-01 15:13:46 -07:00
Phillip Webb
9b85c73d06
Merge branch '3.3.x'
...
Closes gh-42072
2024-08-31 11:22:10 -07:00
Phillip Webb
3a458d8062
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42071
2024-08-31 11:21:51 -07:00
Phillip Webb
cc2dc558f1
Don't report already migrated properties when has group
...
Refine the fix adding commit 962936370a
so that items with a group
are correctly checked.
Fixes gh-42068
2024-08-31 11:18:47 -07:00
Phillip Webb
fa686bb593
Support Testcontainer Redis with custom image names
...
Update `RedisContainerConnectionDetailsFactory` so that it can also
support `RedisContainer` with a custom name.
Closes gh-41450
2024-08-29 19:26:20 -07:00
Scott Frederick
e7faca3bbb
Add support for Testcontainer Redis
...
Add support for the official `com.redis:testcontainers-redis` container.
See gh-41450
2024-08-29 19:23:40 -07:00
Phillip Webb
926b0ec1c8
Merge branch '3.3.x'
...
Closes gh-42060
2024-08-29 15:06:26 -07:00
Phillip Webb
a09af7ebcf
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42059
2024-08-29 15:06:12 -07:00
Phillip Webb
10855056cc
Support blank MongoDB 'replica-set-name' properties
...
Update `null` checks to `StringUtils.hasText` to allow the
`replica-set-name' property to be overridden with an empty string.
Fixes gh-42055
2024-08-29 15:05:33 -07:00
Phillip Webb
ad730a6c84
Support Log4J2 MultiFormatStringBuilderFormattable structured messages
...
Update Log4J2 `ElasticCommonSchemaStructuredLogFormatter` and
`LogstashStructuredLogFormatter` to support Log4J2 JSON structured
messages (typically `MapMessage`)
Closes gh-42034
2024-08-28 18:55:07 -07:00
Phillip Webb
019dd678e6
Merge branch '3.3.x'
...
Closes gh-42051
2024-08-28 13:01:17 -07:00
Phillip Webb
71f509c9fd
Fix broken tab markup
...
Closes gh-42046
2024-08-28 13:00:25 -07:00
Moritz Halbritter
45b83d5d80
Register reflection hints for ApplicationProperties
...
Closes gh-42038
2024-08-28 10:17:19 +02:00
Andy Wilkinson
162c929a80
Remove workaround that should now be redundant
...
See gh-41980
2024-08-23 16:29:20 +01:00
Andy Wilkinson
d756bf4e86
Upgrade build to Gradle 8.10
...
Closes gh-41980
2024-08-23 12:41:05 +01:00
Andy Wilkinson
d71fe11d10
Try to stop test from being flaky
...
See gh-42005
See gh-41439
2024-08-23 12:06:08 +01:00
Stéphane Nicoll
a7c5edb302
Merge branch '3.3.x'
...
Closes gh-42008
2024-08-23 09:30:40 +02:00
Stéphane Nicoll
aea45b5013
Adapt to Logback deprecation
...
This commit also adds a test so that we can catch this problem hopefully
sooner in the future.
Closes gh-42006
2024-08-23 09:23:30 +02:00
Stéphane Nicoll
25954d296c
Merge branch '3.3.x'
...
Closes gh-42002
2024-08-22 16:50:56 +02:00
Stéphane Nicoll
f0d2503b64
Merge branch '3.2.x' into 3.3.x
...
Closes gh-42001
2024-08-22 16:50:42 +02:00
Andy Wilkinson
7724cf645d
Upgrade to Spring Security 6.4.0-M3
...
Closes gh-41986
2024-08-22 15:47:26 +01:00
Stéphane Nicoll
1822b2fade
Include spring-boot-starter-parent in Integration tests repository
...
This commit makes sure that integration tests for the Maven Plugin have
access to the current "spring-boot-starter-parent" pom and its
hierarchy as new integration tests rely on that.
Closes gh-42000
2024-08-22 16:46:52 +02:00
Andy Wilkinson
5c7ea741f2
Merge branch '3.3.x'
2024-08-22 13:07:39 +01:00
Andy Wilkinson
d4e1aedba5
Merge branch '3.2.x' into 3.3.x
2024-08-22 13:07:24 +01:00
Andy Wilkinson
0b24ee8571
Improve loading of jar entry certificates
...
Co-Authored-By: Phillip Webb <phil.webb@broadcom.com>
2024-08-22 10:56:25 +01:00
Phillip Webb
4d4b189cce
Prevent duplicate DynamicPropertyRegistry beans
...
Remove the Spring Framework registered `DynamicPropertyRegistry` when
using Testcontainers.
See gh-41839
2024-08-21 21:04:13 -07:00
Phillip Webb
c3ed545ffd
Merge branch '3.3.x'
...
Closes gh-41995
2024-08-21 18:24:17 -07:00
Phillip Webb
05b73ceeec
Call getErrorAttributes() only once
...
Refine the fix introduced in commit 60b7e6cf23
so that the
`getErrorAttributes()` method is not called multiple times. If the
status is missing, the `DefaultErrorWebExceptionHandler` will now
call an internal `DefaultErrorAttributes` instance in order to obtain
the actual status result.
Fixes gh-41732
2024-08-21 18:24:08 -07:00
Phillip Webb
d9746861a7
Upgrade to apachepulsar/pulsar 3.2.4
2024-08-21 18:24:08 -07:00
Phillip Webb
8418b18907
Use early static registration of EventPublishingContextWrapper
...
Add `OpenTelemetryEventPublisherApplicationListener` which uses a single
static `ContextStorage` wrapper which gets applied as early as possible.
The static wrapper is then updated as beans come and go.
By adding the wrapper early, we hope to avoid silent failures which
can occur if the `ContextStorage` gets initialized before the wrapper
is added.
Closes gh-41439
2024-08-21 15:35:06 -07:00
Scott Frederick
940f82669d
Fix PEM-encoded text trimming of file contents with Windows line endings
...
See gh-41540
2024-08-21 17:06:08 -05:00
Scott Frederick
f8fdc4a63d
Trim PEM-encoded text in PemContent.of
...
Closes gh-41540
2024-08-21 13:20:25 -05:00
Andy Wilkinson
e08a66f261
Upgrade to Spring Security 6.3.3
...
Closes gh-41985
2024-08-21 18:51:19 +01:00
Andy Wilkinson
737a322d6e
Merge branch '3.3.x'
...
Closes gh-41990
2024-08-21 18:10:38 +01:00
Andy Wilkinson
db54432e59
Merge branch '3.2.x' into 3.3.x
...
Closes gh-41989
2024-08-21 18:09:14 +01:00
Andy Wilkinson
1a6b3a533f
Improve documented logging property descriptions and default values
...
Closes gh-41933
2024-08-21 18:06:49 +01:00
Andy Wilkinson
846167c505
Merge branch '3.3.x'
...
Closes gh-41988
2024-08-21 17:43:19 +01:00
Andy Wilkinson
8bd827e1b8
Merge branch '3.2.x' into 3.3.x
...
Closes gh-41987
2024-08-21 17:43:02 +01:00
Andy Wilkinson
0610fda733
Look at ResponseStatusException's cause for binding errors
...
Fixes gh-41984
2024-08-21 17:06:22 +01:00
Moritz Halbritter
7936de70d8
Merge branch '3.3.x'
...
Closes gh-41979
2024-08-21 13:29:52 +02:00
Moritz Halbritter
7fbb79b7f6
Merge branch '3.2.x' into 3.3.x
...
Closes gh-41978
2024-08-21 13:29:37 +02:00
Moritz Halbritter
66a41db079
Polish "Refactor BasicJsonParser to simplify JSON parsing logic"
...
See gh-41876
2024-08-21 13:20:36 +02:00
hyunmin0317
4a41006ee0
Refactor BasicJsonParser to simplify JSON parsing logic
...
See gh-41876
2024-08-21 13:17:27 +02:00
Moritz Halbritter
0c33768746
Merge branch '3.3.x'
...
Closes gh-41977
2024-08-21 13:11:20 +02:00
Moritz Halbritter
516c764de0
Merge branch '3.2.x' into 3.3.x
...
Closes gh-41976
2024-08-21 13:05:36 +02:00
Moritz Halbritter
5ee522598f
Explain that enabling virtual threads disables traditional thread pools
...
Closes gh-41937
2024-08-21 11:58:53 +02:00
Stéphane Nicoll
c116ec65c9
Upgrade to Spring Integration 6.4.0-M2
...
Closes gh-41822
2024-08-21 08:34:05 +02:00
Stéphane Nicoll
d3ac84dbd3
Upgrade to Spring Integration 6.3.3
...
Closes gh-41974
2024-08-21 08:30:25 +02:00