Andy Wilkinson
d11ee29fa1
Merge branch '2.0.x'
6 years ago
Andy Wilkinson
bfc4cad692
Upgrade to Spring REST Docs 2.0.2.RELEASE
...
Closes gh-13505
6 years ago
Stephane Nicoll
5be84dd32b
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
cdbe6fa122
Document properties migrator usage
...
Closes gh-13600
6 years ago
Andy Wilkinson
13835c5dc7
Upgrade to Spring Batch 4.1.0.M2
...
Closes gh-13820
6 years ago
Stephane Nicoll
1c0eb8de36
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
a1ef3f070a
Improve documentation for using a mock environment with @SpringBootTest
...
Closes gh-13827
6 years ago
Stephane Nicoll
237f2fb494
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
ebffe6e4bc
Merge pull request #13817 from jkschneider:metrics-anon-exception
...
* pr/13817:
Polish "Make sure exception tag values are not empty in web metrics"
Make sure exception tag values are not empty in web metrics
6 years ago
Stephane Nicoll
592754d806
Polish "Make sure exception tag values are not empty in web metrics"
...
Closes gh-13187
6 years ago
Jon Schneider
ee37dc1c31
Make sure exception tag values are not empty in web metrics
...
See gh-13187
6 years ago
Stephane Nicoll
bc7db86c8c
Consistently apply exclude on auto-configuration
...
Previously, exclude of an import selector was applied only locally. In
other words, if one import selector imports `AcmeAutoConfiguration` and
another one exclude it, it would still be imported because exclude were
applied separately
This commit collects the outcome of all auto-configuration import
selectors and then apply exclusions in a single pass.
Closes gh-12586
6 years ago
Stephane Nicoll
184cd0c708
Avoid CGLIB requirement in MessageSourceAutoConfiguration
...
Closes gh-13824
6 years ago
Madhura Bhave
ceaac98847
Update docs with OIDC provider configuration
...
See gh-13210
6 years ago
Madhura Bhave
6333edbe16
Merge branch '2.0.x'
6 years ago
Madhura Bhave
66156cc24f
Polish
6 years ago
Andy Wilkinson
b58314f214
Merge branch '2.0.x'
6 years ago
Andy Wilkinson
681717d07a
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
8a4e6a0729
Upgrade to Dependency Management Plugin 1.0.6.RELEASE
...
Closes gh-13807
6 years ago
Andy Wilkinson
147a08eb4c
Merge branch '2.0.x'
6 years ago
Andy Wilkinson
b9ad0d9992
Test the Gradle plugin against Gradle 4.8.1 instead of 4.8
...
Closes gh-13809
6 years ago
Andy Wilkinson
8deea933b9
Test the Gradle plugin against Gradle 4.9
...
Closes gh-13808
6 years ago
Andy Wilkinson
93daac7ba8
Merge branch '2.0.x'
6 years ago
Andy Wilkinson
53400b1d81
Merge branch '1.5.x' into 2.0.x
6 years ago
Andy Wilkinson
56cb968b62
Make Jetty Server fail when its WebAppContext fails to start
...
Closes gh-13803
6 years ago
Stephane Nicoll
4e01eb865b
Polish
...
See gh-13210
6 years ago
Madhura Bhave
dcb172fe2a
Merge branch '2.0.x'
6 years ago
Madhura Bhave
e907ae605d
Fix tests
...
See gh-13783
6 years ago
Madhura Bhave
9bd723ddad
Fix exception message
...
Fixes gh-13783
6 years ago
Madhura Bhave
9b6a069903
Merge branch '2.0.x'
6 years ago
Madhura Bhave
777fc5e464
Merge pull request #13775 from izeye
...
* gh-13775:
Polish EndpointRequest.RequestMatcherFactory.antPath()
6 years ago
Johnny Lim
86ccb26c58
Polish EndpointRequest.RequestMatcherFactory.antPath()
...
Closes gh-13775
6 years ago
Madhura Bhave
ddce819e6f
Merge branch '2.0.x'
6 years ago
Madhura Bhave
c36804908c
Merge branch '1.5.x' into 2.0.x
6 years ago
Madhura Bhave
912eb53d7a
Clarify configuration class behavior based on bean conditions
6 years ago
Madhura Bhave
f88ebc06ff
Add support for OIDC Configuration Provider
...
Closes gh-13210
6 years ago
Madhura Bhave
4fee54cf24
Expose a TestDispatcherServlet bean in the MockMvcAutoConfiguration
...
This commit also contains changes to `ServletContextInitializerBeans`.
`ServletContextInitializerBeans` can now be configured to only look
for specific ServletContextInitializer subclasses, defaulting to
ServletContextIntializer.class. `SpringBootMockMvcBuilderCustomizer`
only cares about filters so it was unnecessary to look for all
`ServletContextInitializer`s. Additionally, adapting `Servlet` beans
caused a cycle once the `DispatcherServlet` bean was added and the
customizer only needs to adapt `Filter` beans.
Closes gh-13241
6 years ago
Andy Wilkinson
6a189cee06
Merge branch '2.0.x'
6 years ago
Andy Wilkinson
a57d0f0853
Reinstate order of WebMvcMetricsFilter
...
Closes gh-13781
6 years ago
Stephane Nicoll
a98b020ee4
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
944ed767ac
Add dependency management for elasticsearch integration tests distro
...
Closes gh-13547
6 years ago
Stephane Nicoll
526b50645e
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
fd03bde769
Merge pull request #13797 from dreis2211:remove-unused-couchbase-test-abstraction
...
* pr/13797:
Remove unused AbstractCouchbaseAutoConfigurationTests
6 years ago
dreis2211
e9a8d4c949
Remove unused AbstractCouchbaseAutoConfigurationTests
...
Closes gh-13797
6 years ago
Stephane Nicoll
8bf22db9c3
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
6e749ef276
Improve NoSuchBeanDefinitionFailureAnalyzer to handle null beans
...
Previously, if a user defines a `@Bean` with a method that returns
`null`, injection by type will ignore that definition but the report
doesn't mention that candidate.
This commit improves the failure analyzer to look for user-defined beans
as well, detecting beans that are `null` matching the requested type
and including them in the report.
Closes gh-13531
6 years ago
Stephane Nicoll
c0b9c72d74
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
e679690a74
Clarify the WebTestClient requires WebFlux on the classpath
...
Closes gh-13469
6 years ago
Stephane Nicoll
070c26d6c3
Merge branch '2.0.x'
6 years ago
Stephane Nicoll
d6c7eff8f7
Add check for empty values for lookup
...
Closes gh-13419
6 years ago