Skip to content

Commit

Permalink
Bump Redpanda to v24.1.11 (#787)
Browse files Browse the repository at this point in the history
  • Loading branch information
nscuro authored Jul 22, 2024
1 parent 74e7b5e commit f36392b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/dependencytrack/common/ConfigKey.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public enum ConfigKey implements Config.Key {

DEV_SERVICES_ENABLED("dev.services.enabled", false),
DEV_SERVICES_IMAGE_FRONTEND("dev.services.image.frontend", "ghcr.io/dependencytrack/hyades-frontend:snapshot"),
DEV_SERVICES_IMAGE_KAFKA("dev.services.image.kafka", "docker.redpanda.com/vectorized/redpanda:v24.1.7"),
DEV_SERVICES_IMAGE_KAFKA("dev.services.image.kafka", "docker.redpanda.com/vectorized/redpanda:v24.1.11"),
DEV_SERVICES_IMAGE_POSTGRES("dev.services.image.postgres", "postgres:16");

private final String propertyName;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ dev.services.image.frontend=ghcr.io/dependencytrack/hyades-frontend:snapshot
#
# @category: Development
# @type: string
dev.services.image.kafka=docker.redpanda.com/vectorized/redpanda:v24.1.7
dev.services.image.kafka=docker.redpanda.com/vectorized/redpanda:v24.1.11

# The image to use for the PostgreSQL dev services container.
#
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public class ProcessorManagerTest {

@Rule
public RedpandaContainer kafkaContainer = new RedpandaContainer(DockerImageName
.parse("docker.redpanda.com/vectorized/redpanda:v24.1.7"));
.parse("docker.redpanda.com/vectorized/redpanda:v24.1.11"));

private AdminClient adminClient;
private Producer<String, String> producer;
Expand Down

0 comments on commit f36392b

Please sign in to comment.