Skip to content

fix: Updating OSL version 1.37.2 - #328

Merged
openshift-merge-bot[bot] merged 3 commits into
redhat-developer:mainfrom
OpinionatedHeron:updateOSL
Mar 18, 2026
Merged

fix: Updating OSL version 1.37.2#328
openshift-merge-bot[bot] merged 3 commits into
redhat-developer:mainfrom
OpinionatedHeron:updateOSL

Conversation

@OpinionatedHeron

Copy link
Copy Markdown
Member

Description of the change

Updating OSL version 1.37.2

Which issue(s) does this PR fix or relate to

RHDHBUGS-2741

Checklist

  • For each Chart updated, version bumped in the corresponding Chart.yaml according to Semantic Versioning.
  • For each Chart updated, variables are documented in the values.yaml and added to the corresponding README.md. The pre-commit utility can be used to generate the necessary content. Run pre-commit run --all-files to run the hooks and then push any resulting changes. The pre-commit Workflow will enforce this and warn you if needed.
  • JSON Schema template updated and re-generated the raw schema via the pre-commit hook.
  • Tests pass using the Chart Testing tool and the ct lint command.
  • If you updated the orchestrator-infra chart, make sure the versions of the Knative CRDs are aligned with the versions of the CRDs installed by the OpenShift Serverless operators declared in the values.yaml file. See Installing Knative Eventing and Knative Serving CRDs for more details.

Signed-off-by: Leanne Ahern <lahern@redhat.com>
Signed-off-by: Leanne Ahern <lahern@redhat.com>
@rhdh-qodo-merge

Copy link
Copy Markdown

PR Reviewer Guide 🔍

Here are some key observations to aid the review process:

⏱️ Estimated effort to review: 2 🔵🔵⚪⚪⚪
🔒 No security concerns identified
⚡ Recommended focus areas for review

Doc Bug

The version badge appears inconsistent: the displayed label indicates the new chart version, but the shields.io URL still encodes the previous version, which will render the wrong badge. Update the badge URL to match the new chart version.

