Add support for pinning tool versions to minor releases#1421
Add support for pinning tool versions to minor releases#1421istio-testing merged 3 commits intoistio-ecosystem:mainfrom
Conversation
- 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>
Codecov Report✅ All modified and coverable lines are covered by tests. 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. 🚀 New features to boost your workflow:
|
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} |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
okay, so we still need to run TOOLS_ONLY=false make update-deps before creating a new patch release?
There was a problem hiding this comment.
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-depsmanually before creating a new patch release
tools/update_deps.sh
Outdated
|
|
||
| # 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" | \ |
There was a problem hiding this comment.
why not use getLatestMinorVersion? it matches the latest version against a given prefix
There was a problem hiding this comment.
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
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() { |
There was a problem hiding this comment.
thank you for improving this func 🙏
There was a problem hiding this comment.
now let's hope none of our deps ever reaches >100 releases on GitHub 😆
* 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)
…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>
…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>
…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>
* 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)
* 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>
* 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>
* 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>
* 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)
* upstream/release-1.26: Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1431)
* upstream/release-1.27: Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1429)
* 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)
* upstream/release-1.27: Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1429)
* upstream/release-1.26: Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1431)
* upstream/release-1.27: Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1429)
* 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)
* upstream/release-1.27: Add support for pinning tool versions to minor releases (istio-ecosystem#1421) (istio-ecosystem#1429)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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)
* 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) ...
* 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) ...
* 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) ...
* 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) ...
* 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) ...
* 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) ...
* 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) ...
* 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) ...
🤖 Generated with Claude Code
Related Issue/PR #1372