⚡ optimize(update): move redundant API calls outside of loops#120
Merged
keeganwitt merged 1 commit intoMar 3, 2026
Conversation
Hoisted the GitHub API calls (Invoke-RestMethod in PowerShell and curl in Bash) outside of the major version loops in update.ps1 and update.sh. This reduces the number of network requests from N (number of versions) to 1, improving script performance and reducing the likelihood of hitting API rate limits. In a simulated environment with a 1s network latency, this reduced the execution time from ~3s to ~1s (a 3x speedup for 3 major versions). Co-authored-by: keeganwitt <64612+keeganwitt@users.noreply.github.com>
keeganwitt
deleted the
performance-optimize-update-scripts-api-calls-6453573072420616741
branch
March 3, 2026 17:01
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.
Hoisted the GitHub API calls (Invoke-RestMethod in PowerShell and curl in Bash) outside of the major version loops in update.ps1 and update.sh.
This reduces the number of network requests from N (number of versions) to 1, improving script performance and reducing the likelihood of hitting API rate limits.
In a simulated environment with a 1s network latency, this reduced the execution time from ~3s to ~1s (a 3x speedup for 3 major versions).