You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But: I've upgraded ember-concurrency to newer version: 0.8.24 (mentioned in the issue) and 0.8.27 (the newest one) - none of them helped.
I don't use native classes, ember-native-class-polyfill nor ember-decorators.
I use on other hand typescript (2.9.2) and ember-typescript (1.5.0).
Ah, I figured out that some another addon had a dependency on ember-concurrency. And it was installed some time ago - so it was resolved to older version (record in yarn.lock was pinned to specific, old version). Whole time ember was taking this old version (despite I had newer version in my package.json).
yarn list ember-concurrency (or npm ls ember-concurrency) helped to figure this out.
Final fix: removing the record in yarn.lock responsible for resolving package (ember-concurrency) as dependency. In my case there was: ember-data-copyable, ember-power-calendar, ember-power-select. All of those packages had specified the dependency with ^, so yarn install took newer version of ember-concurrency (for all of these addons): 0.8.27.
For other people: check if yarn list [package] (or npm ls [package]) shows that you have only the new package. If not - then modifying yarn/npm.lock can help. If not: upgrade of addon (new dependency specified). If this also didn't help: fork of addon and manual update of dependecy.
Hi. I've encountered a problem when I've updated ember-source to the newest stable version (3.7.2).
error:
I've seen the issues:
But: I've upgraded ember-concurrency to newer version: 0.8.24 (mentioned in the issue) and 0.8.27 (the newest one) - none of them helped.
I don't use native classes, ember-native-class-polyfill nor ember-decorators.
I use on other hand typescript (2.9.2) and ember-typescript (1.5.0).
Usage in the code:
Error is thrown on task construction, first line:
_someTask: task(function* (this: SomeService) {
Environment details:
OS: Debian GNU/Linux 9.6
node version: 10.13.0
npm version: 6.4.1
yarn version: 1.13.0
ember-concurrency version: 0.8.24 and 0.8.27 (the newest one)
ember-source version: 3.8.0-beta.3, 3.7.2 (current stable version), 3.7.0., 3.6.1 (3.6.0 I couldn't test)
typescript: 2.8.3
ember-cli-typescript: 1.3.0
code which failed (showed in console):
exact line:
_utils._ComputedProperty.call(this, function (_propertyName) {
The text was updated successfully, but these errors were encountered: