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
I'm seeing these deprecation warnings while in an app on Ember 3.28 using ember-cli-notifications:
import { deprecate } from '@ember/application/deprecations';has been deprecated, please update toimport { deprecate } from '@ember/debug';` [deprecation id: old-deprecate-method-paths]
deprecate.js:117 DEPRECATION: When calling deprecate you must provide for in options. Missing options.for in "ember-on-modifier.prevent-default" deprecation [deprecation id: ember-source.deprecation-without-for]
deprecate.js:117 DEPRECATION: When calling deprecate you must provide since in options. Missing options.since in "ember-on-modifier.prevent-default" deprecation [deprecation id: ember-source.deprecation-without-since]
I'm seeing these deprecation warnings while in an app on Ember 3.28 using ember-cli-notifications:
import { deprecate } from '@ember/application/deprecations';
has been deprecated, please update to
import { deprecate } from '@ember/debug';` [deprecation id: old-deprecate-method-paths]deprecate.js:117 DEPRECATION: When calling
deprecate
you must providefor
in options. Missing options.for in "ember-on-modifier.prevent-default" deprecation [deprecation id: ember-source.deprecation-without-for]deprecate.js:117 DEPRECATION: When calling
deprecate
you must providesince
in options. Missing options.since in "ember-on-modifier.prevent-default" deprecation [deprecation id: ember-source.deprecation-without-since]DEPRECATION:
(prevent-default)
has been moved toember-event-helpers
. [deprecation id: ember-on-modifier.prevent-default] See https://github.com/buschtoens/ember-event-helpers for more details.npm ls ember-on-modifier
shows these warnings are linked to ember-cli-notifications:└─┬ [email protected]
└── [email protected]
If I remove ember-cli-notifications from the app, these warnings go away. If I update Ember to 4.0, these are breaking failures.
Thanks for your time, any fixes would be much appreciated
The text was updated successfully, but these errors were encountered: