Brad Overton
Brad Overton
My application is running embroider with ember-data-factory-guy and it seems fine.. It's in compat mode with these settings ```js return require('@embroider/compat').compatBuild(app, Webpack, { // https://github.com/embroider-build/embroider#options staticAddonTestSupportTrees: true, staticAddonTrees: true, staticHelpers:...
Would it be possible to release the loosened ember-cli-babel version check as a v5 patch rather than as part of the v6 major? Or too much work to split it...
Are you able to lend aid @chriskrycho ? Based on the opening comment, it seems like all the necessary changes have been made, we just need to get releases happening
This issue was appearing for me for 2 reasons; 1. in tests, where I was using the intl service or helpers without having run `setupIntl(hooks, 'en')` 2. on my application...
Seems the specific tests that are failing are DRF tests that are checking the error payload - any test that has the line `reason.errors[0]` has an issue (`errors` is not...
> This seems to be fixed for me in [email protected]. However the FlashMessage component is still not detected/not exported from this addon's TS declarations. I've hit the same. `declarations` dir...
I'm on 5.1.0 - that's the dist folder, the declarations for components don't show up in the published output
Oops! You're totally correct. I initially checked on an outdated branch that was v5.0.0, and then when I went to verify again an hour ago the ember-cli-flash version, I was...
Can confirm, hit this issue too today. My use case is ```javascript alertConditions: DS.hasMany('alertCondition'), alertConditionsFiltered: filterBy('alertConditions',raw('isDeleted'),false), // Filter out any to-be-deleted ``` When I mark an alertCondition with `isDeleted` true,...
So I just noticed that above in my comment, I had a mistake, I should have been using `raw(false)` - not sure if this matters or not. Whether or not...