EDU-6970 New features and updates Azion CLI 4.21.0 - #2134
Merged
Conversation
PatrickMenoti
approved these changes
May 7, 2026
egermano
approved these changes
May 8, 2026
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.
Related issue: EDU-6970 New features and updates Azion CLI 4.21.0
New Features
Use S3 to upload static files during deploy command (this is making the deploy process MUCH MUCH faster):
Before: In a project with 180 static files, it took between 1m.35s and 1m.45s to upload the static files (using 5 workers)
Now: In the same project, it's taking between 3.5s and 8.5s. YES, seconds! In comparison, the same project takes 9s to 10s in Cloudflare.
Explanation:
We are now calculating the number of available CPU cores and allocating a variable number of workers based on that.
Add --workers flag to allow custom worker configuration
This allows the user to, instead of using the calculated number of workers, inform a number they want to use.
Create a file to store S3 credentials per profile
Add deploy report after remote deploy
Refactor
Improve workers logic (auto-detect CPU cores, max 20 workers)
Change stage bundler
Update bundler call (use aziontech namespace)
Update dependencies