Bump default wrangler version to 3.91.0#363
Open
Xbai-hang wants to merge 1 commit intocloudflare:mainfrom
Open
Bump default wrangler version to 3.91.0#363Xbai-hang wants to merge 1 commit intocloudflare:mainfrom
Xbai-hang wants to merge 1 commit intocloudflare:mainfrom
Conversation
feat: add support for wrangler.jsonc by upgrading to wrangler v3.91.0+ Starting from wrangler 3.91.0, both wrangler.jsonc and wrangler.json configuration files are supported. This commit upgrades wrangler to adapt the new configuration format.
Author
saviour123
approved these changes
Jun 5, 2025
saviour123
left a comment
There was a problem hiding this comment.
Have you verified this version change? Also, is this backward compatible, would it not break and any new system?
Author
The Wrangler version change is based on reference to Cloudflare documentation and has been validated. GitHub Actions uses Wrangler v3.90.0 by default. According to the official documentation: |
|
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.

Add support for
wrangler.jsoncby upgrading to wrangler v3.91.0+Issue
When using the official GitHub Actions deployment script with a wrangler.jsonc file, the build fails unexpectedly. Error as follows:
Reproduction steps:
Project structure:
Deploy
Run the GitHub Actions workflow from the Cloudflare documentation:
Result
Build fails due to unrecognized wrangler.jsonc support in older Wrangler versions.
Solution
Upgrade Wrangler to v3.91.0+ to resolve compatibility with wrangler.jsonc. This aligns with the community-reported issue #203 and ensures the action works as expected with modern configuration files.
Impact