Commit Graph

36401 Commits (e9a9934b6bf901ba96bb989d57e3d6e3d2ee6b00)
 

Author SHA1 Message Date
Stephane Nicoll c1aa8b1869 Merge branch '2.5.x' into 2.6.x 3 years ago
Stephane Nicoll 47510924e5 Upgrade to Spring LDAP 2.3.6
Closes gh-29720
3 years ago
Stephane Nicoll 6bf172f0f2 Upgrade to Spring LDAP 2.3.6
Closes gh-29710
3 years ago
Moritz Halbritter 829ff4d03f Merge branch '2.7.x' 3 years ago
Moritz Halbritter 2afa02c856 Fix missing test slice configuration
Test slices are now longer registered in spring.factories, but
TestSliceMetadata still looked there for them to generate documentation.
Fixed this so that TestSliceMetadata now looks in the right places for
test slices.

See gh-29873
3 years ago
Brian Clozel 78dde15da4 Merge branch '2.7.x' 3 years ago
Brian Clozel 940558c2a6 Merge branch '2.6.x' into 2.7.x
Closes gh-29906
3 years ago
Brian Clozel 16c47595e7 Merge branch '2.5.x' into 2.6.x
Closes gh-29905
3 years ago
Brian Clozel 00114f9d61 Deregister failed contexts from SpringApplicationShutdownHook
Prior to this change, SpringApplication would register contexts to
SpringApplicationShutdownHook and only deregister them when they're
properly closed. A failed refresh attempt does not deregister the
context from the shutdown hook.
When a test suite runs lots of tests failing because of failed contexts,
this can build up and consume lots of resources.

This commit fixes this leak and deregisters failed contexts.

Fixes gh-29874
3 years ago
Moritz Halbritter f5f6a1fe83 Merge branch '2.7.x' 3 years ago
Moritz Halbritter 4f49e8c990 Polish JavaDoc 3 years ago
Andy Wilkinson 6a1fe01a63 Merge branch '2.7.x' 3 years ago
Andy Wilkinson d18f536bc8 Remove separate netty-tcnative dependency management
Closes gh-29816
3 years ago
Andy Wilkinson 1e1b2a062e Merge branch '2.7.x' 3 years ago
Andy Wilkinson 0e5a82522c Merge branch '2.6.x' into 2.7.x
Closes gh-29904
3 years ago
Andy Wilkinson 9da6fb4a5a Merge branch '2.5.x' into 2.6.x
Closes gh-29903
3 years ago
Andy Wilkinson c676b8b84d Remove KafkaPropertiesKafka24Tests
We now use Kafka 2.7 by default so tests against 2.4 are no longer
required.

Closes gh-29882
3 years ago
Andy Wilkinson 41d516cb4f Merge branch '2.7.x' 3 years ago
Andy Wilkinson b6fea07001 Merge branch '2.6.x' into 2.7.x
Closes gh-29902
3 years ago
Andy Wilkinson 0cebb332d1 Merge branch '2.5.x' into 2.6.x
Closes gh-29901
3 years ago
Andy Wilkinson ac38a5a3e9 Update javadoc to reflect move to SecurityFilterChain
Closes gh-29900
3 years ago
Andy Wilkinson 2145396841 Merge branch '2.7.x' 3 years ago
Andy Wilkinson fc8f55fbf4 Upgrade to OkHTTP 4.9.3
Closes gh-18506
3 years ago
Scott Frederick cb69d01e04 Merge branch '2.7.x' into main 3 years ago
Scott Frederick 42328771ad Suppress deprecation warnings for WebSecurityConfigurerAdapter
Fixes gh-29897
3 years ago
Stephane Nicoll 5078e519b0 Merge branch '2.7.x' 3 years ago
Stephane Nicoll 55fdb9f215 Upgrade to Spring HATEOAS 1.5.0-M2
Closes gh-29893
3 years ago
Moritz Halbritter ec31278f1e Add Moritz to the doc authors list 3 years ago
Moritz Halbritter 31446295cf Merge branch '2.7.x' 3 years ago
Moritz Halbritter 896345df23 Fix test 3 years ago
Stephane Nicoll 3def84d1db Merge branch '2.7.x' 3 years ago
Stephane Nicoll c633b85700 Merge branch '2.6.x' into 2.7.x 3 years ago
Stephane Nicoll 828d4cebee Upgrade to Spring Framework 5.3.16
Closes gh-29761
3 years ago
Stephane Nicoll e17ef68aa0 Merge branch '2.5.x' into 2.6.x 3 years ago
Stephane Nicoll 5b58d1bfca Upgrade to Spring Framework 5.3.16
Closes gh-29719
3 years ago
Stephane Nicoll b1cfa402e8 Upgrade to Spring Framework 5.3.16
Closes gh-29709
3 years ago
Moritz Halbritter 42808ff13c Merge branch '2.7.x'
# Conflicts:
#	spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/spring.factories
#	spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/spring.factories
#	spring-boot-project/spring-boot-test-autoconfigure/src/main/resources/META-INF/spring.factories
3 years ago
Moritz Halbritter 7c96294641 Move our auto-configurations from spring.factories to new file
Closes gh-29873
3 years ago
Stephane Nicoll e48b753b28 Merge branch '2.7.x' 3 years ago
Stephane Nicoll 3d327f4f96 Merge branch '2.6.x' into 2.7.x 3 years ago
Stephane Nicoll 553801bd9d Upgrade to Micrometer 1.9.0-M3
Closes gh-29763
3 years ago
Stephane Nicoll 38d8344b23 Merge branch '2.5.x' into 2.6.x 3 years ago
Stephane Nicoll 6c82bb2e6f Upgrade to Micrometer 1.8.3
Closes gh-29718
3 years ago
Stephane Nicoll 0fba81adf0 Upgrade to Micrometer 1.7.9
Closes gh-29708
3 years ago
Stephane Nicoll 55c94dd255 Merge branch '2.7.x' 3 years ago
Stephane Nicoll 6fa8d81daf Start building against Spring HATEOAS 1.5.0-M2 snapshots
See gh-29893
3 years ago
Moritz Halbritter 303979fb65 Merge branch '2.7.x' 3 years ago
Moritz Halbritter 7d68b58c8f Load auto-configurations from META-INF/spring-boot
Implements a new AutoConfigurationLoader, which loads
auto-configurations from a file in META-INF/spring-boot.

Adapts the AutoConfigurationImportSelector to use the new loader.

Adapts the ImportAutoConfigurationImportSelector to use the new loader.

Adapts the metadata plugin in the build to additionally load the
auto-configurations from the new file.

Updates the documentation for auto-configurations and test slices.

Closes gh-29872
3 years ago
Stephane Nicoll 598eeb85f1 Merge branch '2.7.x' 3 years ago
Stephane Nicoll a55759d531 Merge branch '2.6.x' into 2.7.x 3 years ago