Remove most deprecated APIs that were due for removal in 4.0
Support for rest controller, controler, and servlet endpoints has been kept for now. Issue: 45600
This commit is contained in:
committed by
Phillip Webb
parent
bf385649ec
commit
a78797a2ba
@@ -84,17 +84,6 @@ public enum TestImage {
|
||||
CASSANDRA("cassandra", "3.11.10", () -> CassandraContainer.class,
|
||||
(container) -> ((CassandraContainer) container).withStartupTimeout(Duration.ofMinutes(10))),
|
||||
|
||||
/**
|
||||
* A container image suitable for testing Cassandra using the deprecated
|
||||
* {@link org.testcontainers.containers.CassandraContainer}.
|
||||
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of {@link #CASSANDRA}
|
||||
*/
|
||||
@SuppressWarnings("deprecation")
|
||||
@Deprecated(since = "3.4.0", forRemoval = true)
|
||||
CASSANDRA_DEPRECATED("cassandra", "3.11.10", () -> org.testcontainers.containers.CassandraContainer.class,
|
||||
(container) -> ((org.testcontainers.containers.CassandraContainer<?>) container)
|
||||
.withStartupTimeout(Duration.ofMinutes(10))),
|
||||
|
||||
/**
|
||||
* A container image suitable for testing ClickHouse.
|
||||
*/
|
||||
@@ -136,16 +125,6 @@ public enum TestImage {
|
||||
*/
|
||||
CONFLUENT_KAFKA("confluentinc/cp-kafka", "7.4.0", () -> ConfluentKafkaContainer.class),
|
||||
|
||||
/**
|
||||
* A container image suitable for testing Confluent's distribution of Kafka using the
|
||||
* deprecated {@link org.testcontainers.containers.KafkaContainer}.
|
||||
* @deprecated since 3.4.0 for removal in 4.0.0 in favor of {@link #CONFLUENT_KAFKA}
|
||||
*/
|
||||
@SuppressWarnings("deprecation")
|
||||
@Deprecated(since = "3.4.0", forRemoval = true)
|
||||
CONFLUENT_KAFKA_DEPRECATED("confluentinc/cp-kafka", "7.4.0",
|
||||
() -> org.testcontainers.containers.KafkaContainer.class),
|
||||
|
||||
/**
|
||||
* A container image suitable for testing LLDAP.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user