Updated Orchestrator plugins to v1.6 - #182
Merged
openshift-merge-bot[bot] merged 1 commit intoJul 2, 2025
Merged
Conversation
Reviewer's GuideThis PR updates the Backstage Helm chart by upgrading all orchestrator-related plugins to the new v1.6.0 release, introduces the orchestratorFormWidgets plugin with its configuration, adjusts plugin enablement and module references in the template, and bumps the chart version to 4.2.14. Class diagram for orchestrator plugin configuration changesclassDiagram
class OrchestratorPluginsConfig {
+string scope
+OrchestratorPlugin orchestrator
+OrchestratorBackendPlugin orchestratorBackend
+ScaffolderBackendOrchestratorPlugin scaffolderBackendOrchestrator
+OrchestratorFormWidgetsPlugin orchestratorFormWidgets
}
class OrchestratorPlugin {
+string package = "backstage-plugin-orchestrator@1.6.0"
+string integrity
}
class OrchestratorBackendPlugin {
+string package = "backstage-plugin-orchestrator-backend-dynamic@1.6.0"
+string integrity
}
class ScaffolderBackendOrchestratorPlugin {
+string package = "backstage-plugin-scaffolder-backend-module-orchestrator-dynamic@1.6.0"
+string integrity
}
class OrchestratorFormWidgetsPlugin {
+string package = "backstage-plugin-orchestrator-form-widgets@1.6.0"
+string integrity
}
OrchestratorPluginsConfig --> OrchestratorPlugin : orchestrator
OrchestratorPluginsConfig --> OrchestratorBackendPlugin : orchestratorBackend
OrchestratorPluginsConfig --> ScaffolderBackendOrchestratorPlugin : scaffolderBackendOrchestrator
OrchestratorPluginsConfig --> OrchestratorFormWidgetsPlugin : orchestratorFormWidgets
Class diagram for Helm chart version updateclassDiagram
class BackstageChart {
+string version = "4.2.14"
}
Class diagram for new orchestratorFormWidgets plugin integrationclassDiagram
class OrchestratorFormWidgetsPlugin {
+string package = "backstage-plugin-orchestrator-form-widgets@1.6.0"
+string integrity
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Hey @elai-shalev - I've reviewed your changes and they look great!
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
rm3l
reviewed
Jul 2, 2025
elai-shalev
force-pushed
the
orchestrator-plugins-1.6
branch
from
July 2, 2025 11:21
d5f3d3c to
7db1c51
Compare
|
openshift-merge-bot
Bot
merged commit Jul 2, 2025
ca2064d
into
redhat-developer:main
8 checks passed
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This PR will update the Orchestrator plugin version to the newly released v1.6.
These plugins are currently compatible with the RHDH version. The v1.5.1 plugings (which this PR replaces) will slowly become less predictable.
Related to: https://issues.redhat.com/browse/FLPATH-2355
Checklist
Chart.yamlaccording to Semantic Versioning.values.yamland added to the corresponding README.md. The pre-commit utility can be used to generate the necessary content. Usepre-commit run -ato apply changes. The pre-commit Workflow will do this automatically for you if needed.pre-commithook.ct lintcommand.Summary by Sourcery
Update Orchestrator plugins to v1.6.0, enable relevant plugin entries, add the new orchestratorFormWidgets plugin, and bump the Helm chart version and documentation accordingly.
New Features:
Enhancements:
Build:
Documentation: