Skip to content

Add support for pinning tool versions to minor releases#1421

Merged
istio-testing merged 3 commits intoistio-ecosystem:mainfrom
FilipB:pin-minor-tool-versions
Dec 10, 2025
Merged

Add support for pinning tool versions to minor releases#1421
istio-testing merged 3 commits intoistio-ecosystem:mainfrom
FilipB:pin-minor-tool-versions

Conversation

@FilipB
Copy link
Copy Markdown
Collaborator

@FilipB FilipB commented Dec 4, 2025

  • Add PIN_MINOR flag to only update patch versions while keeping major.minor the same
  • Add TOOLS_ONLY flag to skip Istio updates and only update tools
  • Remove kube-rbac-proxy update as it's no longer needed

🤖 Generated with Claude Code

Related Issue/PR #1372

- Add PIN_MINOR flag to only update patch versions while keeping major.minor the same
- Add TOOLS_ONLY flag to skip Istio updates and only update tools
- Remove kube-rbac-proxy update as it's no longer needed

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: Filip Brychta <fbrychta@redhat.com>
@FilipB FilipB requested a review from a team as a code owner December 4, 2025 15:47
@codecov
Copy link
Copy Markdown

codecov bot commented Dec 4, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 81.03%. Comparing base (e3c9527) to head (2677f31).
⚠️ Report is 7 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #1421      +/-   ##
==========================================
+ Coverage   80.64%   81.03%   +0.39%     
==========================================
  Files          44       44              
  Lines        2299     2299              
==========================================
+ Hits         1854     1863       +9     
+ Misses        327      321       -6     
+ Partials      118      115       -3     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Signed-off-by: Filip Brychta <fbrychta@redhat.com>
# When true, only update to the latest patch version (keeps major.minor version the same)
PIN_MINOR=${PIN_MINOR:-false}
# When true, skip Istio module updates (istio.io/istio and istio.io/client-go), do not add new Istio versions and only update tools
TOOLS_ONLY=${TOOLS_ONLY:-false}
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why would we need this?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In case we want to add new versions of Istio to release branches still manually. If we add new Istio versions automatically, it will be automatically propagated to our fork where we are still adding new Istio versions manually. There would be temporarily a mismatch between istio version defined in the go.mod and Istio version defined in the versions.ossm.yaml. Maybe we can update our upstream release checklist to always resolve this mismatch in the fork. On the other hand I'm not sure if there is a real advantage of adding new Istio versions to release branches automatically. The release is still manual and having one extra step (PIN_MINOR=true ./tools/update_deps.sh) is not a problem for me personally. Only advantage would be that the Istio version is added earlier. Current approach is adding it only during manual release preps.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay, so we still need to run TOOLS_ONLY=false make update-deps before creating a new patch release?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, we need to choose between:

  • adding new istio versions by automator and facing the problem with mismatch in the fork I described above
  • update only tools by automator and run TOOLS_ONLY=false make update-deps manually before creating a new patch release


