Moritz Halbritter
2605f86731
Polish BaggagePropagationIntegrationTests
2 years ago
Moritz Halbritter
70a5dc64f6
Add missing default value for management.otlp.logging.compression
...
See gh-40961
2 years ago
Moritz Halbritter
cfa05716ef
Polish "Provide auto configuration for OpenTelemetry Logs"
...
See gh-40961
2 years ago
Toshiaki Maki
2d6f2488b7
Provide auto configuration for OpenTelemetry Logs
...
See gh-40961
2 years ago
Andy Wilkinson
1dfb4c9719
Polish "Add a customizer for Lettuce's ClientOptions"
...
See gh-40484
2 years ago
임수현
c517664f08
Add a customizer for Lettuce's ClientOptions
...
See gh-40484
2 years ago
Andy Wilkinson
7e04ac2967
Polish "Make it easier to override RequestToViewNameTranslator bean"
...
See gh-40874
2 years ago
rohit patidar
062ed4ba2b
Make it easier to override RequestToViewNameTranslator bean
...
See gh-40874
2 years ago
Andy Wilkinson
6749ad674f
Polish "Add support for org.testcontainers.kafka.KafkaContainer"
...
See gh-40695
2 years ago
Eddú Meléndez
769f3e9d14
Add support for org.testcontainers.kafka.KafkaContainer
...
Testcontainers 1.19.8 provides `org.testcontainers.kafka.KafkaContainer`,
which relies on `apache/kafka` image.
See gh-40695
2 years ago
Andy Wilkinson
abb3ff0377
Combine tests for standard and Bitnami images into single classes
...
Closes gh-41259
2 years ago
Andy Wilkinson
0f830e91c9
Polish imports in testing doc examples
...
See gh-38361
2 years ago
Andy Wilkinson
7b65176180
Move Redis Bitname compose file into correct directory
...
See gh-41257
2 years ago
Andy Wilkinson
0df946ccad
Fix botched merge of spring-boot-maven-plugin's build.gradle
2 years ago
Andy Wilkinson
d2f74426f7
Work around bug in Gradle's Eclipse model
...
The model incorrectly marks the Gradle API and all of its
dependencies as test dependencies, making them unavailable in Eclipse
to code in src/main/java. We work around this by modifying the
classpath container to remove the test attribute from the
dependencies that should be available to main code.
See gh-41228
2 years ago
Andy Wilkinson
adad8a3515
More LDAP compose file into correct source set
...
See gh-41257
2 years ago
Moritz Halbritter
3e98a932e0
Polish BaggagePropagationIntegrationTests
2 years ago
Phillip Webb
962936370a
Don't report already migrated properties
...
Update `PropertiesMigrationReporter` so that already migrated properties
are not reported. Prior to this commit, if a deprecated property was
replaced by a property that could bind with the name relaxed name it
would be reported. For example: `test.someproperty` being replaced with
`test.some-property`.
In order to check the actual underlying property name, the
`PropertySourceOrigin` class has been updated so that it is always
returned, even if another `Origin` is available.
Fixes gh-35774
2 years ago
Scott Frederick
9da2d1e089
Revert "Use Paketo tiny builder by default for JVM and native apps"
...
This reverts commit 6d2ebc0713 .
2 years ago
Scott Frederick
8623c92a29
Change spring-boot-buildpack-platform api deps to implementation
...
Closes gh-40935
2 years ago
Scott Frederick
267956cf5c
Replace JNI domain sockets implementation with one that uses JDK support
...
Closes gh-41050
2 years ago
Andy Wilkinson
654016af7f
Move Docker-related test support into a separate module
...
See gh-41228
2 years ago
Andy Wilkinson
843de3adbc
Update spring-boot-test-autoconfigure to use docker-test plugin
...
See gh-41228
2 years ago
Andy Wilkinson
ba053dbaac
Update spring-boot-actuator to use docker-test plugin
...
See gh-41228
2 years ago
Andy Wilkinson
9f166f2c85
Update spring-boot-autoconfigure to use docker-test plugin
...
See gh-41228
2 years ago
Andy Wilkinson
89a06608d2
Update spring-boot-maven-plugin to use docker-test plugin
...
See gh-41228
2 years ago
Andy Wilkinson
7d5a761d51
Update spring-boot-gradle-plugin to use docker-test plugin
...
See gh-41228
2 years ago
Andy Wilkinson
d5ef5e9c9d
Update spring-boot-buildpack-platform to use docker-test plugin
...
See gh-41228
2 years ago
Andy Wilkinson
6fbf08fa9a
Update spring-boot-docker-compose to use docker-test plugin
...
See gh-41228
2 years ago
Andy Wilkinson
3f1f801461
Update spring-boot-testcontainers to use docker-test plugin
...
See gh-41228
2 years ago
Scott Frederick
6d2ebc0713
Use Paketo tiny builder by default for JVM and native apps
...
Closes gh-40859
2 years ago
Andy Wilkinson
07442f8366
Exclude plexus-utils in favor of Maven's build-in version
...
Closes gh-41248
2 years ago
Andy Wilkinson
270f364aef
Polish "Make conversion mechanism plural"
...
See gh-41244
2 years ago
Mateus Scheper
068b159799
Make conversion mechanism plural
...
Fixing typo for the "mechanism" word and improving readability by
adding ".".
See gh-41244
2 years ago
Phillip Webb
712d935c8e
Fix checkstyle violation
...
See gh-35786
2 years ago
Phillip Webb
eef4c3c2c0
Allow TestcontainersLifecycleBeanPostProcessor to detect scoped beans
...
Update `TestcontainersLifecycleBeanPostProcessor` so that scoped beans
are included.
Fixes gh-35786
2 years ago
Phillip Webb
8bcdb4b06b
Improve error message when spring.config.import fails to resolve
...
Update `StandardConfigDataLocationResolver` to give a better error
message when a location cannot be resolved. Prior to this commit, a
location with a misspelling in the prefix would only give an error
about the file extension being not known.
Fixes gh-36243
2 years ago
Phillip Webb
85f6641a7e
Allow 'npipe://' prefix in Docker host address
...
Update `LocalHttpClientTransport` to support explicit `npipe://` prefix
in the host name. This is the format used in the Docker config from
v4.31.1 onward.
Fixes gh-41199
2 years ago
Andy Wilkinson
98c11bb5df
Use consistent current thread context classloader for initialization
...
Ensure `Thread.currentThread().getContextClassLoader()` returns the same
classloader for all types of initialization.
Prior to this commit, `JettyEmbeddedWebAppContext` would return a
different classloader when initializing Servlet and Filter classes. This
was due to the fact that our `deferredInitialize()` method has called
outside of a `getContext().call(...)`.
Fixes gh-37649
Co-authored-by: Phillip Webb <phil.webb@broadcom.com>
2 years ago
Phillip Webb
57f452fec1
Disable ReactorResourceFactory use of global resources in tests
...
Add `ContextCustomizerFactory` to automatically disable the use of
`ReactorResourceFactory` global resources in tests.
Fixes gh-38199
2 years ago
Andy Wilkinson
37879d86be
Test that TestBean can override a ConfigurationProperties bean
...
Closes gh-33969
2 years ago
Andy Wilkinson
0ad5aa7400
Enable customization of properties used to create JCache CacheManager
...
Closes gh-39350
2 years ago
Andy Wilkinson
5920b27b57
Upgrade to Flyway 10.15.0
...
Closes gh-41217
2 years ago
Andy Wilkinson
6bdba8e69e
Revert "Enable customization of properties used to create JCache CacheManager"
...
This reverts commit 622c9ed882 that was
pushed accidentally.
2 years ago
Andy Wilkinson
b8927ebd90
Create ActiveMQConnectionFactory without using reflection
...
Fixes gh-41212
2 years ago
Andy Wilkinson
622c9ed882
Enable customization of properties used to create JCache CacheManager
2 years ago
Phillip Webb
c8febf4b86
Restore versioned micrometer documentation links
...
Closes gh-41202
2 years ago
Andy Wilkinson
28a887ad0f
Raise minimum supported version of Gradle
...
Closes gh-41180
2 years ago
Andy Wilkinson
63c6b1ee72
Remove fail-fast logic for versions less than minimum supported
...
CLoses gh-41200
2 years ago
Andy Wilkinson
7701201bc3
Align cascading of config prop validation with bean validation spec
...
Closes gh-40345
2 years ago