-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
metadata-service[lib]: validate that release candidate have rc suffix in their version #46573
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎ 1 Skipped Deployment
|
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @alafanechere and the rest of your teammates on Graphite |
Testing the change on |
a0fcc33
to
0296422
Compare
0296422
to
3d5bcfa
Compare
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.
Thanks @alafanechere, just one small request.
if not has_rc_suffix: | ||
return ( | ||
False, | ||
"The dockerImageTag field should end with -rc as the connector is marked as a release candidate (releases.isReleaseCandidate).", |
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.
"The dockerImageTag field should end with -rc as the connector is marked as a release candidate (releases.isReleaseCandidate).", | |
"The dockerImageTag field should have an -rc.<RC #> suffix as the connector is marked as a release candidate (releases.isReleaseCandidate). Example: 2.1.0-rc.1", |
Just wanted it to be clear that there should be an rc number at the end, too.
1d7193a
to
f0c71ef
Compare
… in their version
f0c71ef
to
1a998df
Compare
What
Relates to https://github.com/airbytehq/airbyte-internal-issues/issues/10211
Add a metadata validator to ensure that a connector with the
releases.isReleaseCandidate
flag set totrue
has arc
suffix in its version.