From 389f2cba229309f1cc459dd870599dc90d105c7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Feb 2026 17:58:33 +0000 Subject: [PATCH 1/3] build: bump wolfi/chainguard-base from `6b24461` to `a71dfa7` Bumps [wolfi/chainguard-base](https://github.com/chainguard-images/images-private) from `6b24461` to `a71dfa7`. - [Commits](https://github.com/chainguard-images/images-private/commits) --- updated-dependencies: - dependency-name: wolfi/chainguard-base dependency-version: latest dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile.wolfi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.wolfi b/Dockerfile.wolfi index cc33998b04..601fd3b66b 100644 --- a/Dockerfile.wolfi +++ b/Dockerfile.wolfi @@ -1,4 +1,4 @@ -FROM docker.elastic.co/wolfi/chainguard-base:latest@sha256:6b2446102599dee9d17c472ccdb63b462def06028900fdcbf08d413074f8d131 +FROM docker.elastic.co/wolfi/chainguard-base:latest@sha256:a71dfa7c4cb17fb0f6814cda77e0bdf7b66dec9b6725fe61abd29c2263775af7 RUN mkdir /usr/agent ARG JAR_FILE ARG HANDLER_FILE From e45d62aee6d45c0e2bf48fac160911300e0bd531 Mon Sep 17 00:00:00 2001 From: Sylvain Juge <763082+SylvainJuge@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:47:36 +0100 Subject: [PATCH 2/3] update testcontainers --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7dd82797be..5709a4f1d7 100644 --- a/pom.xml +++ b/pom.xml @@ -108,7 +108,7 @@ 1.17 - 1.21.3 + 1.21.4 2.38.0 From 1b981c927e18badcac6b2a55d220cab088ccf759 Mon Sep 17 00:00:00 2001 From: Sylvain Juge <763082+SylvainJuge@users.noreply.github.com> Date: Fri, 13 Feb 2026 16:19:01 +0100 Subject: [PATCH 3/3] try to prevent issue with cgroupv2 and ES image --- .../apm/agent/esrestclient/v8_x/Elasticsearch8JavaIT.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apm-agent-plugins/apm-es-restclient-plugin/apm-es-restclient-plugin-8_x/src/test/java/co/elastic/apm/agent/esrestclient/v8_x/Elasticsearch8JavaIT.java b/apm-agent-plugins/apm-es-restclient-plugin/apm-es-restclient-plugin-8_x/src/test/java/co/elastic/apm/agent/esrestclient/v8_x/Elasticsearch8JavaIT.java index f891afab0b..ee64326981 100644 --- a/apm-agent-plugins/apm-es-restclient-plugin/apm-es-restclient-plugin-8_x/src/test/java/co/elastic/apm/agent/esrestclient/v8_x/Elasticsearch8JavaIT.java +++ b/apm-agent-plugins/apm-es-restclient-plugin/apm-es-restclient-plugin-8_x/src/test/java/co/elastic/apm/agent/esrestclient/v8_x/Elasticsearch8JavaIT.java @@ -117,7 +117,7 @@ public Elasticsearch8JavaIT(boolean async) { protected static void startContainer(String image) { container = new ElasticsearchContainer(image) - .withEnv("ES_JAVA_OPTS", "-XX:-UseContainerSupport") + .withEnv("ES_JAVA_OPTS", "-XX:-UseContainerSupport -Xms512m -Xmx512m") .withCreateContainerCmdModifier(TestContainersUtils.withMemoryLimit(4096)); container.start(); }