![Version: 0.5.3](https://img.shields.io/badge/Version-0.5.2-informational?style=flat-square)
![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
Compatibility

Validate that bumping serverlessLogicOperator.subscription.spec.startingCSV to logic-operator.v1.37.2 is aligned with the CRDs shipped by the chart and with the chosen subscription channel/source, to avoid install/upgrade failures if the CSV is not available in the configured catalog/channel.

# --  whether the update should be installed automatically
installPlanApproval: Manual
# -- name of the operator package
name: logic-operator
# --  name of the catalog source
source: redhat-operators
sourceNamespace: openshift-marketplace
# -- The initial version of the operator, must match CRDs installed by the chart
startingCSV: logic-operator.v1.37.2
📄 References
  1. redhat-developer/rhdh-chart/charts/backstage/values.schema.tmpl.json [268-334]
  2. redhat-developer/rhdh/translations/test/rhdh-ja.json [1-91]
  3. redhat-developer/rhdh/e2e-tests/package.json [1-70]
  4. redhat-developer/rhdh/backstage.json [1-3]
  5. redhat-developer/rhdh/dynamic-plugins/backstage.json [1-3]
  6. redhat-developer/rhdh/dynamic-plugins/wrappers/backstage-community-plugin-ocm/package.json [1-64]
  7. redhat-developer/rhdh/dynamic-plugins/wrappers/backstage-plugin-techdocs-module-addons-contrib/package.json [1-68]
  8. redhat-developer/rhdh/dynamic-plugins/wrappers/backstage-plugin-techdocs/package.json [1-72]

@rhdh-qodo-merge rhdh-qodo-merge Bot added the enhancement New feature or request label Mar 18, 2026
@rhdh-qodo-merge

Copy link
Copy Markdown

PR Type

Enhancement


Description

  • Update OSL (OpenShift Serverless Logic) operator version from 1.37.1 to 1.37.2

  • Bump orchestrator-infra chart version from 0.5.2 to 0.5.3

  • Update all related documentation and schema files with new version references


File Walkthrough

Relevant files
Configuration changes
Chart.yaml
Bump chart version to 0.5.3                                                           

charts/orchestrator-infra/Chart.yaml

  • Increment chart version from 0.5.2 to 0.5.3 following semantic
    versioning
+1/-1     
values.schema.json
Update JSON schema with OSL version                                           

charts/orchestrator-infra/values.schema.json

  • Update startingCSV default value from logic-operator.v1.37.1 to
    logic-operator.v1.37.2 in JSON schema
+1/-1     
values.schema.tmpl.json
Update schema template with OSL version                                   

charts/orchestrator-infra/values.schema.tmpl.json

  • Update startingCSV default value from logic-operator.v1.37.1 to
    logic-operator.v1.37.2 in template schema
+1/-1     
values.yaml
Update values with OSL version                                                     

charts/orchestrator-infra/values.yaml

  • Update serverlessLogicOperator subscription startingCSV from
    logic-operator.v1.37.1 to logic-operator.v1.37.2
+1/-1     
Documentation
README.md
Update documentation with new versions                                     

charts/orchestrator-infra/README.md

  • Update version badge from 0.5.2 to 0.5.3
  • Update helm install command example to reference version 0.5.3
  • Update serverlessLogicOperator startingCSV from logic-operator.v1.37.1
    to logic-operator.v1.37.2
+3/-3     


🔍 To retrieve JIRA tickets as context to your PR description, please register your organization.

@rhdh-qodo-merge

rhdh-qodo-merge Bot commented Mar 18, 2026

Copy link
Copy Markdown

PR Code Suggestions ✨

Explore these optional code suggestions:

CategorySuggestion                                                                                                                                    Impact
General
Update badge URL to match version
Suggestion Impact:The README badge URL was updated to use Version-0.5.3 instead of Version-0.5.2, matching the displayed chart version.

code diff:

-![Version: 0.5.3](https://img.shields.io/badge/Version-0.5.2-informational?style=flat-square)
+![Version: 0.5.3](https://img.shields.io/badge/Version-0.5.3-informational?style=flat-square)

Update the version in the badge URL in README.md from 0.5.2 to 0.5.3 to match
the new chart version.

charts/orchestrator-infra/README.md [4]

-![Version: 0.5.3](https://img.shields.io/badge/Version-0.5.2-informational?style=flat-square)
+![Version: 0.5.3](https://img.shields.io/badge/Version-0.5.3-informational?style=flat-square)

[Suggestion processed]

Suggestion importance[1-10]: 5

__

Why: The suggestion correctly identifies and fixes an inconsistency in the README's version badge URL, ensuring the displayed badge reflects the correct chart version.

Low
  • Update

Comment thread charts/orchestrator-infra/README.md
Signed-off-by: Leanne Ahern <lahern@redhat.com>
@OpinionatedHeron
OpinionatedHeron requested a review from a team as a code owner March 18, 2026 16:00
@sonarqubecloud

Copy link
Copy Markdown

@openshift-ci openshift-ci Bot added the lgtm label Mar 18, 2026
@openshift-merge-bot
openshift-merge-bot Bot merged commit 44e1628 into redhat-developer:main Mar 18, 2026
6 checks passed
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 6, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 6, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 7, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 7, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 8, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 8, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 9, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 9, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 10, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 10, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 11, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to OpinionatedHeron/rhdh-chart that referenced this pull request May 11, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 12, 2026
…8a8122

38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 38a8122e6814d190d12b719f2a0c58815e508369
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 21, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 22, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 23, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 24, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 25, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to hopehadfield/rhdh-chart that referenced this pull request May 25, 2026
…82a9b7

a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a82a9b796b2269e187170d9b8ce2a00b948e9fa7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 27, 2026
…27fe5d

927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 927fe5dd5713cd1cacaafa39cc0ddac6e2701816
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 28, 2026
…27fe5d

927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 927fe5dd5713cd1cacaafa39cc0ddac6e2701816
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 29, 2026
…27fe5d

927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 927fe5dd5713cd1cacaafa39cc0ddac6e2701816
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 30, 2026
…27fe5d

927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 927fe5dd5713cd1cacaafa39cc0ddac6e2701816
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request May 31, 2026
…e985e8

8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 8e985e8fc8b5388f4b5a86ee00dfa8305bfb3329
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 1, 2026
…e985e8

8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: 8e985e8fc8b5388f4b5a86ee00dfa8305bfb3329
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 3, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 4, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 5, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 6, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 7, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 8, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 9, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 10, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 11, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 12, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 13, 2026
…33ab0e

a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: a33ab0ee92e0bbc4f451780e37c5c351b8e4b7d7
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 14, 2026
…0b5583

e0b5583 chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (redhat-developer#336)
a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: e0b55836a332f5332351e62adae53bbab9021723
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 15, 2026
…0b5583

e0b5583 chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (redhat-developer#336)
a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: e0b55836a332f5332351e62adae53bbab9021723
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 16, 2026
…0b5583

e0b5583 chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (redhat-developer#336)
a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: e0b55836a332f5332351e62adae53bbab9021723
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 17, 2026
…0b5583

e0b5583 chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (redhat-developer#336)
a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: e0b55836a332f5332351e62adae53bbab9021723
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 19, 2026
…1d84e7

d1d84e7 test: add helm-unittest coverage for configmap and servicemonitor (redhat-developer#337)
e0b5583 chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (redhat-developer#336)
a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: d1d84e78abf6c57a3230c742419d338c76ac1679
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 20, 2026
…1d84e7

d1d84e7 test: add helm-unittest coverage for configmap and servicemonitor (redhat-developer#337)
e0b5583 chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (redhat-developer#336)
a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: d1d84e78abf6c57a3230c742419d338c76ac1679
github-actions Bot added a commit to gabemontero/rhdh-chart that referenced this pull request Jun 21, 2026
…1d84e7

d1d84e7 test: add helm-unittest coverage for configmap and servicemonitor (redhat-developer#337)
e0b5583 chore(deps): bump actions/checkout from 6.0.2 to 6.0.3 (redhat-developer#336)
a33ab0e Fix loadBalancerSourceRanges rendering in service template (redhat-developer#333)
8e985e8 chore(deps): bump actions/stale from 10.2.0 to 10.3.0 (redhat-developer#331)
60103f6 chore(deps): bump docker/login-action from 4.1.0 to 4.2.0 (redhat-developer#332)
927fe5d feat: integrate gateway api endpoint for chart deployment (redhat-developer#329)
a82a9b7 chore(deps): bump sigstore/cosign-installer from 4.1.0 to 4.1.2 (redhat-developer#330)
38a8122 feat: allow configuring the Deployment update strategy (redhat-developer#328)
2853164 chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (redhat-developer#327)
b45464c chore(deps): bump docker/login-action from 4.0.0 to 4.1.0 (redhat-developer#325)
70f78a5 chore(deps): bump oras-project/setup-oras from 1.2.4 to 2.0.0 (redhat-developer#324)

git-subtree-dir: charts/backstage/vendor/backstage
git-subtree-split: d1d84e78abf6c57a3230c742419d338c76ac1679
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants