Update FetchRelease to use API for getting single release by tag name#3321
Open
TheSench wants to merge 1 commit into
Open
Update FetchRelease to use API for getting single release by tag name#3321TheSench wants to merge 1 commit into
TheSench wants to merge 1 commit into
Conversation
GitHub's APIs now have an endpoint for getting a single release by tag. This is much more efficient than getting all releases and filtering client-side.
|
Join ok google
Pipaek
ในวันที่ อ. 25 ก.ค. 2023 17:31 น. Jon Senchyna ***@***.***>
เขียนว่า:
… GitHub's APIs now have an endpoint for getting a single release by tag.
This is much more efficient than getting all releases and filtering
client-side.
------------------------------
You can view, comment on, or merge this pull request online at:
#3321
Commit Summary
- 2560cf2
<2560cf2>
update API used by FetchRelease
File Changes
(2 files <https://github.com/mislav/hub/pull/3321/files>)
- *M* features/release.feature
<https://github.com/mislav/hub/pull/3321/files#diff-10e015dad607b6e86ef4524fe947fa173dbffb34257654ea3d89520437e396ef>
(319)
- *M* github/client.go
<https://github.com/mislav/hub/pull/3321/files#diff-d8d5175bba91f1771408ab34a7f024c93cf53ae83608a2b2bfc8757654ad40c9>
(22)
Patch Links:
- https://github.com/mislav/hub/pull/3321.patch
- https://github.com/mislav/hub/pull/3321.diff
—
Reply to this email directly, view it on GitHub
<#3321>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/A73AWL4C5TOI2JL2HB425D3XR6OBFANCNFSM6AAAAAA2W3NT7E>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub's APIs now have an endpoint for getting a single release by tag name. This is much more efficient than getting all releases (or one-or-more pages of 100 of them) and filtering client-side.
Fixes #2920