# Get all releases and filter by major.minor, then get the latest
local latest=""
latest=$(curl -sL "https://api.github.com/repos/${repo}/releases?per_page=100" | \
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why not use getLatestMinorVersion? it matches the latest version against a given prefix

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess I can still adapt that function but I would have to rename it and fix the regex so it's not matching release candidates with e.g. -rc.1 suffix. I will do that if you think it's better

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

Signed-off-by: Filip Brychta <fbrychta@redhat.com>
function getLatestMinorVersion() {
curl -sL "https://api.github.com/repos/${1}/releases" | yq -p json "[.[] | select(.tag_name | test(\"^$2\\.\")) | .tag_name] | .[0]"
# $2 = version prefix
function getLatestVersionByPrefix() {
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thank you for improving this func 🙏

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now let's hope none of our deps ever reaches >100 releases on GitHub 😆

@istio-testing istio-testing merged commit 43234a9 into istio-ecosystem:main Dec 10, 2025
17 of 18 checks passed
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/main:
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
FilipB added a commit to FilipB/sail-operator that referenced this pull request Dec 10, 2025
…tem#1421)

* Add support for pinning tool versions to minor releases

- Add PIN_MINOR flag to only update patch versions while keeping major.minor the same
- Add TOOLS_ONLY flag to skip Istio updates and only update tools
- Remove kube-rbac-proxy update as it's no longer needed

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: Filip Brychta <fbrychta@redhat.com>

* Make the linter happy

Signed-off-by: Filip Brychta <fbrychta@redhat.com>

* Fix regex for getLatestMinorVersion and rename it to make better sense

Signed-off-by: Filip Brychta <fbrychta@redhat.com>

---------

Signed-off-by: Filip Brychta <fbrychta@redhat.com>
Co-authored-by: Claude <noreply@anthropic.com>
Signed-off-by: Filip Brychta <fbrychta@redhat.com>
FilipB added a commit to FilipB/sail-operator that referenced this pull request Dec 10, 2025
…tem#1421)

* Add support for pinning tool versions to minor releases

- Add PIN_MINOR flag to only update patch versions while keeping major.minor the same
- Add TOOLS_ONLY flag to skip Istio updates and only update tools
- Remove kube-rbac-proxy update as it's no longer needed

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: Filip Brychta <fbrychta@redhat.com>

* Make the linter happy

Signed-off-by: Filip Brychta <fbrychta@redhat.com>

* Fix regex for getLatestMinorVersion and rename it to make better sense

Signed-off-by: Filip Brychta <fbrychta@redhat.com>

---------

Signed-off-by: Filip Brychta <fbrychta@redhat.com>
Co-authored-by: Claude <noreply@anthropic.com>
Signed-off-by: Filip Brychta <fbrychta@redhat.com>
FilipB added a commit to FilipB/sail-operator that referenced this pull request Dec 10, 2025
…tem#1421)

* Add support for pinning tool versions to minor releases

- Add PIN_MINOR flag to only update patch versions while keeping major.minor the same
- Add TOOLS_ONLY flag to skip Istio updates and only update tools
- Remove kube-rbac-proxy update as it's no longer needed

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Signed-off-by: Filip Brychta <fbrychta@redhat.com>

* Make the linter happy

Signed-off-by: Filip Brychta <fbrychta@redhat.com>

* Fix regex for getLatestMinorVersion and rename it to make better sense

Signed-off-by: Filip Brychta <fbrychta@redhat.com>

---------

Signed-off-by: Filip Brychta <fbrychta@redhat.com>
Co-authored-by: Claude <noreply@anthropic.com>
Signed-off-by: Filip Brychta <fbrychta@redhat.com>
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/main:
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
istio-testing pushed a commit that referenced this pull request Dec 10, 2025
* Add support for pinning tool versions to minor releases

- Add PIN_MINOR flag to only update patch versions while keeping major.minor the same
- Add TOOLS_ONLY flag to skip Istio updates and only update tools
- Remove kube-rbac-proxy update as it's no longer needed

🤖 Generated with [Claude Code](https://claude.com/claude-code)




* Make the linter happy



* Fix regex for getLatestMinorVersion and rename it to make better sense



---------

Signed-off-by: Filip Brychta <fbrychta@redhat.com>
Co-authored-by: Claude <noreply@anthropic.com>
istio-testing pushed a commit that referenced this pull request Dec 10, 2025
* Add support for pinning tool versions to minor releases

- Add PIN_MINOR flag to only update patch versions while keeping major.minor the same
- Add TOOLS_ONLY flag to skip Istio updates and only update tools
- Remove kube-rbac-proxy update as it's no longer needed

🤖 Generated with [Claude Code](https://claude.com/claude-code)




* Make the linter happy



* Fix regex for getLatestMinorVersion and rename it to make better sense



---------

Signed-off-by: Filip Brychta <fbrychta@redhat.com>
Co-authored-by: Claude <noreply@anthropic.com>
istio-testing pushed a commit that referenced this pull request Dec 10, 2025
* Add support for pinning tool versions to minor releases

- Add PIN_MINOR flag to only update patch versions while keeping major.minor the same
- Add TOOLS_ONLY flag to skip Istio updates and only update tools
- Remove kube-rbac-proxy update as it's no longer needed

🤖 Generated with [Claude Code](https://claude.com/claude-code)




* Make the linter happy



* Fix regex for getLatestMinorVersion and rename it to make better sense



---------

Signed-off-by: Filip Brychta <fbrychta@redhat.com>
Co-authored-by: Claude <noreply@anthropic.com>
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/main:
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/release-1.26:
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1431)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/release-1.27:
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1429)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/main:
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/release-1.27:
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1429)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/release-1.26:
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1431)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/release-1.27:
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1429)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 10, 2025
* upstream/main:
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/release-1.27:
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1429)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 11, 2025
* upstream/main:
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 12, 2025
* upstream/main:
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 15, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 16, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main:
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1413)
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (21 commits)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1422)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 17, 2025
* upstream/main: (22 commits)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (22 commits)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  ...
openshift-service-mesh-bot pushed a commit to openshift-service-mesh-bot/sail-operator that referenced this pull request Dec 18, 2025
* upstream/main: (22 commits)
  set preserve-unknown-fields on gatewayClasses (istio-ecosystem#1465)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1462)
  Add Operator image build trigger on "versions.yaml" change (istio-ecosystem#1461)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1460)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1457)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1453)
  Bump operator version to 1.29.0 (istio-ecosystem#1451)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1452)
  Fix sail operator api-reference links (istio-ecosystem#1448)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1443)
  tests: add junit reports for unit/integration/docs tests (istio-ecosystem#1439)
  Fix ztunnel version enumeration in update-version-list script (istio-ecosystem#1416)
  Update release process doc to reference up to date checklists (istio-ecosystem#1437)
  Running automator to update deps also for release branches (istio-ecosystem#1424)
  docs-test: improve logging (istio-ecosystem#1433)
  Add support for pinning tool versions to minor releases (istio-ecosystem#1421)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1428)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1427)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1426)
  Automator: Update dependencies in istio-ecosystem/sail-operator@main (istio-ecosystem#1425)
  ...
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.

3 participants