-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
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
[Bug] Template compiler crash on 3.28.2 #19797
Comments
This pins ember-source to 3.28.1 because of emberjs/ember.js#19797
This pins ember-source to 3.28.1 because of emberjs/ember.js#19797
For the record: I see this also happening for latest beta |
@rwjblue @ef4 I think we might have to reopen this issue. rust-lang/crates.io#4073 is still showing the same bug, even with v3.28.3. |
@Turbo87 ya, I messed up the backport 🤦 I've tested with local builds on 3.28.3 and 3.28.4 (before pushing the tag), once https://github.com/emberjs/ember.js/actions/runs/1373035405 is completed 3.28.4 will be published with the fix. |
at least renovate has a "rebase all PRs" option 😅
no worries, thanks for fixing so fast! ❤️ |
@rwjblue thank you! 🙏 |
🐞 Describe the Bug
The template compiler crashes with
This is fallout from glimmerjs/glimmer-vm#1351 and glimmerjs/glimmer-vm#1352
The problem is that Glimmer declares the
locals
argument to be of type:But babel-plugin-htmlbars-inline-precompile sends
null
.This wasn't noticed before because for any non-strict template the
locals
argument used to be ignored. But now it's respected, andnull
is not a valid value.🔬 Minimal Reproduction
Update a newly generated app to ember-source 3.28.2.
The text was updated successfully, but these errors were encountered: