funkensturm / ember-local-storage

The addon provides a storageFor computed property that returns a proxy and persists the changes to localStorage or sessionStorage. It ships with an ember-data adapter.
https://www.funkensturm.com/ember-local-storage/
MIT License
218 stars 76 forks source link

Remove array, object, and storage mixins and helpers/utils #374

Open fsmanuel opened 1 year ago

fsmanuel commented 1 year ago

If you used the following imports:

import ArrayMixin from 'ember-local-storage/mixins/array';
import ObjectMixin from 'ember-local-storage/mixins/object';

please open an issue so we can discuss how to solve the breaking change.

If you used the following imports:

import StorageMixin from 'ember-local-storage/mixins/storage'

you can change the import to

import StorageProxyMixin from 'ember-local-storage/-private/legacy-mixins/storage';

but this is not guaranteed to stay there in the future so also please open an issue so we can discuss how to solve the breaking change.

If you used the following imports:

import StorageMixin from 'ember-local-storage/helpers/utils'

you can change the import to

import StorageProxyMixin from 'ember-local-storage/-private/legacy-utils';

but this is not guaranteed to stay there in the future so also please open an issue so we can discuss how to solve the breaking change.