Stephane Nicoll
c8a1734e0f
Upgrade to AppEngine SDK 1.9.92
...
Closes gh-28556
2021-11-08 08:59:18 +01:00
Stephane Nicoll
91f7ff3ba3
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28549
2021-11-08 08:29:43 +01:00
Stephane Nicoll
188278ae4a
Polish "Fix typo"
...
See gh-28548
2021-11-08 08:29:11 +01:00
slowjoe007
5a121197fc
Fix typo
...
See gh-28548
2021-11-08 08:28:28 +01:00
Stephane Nicoll
4304eea319
Polish contribution
...
See gh-28531
2021-11-06 12:03:22 +01:00
dreis2211
7d594aa301
Avoid duplicate AOP proxy class definition with FilteredClassLoader
...
See gh-28531
2021-11-06 11:58:28 +01:00
Stephane Nicoll
cd5508a679
Polish
2021-11-05 13:43:38 +01:00
Stephane Nicoll
79c9d21926
Start building against Spring Batch 4.3.4 snapshots
...
See gh-28250
2021-11-05 10:44:30 +01:00
Stephane Nicoll
45deb1ac56
Start building against Spring Kafka 2.7.9 snapshots
...
See gh-28539
2021-11-05 10:43:59 +01:00
Stephane Nicoll
6984d80389
Start building against Spring Integration 5.5.6 snapshots
...
See gh-28513
2021-11-05 10:43:28 +01:00
Stephane Nicoll
b9e1bf6b1a
Start building against Spring Data 2021.0.7 snapshots
...
See gh-28512
2021-11-05 10:43:00 +01:00
Stephane Nicoll
d36c0f21b3
Start building against Micrometer 1.7.6 snapshots
...
See gh-28511
2021-11-05 10:42:34 +01:00
Stephane Nicoll
71fb6ef9e1
Start building against Spring Framework 5.3.13 snapshots
...
See gh-28510
2021-11-05 10:42:04 +01:00
Stephane Nicoll
8426fd9488
Start building against Reactor 2020.0.13 snapshots
...
See gh-28509
2021-11-05 10:41:39 +01:00
Stephane Nicoll
190d39a4f9
Start building against Spring Batch 4.3.4 snapshots
...
See gh-28230
2021-11-05 10:06:58 +01:00
Stephane Nicoll
5c995a2d9b
Start building against Spring Data 2020.0.15 snapshots
...
See gh-28508
2021-11-05 10:06:27 +01:00
Stephane Nicoll
176496bd18
Start building against Micrometer 1.6.13 snapshots
...
See gh-28507
2021-11-05 10:05:38 +01:00
Stephane Nicoll
7ae68b6ccc
Start building against Spring Framework 5.3.13 snapshots
...
See gh-28506
2021-11-05 10:05:11 +01:00
Stephane Nicoll
d887e438eb
Start building against Reactor 2020.0.13 snapshots
...
See gh-28505
2021-11-05 10:04:46 +01:00
Stephane Nicoll
06e9991e6a
Polish
...
See gh-28501
2021-11-02 09:04:32 +01:00
Andy Wilkinson
33249e9414
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28489
2021-10-29 15:52:08 +01:00
Andy Wilkinson
12d8f942be
Stop logging to the file used in the generated documentation
...
Closes gh-28488
2021-10-29 15:51:32 +01:00
Andy Wilkinson
5e42f27b36
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28486
2021-10-29 15:49:49 +01:00
Andy Wilkinson
e4e1958b65
Make Logback fall back to JVM's default charset
...
The charset "default" is an alias for US-ASCII, not the JVM's default
charset. This commit updates the built-in Logback configuration to
use Charset.defaultCharset().name() in place of "default" in the
Java-based configuration. In the XML-based configuration where
Charset.defaultCharset().name() cannot be called, we emulate its
behaviour [1] by using the file.encoding system property, falling back
to UTF-8 when it's not set.
Fixes gh-27230
[1] 19be6113dd/jdk/src/share/classes/java/nio/charset/Charset.java (L604-L617)
2021-10-29 14:40:05 +01:00
Andy Wilkinson
07ed7ab944
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28482
2021-10-29 11:37:33 +01:00
Andy Wilkinson
2462f67be4
Align test for spring.data.mongodb.autoIndexCreation with new default
...
Closes gh-28481
2021-10-29 11:23:35 +01:00
Andy Wilkinson
ae93bb3a11
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28479
2021-10-29 11:12:04 +01:00
Andy Wilkinson
10f0017d69
Fix method validation in child contexts
...
Bean post-processors only apply to the context in which they're
registered. ValidationAutoConfiguration will only auto-configure the
MethodValidationPostProcessor if the post-processor is missing from
the current context and any of its ancestors. If an ancestor context
contains the post-processor it will not be auto-configured and the
descendant context will not have method validation configured.
This commit updates the auto-configuration to limit the search for
an existing MethodValidationPostProcessor bean to the current
context.
Fixes gh-27890
2021-10-29 10:08:57 +01:00
Stephane Nicoll
66553ac8c7
Add .gitattributes
...
Closes gh-28473
2021-10-28 15:27:49 +02:00
Stephane Nicoll
1b3f52d609
Harmonize line endings
...
See gh-27615
2021-10-28 15:22:57 +02:00
Andy Wilkinson
7fbbb4e08a
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28470
2021-10-28 13:07:07 +01:00
Andy Wilkinson
72f80f3ae6
Upgrade to Testcontainers 1.16.1
...
Closes gh-28468
2021-10-28 13:06:41 +01:00
Andy Wilkinson
b375f9fac0
Ignore parameters when checking if */* is accepted
...
Previously the parameters were not ignored so */*;q=0.8 was not
identified as accepting */*. As a result, the most recent producible
content type was returned rather than the default.
This commit updates the argument resolver to ignore parameters.
The default content type is now produced in response to a request
that accepts */*, irrespective of its parameters.
Fixes gh-28446
2021-10-28 12:27:34 +01:00
Stephane Nicoll
ce38d592f9
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28466
2021-10-28 11:53:19 +02:00
Stephane Nicoll
265199f42b
Polish "Fix description of "logging.logback.rollingpolicy.max-history""
...
See gh-28448
2021-10-28 11:50:38 +02:00
Guillaume Husta
a05b2207f8
Fix description of "logging.logback.rollingpolicy.max-history"
...
See gh-28448
2021-10-28 11:45:42 +02:00
Andy Wilkinson
4d811f66ec
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28442
2021-10-22 15:48:28 +01:00
Andy Wilkinson
7607587b6c
Stabilize liveReloadOnClassPathChanged()
...
Closes gh-28441
2021-10-22 15:47:51 +01:00
Andy Wilkinson
50d4eaad63
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28439
2021-10-22 15:23:07 +01:00
Andy Wilkinson
a545b6e0b4
Polish "Polish"
...
See gh-28367
2021-10-22 15:19:13 +01:00
Leo Li
1586232761
Polish
...
See gh-28367
2021-10-22 15:11:57 +01:00
Andy Wilkinson
3fb5af9dd3
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28434
2021-10-22 12:29:14 +01:00
Andy Wilkinson
8a78864edd
Polish "Explain how to disable/configure the ActiveMQ embedded broker"
...
See gh-28183
2021-10-22 12:27:50 +01:00
Moritz Kammerer
0c5f0efcea
Explain how to disable/configure the ActiveMQ embedded broker
...
See gh-28183
2021-10-22 12:27:37 +01:00
Stephane Nicoll
1edd1e8c20
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28433
2021-10-22 11:26:54 +02:00
Stephane Nicoll
773b0f93b7
Upgrade to Commons Compress 1.21
...
Closes gh-28429
2021-10-22 11:26:22 +02:00
Andy Wilkinson
585b8880c7
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28424
2021-10-22 10:10:50 +01:00
Andy Wilkinson
7f976dab9e
Polish "Don't use markdown syntax in javadoc or error messages"
...
See 2f6651c3cb .
Closes gh-28408
2021-10-22 10:08:27 +01:00
Phillip Webb
daf36dff55
Merge branch '2.4.x' into 2.5.x
...
Closes gh-28424
2021-10-21 11:27:29 -07:00
Phillip Webb
2f6651c3cb
Don't use markdown syntax in javadoc or error messages
...
Closes gh-28408
2021-10-21 11:24:54 -07:00