-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Fix typo in manifest regex #6885
Conversation
|
The character class `[A-f0-9]` contains a typo: the manifest versions are upper-case hex strings. This fixes the following CodeQL warning: https://codeql.github.com/codeql-query-help/javascript/js-overly-large-range/
9a263a2
to
8bddcb7
Compare
How very odd. In my Remix 1.19.0 architect project, the filenames have uppercase manifest versions. What hosting target are you using? |
@pcattori, did we ever find a reason why in my testing the fingerprints were always uppercase but on yours they were lowercase or mixed case? I just have a lingering worry that there might be another bug there, or at least an inconsistency between different hosting targets. |
Could be an OS-related thing (case-sensitive vs case-insensitive filesystems?), but not sure. If it comes up, we can create a separate issue. |
🤖 Hello there, We just published version Thanks! |
🤖 Hello there, We just published version Thanks! |
@lpsinger I've tracked this down! Looks like Turns out that But something is messing up the HMR mechanism in Remix for the arc template and the grunge stack. Didn't find it before, since arc seems to be forcing a live reload of the app when files change. Not sure why that's happening since |
Wouldn't it be more consistent to have |
💯 agreed. I already have the change locally but haven't pushed it up as a PR since I've got a couple other fixes I was investigating. |
The character class
[A-f0-9]
contains a typo: the manifest versions are upper-case hex strings.This fixes the following CodeQL warning:
https://codeql.github.com/codeql-query-help/javascript/js-overly-large-range/