potiuk opened a new pull request, #67921: URL: https://github.com/apache/airflow/pull/67921
The `prepare-providers-documentation` agentic skill's Phase 2 / Incremental Phase 2 git query for the last release tag had two defects discovered during the 2026-06-02 release prep: - **Dotted provider ids use hyphens in tag names** (`providers-cncf-kubernetes/<ver>`), but the skill built the tag pattern from the slash-converted folder path (`providers-cncf/kubernetes/*`) → matched no tags → empty commit lists for ~10 dotted providers. - **Sentinel + rc tags polluted "latest tag" selection**: a bare `--sort=-v:refname | head -n1` picks the `99.98.0`/`99.99.0` sentinel upper-bound tags and rc tags (git sorts `1.2.0rc1` after `1.2.0`) — e.g. yielding a bogus ~600-commit "amazon" range. Fixes both queries to derive the tag segment with `tr '.' '-'`, exclude `99.9x` sentinels and `rcN`, and adds a warning that breeze's Phase 1 discovery output is the authoritative commit set (the tag-based range can still diverge when a provider's latest final tag is not the last published release). --- ##### Was generative AI tooling used to co-author this PR? - [X] Yes — Claude Code (Opus 4.8) Generated-by: Claude Code (Opus 4.8) following [the guidelines](https://github.com/apache/airflow/blob/main/contributing-docs/05_pull_requests.rst#gen-ai-assisted-contributions) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
