From bba608f2ed1c5b02ced99690b44b6c1adce2ddb4 Mon Sep 17 00:00:00 2001 From: Kim Tsao Date: Thu, 30 Apr 2026 16:53:51 -0400 Subject: [PATCH 1/2] release-1.9: update script to include wrapped 3rd party plugins Signed-off-by: Kim Tsao --- .../rhdh-supported-plugins.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/extend_dynamic-plugins-reference/rhdh-supported-plugins.sh b/modules/extend_dynamic-plugins-reference/rhdh-supported-plugins.sh index 0082188b80c..0910122f34d 100755 --- a/modules/extend_dynamic-plugins-reference/rhdh-supported-plugins.sh +++ b/modules/extend_dynamic-plugins-reference/rhdh-supported-plugins.sh @@ -293,8 +293,10 @@ generate_dynamic_plugins_table() { support=$(yq -r '.spec.support // "unknown"' "$y") # only RH authoried content should show up as GA - # exception for the Roadie http-request scaffolder, too - if [[ $author == "Red Hat"* ]] || [[ $Plugin == "@roadiehq/scaffolder-backend-module-http-request" ]]; then + # exception for the Roadie http-request scaffolder (GA) and the wrapped Roadie Argocd backend and scaffolder plugins (1.9 only) + if [[ $author == "Red Hat"* ]] || [[ $Plugin == "@roadiehq/scaffolder-backend-module-http-request" ]] + || [[ $Plugin == "@roadiehq/backstage-plugin-argo-cd-backend" ]] + || [[ $Plugin == "@roadiehq/scaffolder-backend-argocd" ]]; then if [[ $support == "production"* ]] || [[ $support == "generally-available"* ]]; then Support_Level="Production" elif [[ $support == "tech-preview"* ]]; then From 546004c8d814a1a7f5b2e2d9d756a58863a8756b Mon Sep 17 00:00:00 2001 From: Kim Tsao Date: Thu, 30 Apr 2026 17:02:57 -0400 Subject: [PATCH 2/2] fix formatting Signed-off-by: Kim Tsao --- .../rhdh-supported-plugins.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/modules/extend_dynamic-plugins-reference/rhdh-supported-plugins.sh b/modules/extend_dynamic-plugins-reference/rhdh-supported-plugins.sh index 0910122f34d..d9512eba78e 100755 --- a/modules/extend_dynamic-plugins-reference/rhdh-supported-plugins.sh +++ b/modules/extend_dynamic-plugins-reference/rhdh-supported-plugins.sh @@ -294,9 +294,7 @@ generate_dynamic_plugins_table() { # only RH authoried content should show up as GA # exception for the Roadie http-request scaffolder (GA) and the wrapped Roadie Argocd backend and scaffolder plugins (1.9 only) - if [[ $author == "Red Hat"* ]] || [[ $Plugin == "@roadiehq/scaffolder-backend-module-http-request" ]] - || [[ $Plugin == "@roadiehq/backstage-plugin-argo-cd-backend" ]] - || [[ $Plugin == "@roadiehq/scaffolder-backend-argocd" ]]; then + if [[ $author == "Red Hat"* ]] || [[ $Plugin == "@roadiehq/scaffolder-backend-module-http-request" ]]|| [[ $Plugin == "@roadiehq/backstage-plugin-argo-cd-backend" ]]|| [[ $Plugin == "@roadiehq/scaffolder-backend-argocd" ]]; then if [[ $support == "production"* ]] || [[ $support == "generally-available"* ]]; then Support_Level="Production" elif [[ $support == "tech-preview"* ]]; then