From c24d5c366d936dc859eca200675939300b8a1423 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 13:48:13 +0000 Subject: [PATCH 1/2] Bump org.jboss.pnc:pnc-api from 3.4.4 to 3.5.0 Bumps [org.jboss.pnc:pnc-api](https://github.com/project-ncl/pnc-api) from 3.4.4 to 3.5.0. - [Release notes](https://github.com/project-ncl/pnc-api/releases) - [Commits](https://github.com/project-ncl/pnc-api/compare/3.4.4...3.5.0) --- updated-dependencies: - dependency-name: org.jboss.pnc:pnc-api dependency-version: 3.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ea6b22cfc..20e6a8539 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ 1 3.4.5 3.5.0 - 3.4.4 + 3.5.0 1.2.2 1.22 17 From 57928121964500225660076733144c5239f12619 Mon Sep 17 00:00:00 2001 From: Nick Cross Date: Mon, 15 Jun 2026 14:58:14 +0100 Subject: [PATCH 2/2] Fix switch issue --- .../org/jboss/da/communication/rt/ArtifactoryConnector.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/communication/src/main/java/org/jboss/da/communication/rt/ArtifactoryConnector.java b/communication/src/main/java/org/jboss/da/communication/rt/ArtifactoryConnector.java index 127f03a6a..5f8a52da7 100644 --- a/communication/src/main/java/org/jboss/da/communication/rt/ArtifactoryConnector.java +++ b/communication/src/main/java/org/jboss/da/communication/rt/ArtifactoryConnector.java @@ -157,7 +157,7 @@ private String repositoryPath(RepositoryType type, String path) { query.append(switch (type) { case MAVEN -> "maven-metadata.xml"; case NPM -> "package.json"; - case COCOA_POD, GENERIC_PROXY, DISTRIBUTION_ARCHIVE -> + case COCOA_POD, GENERIC_PROXY, DISTRIBUTION_ARCHIVE, RPM -> throw new UnsupportedOperationException("Not supported."); }); return query.toString();