-
Notifications
You must be signed in to change notification settings - Fork 200
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
Fixes Hub version to latest
in Makefile
#788
Conversation
/hold this This patch will get chronologically latest version of hub, not the semver latest. ie
on day after tomorrow this patch will return hence i had to use |
for example $ curl -sL https://api.github.com/repos/tektoncd/pipeline/releases | jq -r ".[].tag_name" 255 ↵
v0.35.1
v0.35.0
v0.34.1
v0.34.0
v0.32.4
v0.32.3
v0.31.4
v0.31.3
v0.30.4
v0.30.3
v0.33.4
v0.33.3
v0.33.2
v0.33.1
v0.33.0
v0.32.2
v0.31.2
v0.30.2
v0.32.1
v0.31.1
v0.30.1
v0.29.1 see 🧑💻 👉 this situation could be solved using the bash eg: curl -sL https://api.github.com/repos/tektoncd/pipeline/releases | jq ".[].tag_name" | sort -Vr
"v0.35.1"
"v0.35.0"
"v0.34.1"
"v0.34.0"
"v0.33.4"
"v0.33.3"
"v0.33.2"
"v0.33.1"
"v0.33.0"
"v0.32.4"
"v0.32.3"
"v0.32.2"
"v0.32.1"
"v0.32.0"
"v0.31.4"
"v0.31.3"
"v0.31.2"
"v0.31.1"
"v0.31.0"
"v0.30.4"
"v0.30.3"
"v0.30.2"
"v0.30.1"
"v0.30.0"
"v0.29.1"
@PuneetPunamiya could you drop the |
a71f60e
to
6cf7995
Compare
6cf7995
to
d384af3
Compare
@nikhil-thomas I have updated the patch could you please take a final look at it once ? |
/approve |
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.
/lgtm
Initially, Hub version was hard coded in makefile to fetch the specific version and after each release to get the latest version we had to update the version in the Makefile Hence this patch fixes the version to latest where in the script it fetches the latest Hub version Signed-off-by: Puneet Punamiya <[email protected]>
d384af3
to
965f7c4
Compare
/lgtm |
/hold cancel |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: nikhil-thomas, sm43, vdemeester The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Initially, Hub version was hard coded in makefile to fetch
the specific version and after each release to get the latest
version we had to update the version in the Makefile
Hence this patch fixes the version to latest where in the script
it fetches the latest Hub version
Signed-off-by: Puneet Punamiya [email protected]
Changes
Submitter Checklist
These are the criteria that every PR should meet, please check them off as you
review them:
See the contribution guide for more details.
Release Notes