Andy Wilkinson
c6b2567156
Upgrade to Spring Batch 4.3.4
...
Closes gh-28230
3 years ago
Stephane Nicoll
385e7dd612
Upgrade to Spring Integration 5.4.12
...
Closes gh-28612
3 years ago
Stephane Nicoll
db3a7db73d
Upgrade to Tomcat 9.0.55
...
Closes gh-28690
3 years ago
Stephane Nicoll
38fd96e9c1
Upgrade to Logback 1.2.7
...
Closes gh-28689
3 years ago
Stephane Nicoll
826515a20f
Upgrade to Kafka 2.6.3
...
Closes gh-28688
3 years ago
Stephane Nicoll
a23b737443
Upgrade to Spring Kafka 2.6.12
...
Closes gh-28685
3 years ago
Stephane Nicoll
69da7b4188
Upgrade to Spring AMQP 2.3.12
...
Closes gh-28599
3 years ago
Andy Wilkinson
2e5f80edaa
Merge pull request #28677 from polarbear567
...
* gh-28677:
Fix @deprecated and @see in Archive's javadoc
Closes gh-28677
3 years ago
Leo Li
9de9983e25
Fix @deprecated and @see in Archive's javadoc
...
See gh-28677
3 years ago
Stephane Nicoll
9d02d9a07d
Merge pull request #28532 from jzheaux
...
* pr/28532:
Update copyright year of changed file
Harmonize @ConditionalOnMissingBean definition
Closes gh-28532
3 years ago
Stephane Nicoll
d21c48e474
Update copyright year of changed file
...
See gh-28532
3 years ago
Josh Cummings
d817029575
Harmonize @ConditionalOnMissingBean definition
...
See gh-28532
3 years ago
Stephane Nicoll
e7d62ffb01
Upgrade to Spring Data 2020.0.15
...
Closes gh-28508
3 years ago
Stephane Nicoll
f3e2a40424
Upgrade to Spring HATEOAS 1.2.11
...
Closes gh-28608
3 years ago
Andy Wilkinson
2cec3971d7
Prohibit unwanted dependencies in all modules not just starters
...
Closes gh-28658
3 years ago
Andy Wilkinson
0889cdd516
Add dependency management for Glassfish JSTL
...
To be used in place of javax.servlet:jstl
Closes gh-28657
3 years ago
Andy Wilkinson
08aac25c00
Limit logging produced by spring-boot-loader-tests's intTest task
...
Closes gh-28651
3 years ago
Andy Wilkinson
ede3e4e6a0
Start building against Spring HATEOAS 1.2.11 snapshots
...
See gh-28608
3 years ago
Andy Wilkinson
c018788846
Test JTA auto-configured from JNDI
...
Closes gh-28594
3 years ago
Stephane Nicoll
24c578e3ad
Upgrade to Micrometer 1.6.13
...
Closes gh-28507
3 years ago
Stephane Nicoll
c8d9f94821
Upgrade to Spring Framework 5.3.13
...
Closes gh-28506
3 years ago
Andy Wilkinson
f3b5e6bb3e
Adapt to removal of static resource location filtering
...
See gh-28506
3 years ago
Stephane Nicoll
85e06438e3
Start building against Spring AMQP 2.3.12 snapshots
...
See gh-28599
3 years ago
Stephane Nicoll
ab1748f06f
Upgrade to Reactor 2020.0.13
...
Closes gh-28505
3 years ago
Phillip Webb
75bf430eb1
Polish ImportsContextCustomizerTests
...
Update the test classes to include an `@Import` annotation. Without this
the tests would not fail even if the filter is missing.
3 years ago
Phillip Webb
db0287c51f
Merge pull request #28563 from ledoyen
...
* pr/28563:
Polish 'Ignore JUnit annotations when caching test contexts'
Ignore JUnit annotations when caching test contexts
Closes gh-28563
3 years ago
Phillip Webb
8a14e1e2e9
Polish 'Ignore JUnit annotations when caching test contexts'
...
See gh-28563
3 years ago
Loïc Ledoyen
23876d8a32
Ignore JUnit annotations when caching test contexts
...
Update `ImportsContextCustomizer` to ignore JUnit annotations.
See gh-28563
3 years ago
Stephane Nicoll
e802d6b102
Upgrade to Netty tcNative 2.0.45.Final
...
Closes gh-28555
3 years ago
Stephane Nicoll
c14b07717c
Upgrade to Netty 4.1.70.Final
...
Closes gh-28554
3 years ago
Stephane Nicoll
e06bb693f8
Upgrade to Johnzon 1.2.15
...
Closes gh-28553
3 years ago
Stephane Nicoll
2584463fed
Upgrade to Gson 2.8.9
...
Closes gh-28552
3 years ago
Stephane Nicoll
c5830b083c
Upgrade to AppEngine SDK 1.9.92
...
Closes gh-28551
3 years ago
Stephane Nicoll
c1a6f608d6
Merge pull request #28548 from slowjoe007
...
* pr/28548:
Polish "Fix typo"
Fix typo
Closes gh-28548
3 years ago
Stephane Nicoll
188278ae4a
Polish "Fix typo"
...
See gh-28548
3 years ago
slowjoe007
5a121197fc
Fix typo
...
See gh-28548
3 years ago
Stephane Nicoll
190d39a4f9
Start building against Spring Batch 4.3.4 snapshots
...
See gh-28230
3 years ago
Stephane Nicoll
5c995a2d9b
Start building against Spring Data 2020.0.15 snapshots
...
See gh-28508
3 years ago
Stephane Nicoll
176496bd18
Start building against Micrometer 1.6.13 snapshots
...
See gh-28507
3 years ago
Stephane Nicoll
7ae68b6ccc
Start building against Spring Framework 5.3.13 snapshots
...
See gh-28506
3 years ago
Stephane Nicoll
d887e438eb
Start building against Reactor 2020.0.13 snapshots
...
See gh-28505
3 years ago
Andy Wilkinson
b9e3660833
Revert running tests in parallel
...
See gh-19876
3 years ago
Andy Wilkinson
12d8f942be
Stop logging to the file used in the generated documentation
...
Closes gh-28488
3 years ago
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)
3 years ago
Andy Wilkinson
22d85e6d7b
Allow tests to be run in parallel across multiple workers
...
Closes gh-19876
3 years ago
Andy Wilkinson
2462f67be4
Align test for spring.data.mongodb.autoIndexCreation with new default
...
Closes gh-28481
3 years ago
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
3 years ago
Stephane Nicoll
a8eed97efd
Revert "Add .gitattributes"
...
See gh-28476
3 years ago
Stephane Nicoll
1b3f52d609
Harmonize line endings
...
See gh-27615
3 years ago
Stephane Nicoll
bcb0d83898
Merge pull request #27615 from Goooler
...
* pr/27615:
Polish "Add .gitattributes"
Add .gitattributes
Closes gh-27615
3 years ago