From 083dabbabc20214f61dfe383082b468f12f0bba1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Aug 2026 03:43:46 +0000 Subject: [PATCH 1/2] Bump org.jboss.weld:weld-parent from 54 to 58 Bumps [org.jboss.weld:weld-parent](https://github.com/weld/parent) from 54 to 58. - [Release notes](https://github.com/weld/parent/releases) - [Commits](https://github.com/weld/parent/commits) --- updated-dependencies: - dependency-name: org.jboss.weld:weld-parent dependency-version: '58' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6cba33fa..9cc7f8d1 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ org.jboss.weld weld-parent - 54 + 58 Weld APIs Parent From 23509637b0eefb13862b360cd9956a0243f0c5f4 Mon Sep 17 00:00:00 2001 From: Matej Novotny Date: Sun, 16 Aug 2026 13:18:38 +0200 Subject: [PATCH 2/2] Reformat Environments to comply with formatter plugin 2.29.0 --- .../org/jboss/weld/bootstrap/api/Environments.java | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/weld-spi/src/main/java/org/jboss/weld/bootstrap/api/Environments.java b/weld-spi/src/main/java/org/jboss/weld/bootstrap/api/Environments.java index 45c42ec5..bb78ca99 100644 --- a/weld-spi/src/main/java/org/jboss/weld/bootstrap/api/Environments.java +++ b/weld-spi/src/main/java/org/jboss/weld/bootstrap/api/Environments.java @@ -42,15 +42,13 @@ public enum Environments implements Environment { * {@link EjbInjectionServices} are present, and so will perform EE-style field injection on managed beans itself */ EE_INJECT(new EnvironmentBuilder().addRequiredDeploymentService(TransactionServices.class) - .addRequiredDeploymentService(SecurityServices.class) - /* + .addRequiredDeploymentService(SecurityServices.class)/* * EjbServices is a required bean deployment archive service in this environment. * For backwards compatibility with older integrators that register EjbServices * as a deployment service, this check is suppressed. * * @see WELD-1685 - */ - // .addRequiredBeanDeploymentArchiveService(EjbServices.class) + */// .addRequiredBeanDeploymentArchiveService(EjbServices.class) .addRequiredBeanDeploymentArchiveService(ResourceLoader.class) .addRequiredBeanDeploymentArchiveService(JpaInjectionServices.class) .addRequiredBeanDeploymentArchiveService(ResourceInjectionServices.class) @@ -64,15 +62,13 @@ public enum Environments implements Environment { * */ EE(new EnvironmentBuilder().addRequiredDeploymentService(TransactionServices.class) - .addRequiredDeploymentService(SecurityServices.class) - /* + .addRequiredDeploymentService(SecurityServices.class)/* * EjbServices is a required bean deployment archive service in this environment. * For backwards compatibility with older integrators that register EjbServices * as a deployment service, this check is suppressed. * * @see WELD-1685 - */ - // .addRequiredBeanDeploymentArchiveService(EjbServices.class) + */// .addRequiredBeanDeploymentArchiveService(EjbServices.class) .addRequiredBeanDeploymentArchiveService(ResourceLoader.class) .addRequiredBeanDeploymentArchiveService(InjectionServices.class)),