-
Notifications
You must be signed in to change notification settings - Fork 0
fix(REGISTRY-001): CU-86akbhhc9 4 review findings in regsync-config.yaml #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -190,6 +190,8 @@ sync: | |
| target: ${TARGET_REGISTRY}/debezium/connect | ||
| type: repository | ||
| tags: | ||
| semverRange: | ||
| - ">=2.5.0" | ||
| allow: | ||
| - '2\.([5-9]|[0-9]{2,})\.[0-9]+\.Final' | ||
| - '[3-9]\.[0-9]+\.[0-9]+\.Final' | ||
|
|
@@ -207,13 +209,18 @@ sync: | |
| target: ${TARGET_REGISTRY}/apachepinot/pinot | ||
| type: repository | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 𦩠π Duplicate sync entries for quay.io/debezium/connect with overlapping/conflicting tag policies The duplicate π€ Prompt for AI agentsfix confidence: π΄ 40 low β review closely β react π/π to teach the reviewer |
||
| tagSets: | ||
| - allow: | ||
| # "latest" is a sanctioned exception here: pinned alongside a specific | ||
| # snapshot tag needed for compatibility testing; bounded by semverRange floor below. | ||
| - semverRange: | ||
| - ">=1.5.0" | ||
| allow: | ||
| - "latest" | ||
| - "1.5.0-SNAPSHOT-43142cdc37-20251204" | ||
| - semverRange: | ||
| - ">=0.1.0" | ||
| allow: | ||
| - '[0-9]+\.[0-9]+\.[0-9]+' | ||
| # "latest" allowed here as a sanctioned exception to always track the newest release. | ||
| - latest | ||
|
|
||
| # --------------------------------------------------------------------------- | ||
|
Comment on lines
209
to
226
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 𦩠π΄ apachepinot/pinot tagSet allows unbounded 'latest' without a semverRange floor In the apachepinot/pinot π€ Prompt for AI agentsfix confidence: π‘ 60 medium β react π/π to teach the reviewer
Comment on lines
209
to
226
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 𦩠π pinot tagSets allow 'latest' without an inline justification comment Added inline comments in the apachepinot/pinot π€ Prompt for AI agentsfix confidence: π΄ 55 low β review closely β react π/π to teach the reviewer |
||
|
|
@@ -835,3 +842,4 @@ sync: | |
| - ">=2.23.6" | ||
| allow: | ||
| - '[0-9]+\.[0-9]+\.[0-9]+' | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
𦩠π΄ First debezium/connect entry has no semverRange floor at all
In the first
quay.io/debezium/connectsync entry (Data Integration & Analytics section), addedsemverRange: [">=2.5.0"]above the existingallowregex list, giving it an explicit floor consistent with the lowest version matched by the regex (2.5.0.Final). This directly satisfies REGISTRY-001's requirement of a semverRange floor. Note: regsync's semver parsing may not recognize the.Finalsuffix as valid semver, in which case the floor may not effectively filter tags via regsync's version library β a full fix might require confirming regsync's semver parser handles this suffix or normalizing the tag format, which is outside a minimal single-file text change.π€ Prompt for AI agents
fix confidence: π‘ 65 medium β react π/π to teach the reviewer