From becde631d5e41a86389af8c14b3200c188642c9d Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Mon, 11 Jan 2016 17:22:16 +0100 Subject: [PATCH] [deprecations] Use ember-data-filter plugin At some point we may try to refactor places where we use store.filter(), but at the moment it would result with an overly complicated code, so I'd prefer to use a plugin. --- config/deprecation-workflow.js | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/deprecation-workflow.js b/config/deprecation-workflow.js index e2bc0454..54202abc 100644 --- a/config/deprecation-workflow.js +++ b/config/deprecation-workflow.js @@ -20,9 +20,9 @@ window.deprecationWorkflow.config = { { handler: "log", matchMessage: "Ember.addBeforeObserver is deprecated and will be removed in the near future." }, { handler: "log", matchMessage: "Ember.removeBeforeObserver is deprecated and will be removed in the near future." }, { handler: "log", matchMessage: "Using DS.Snapshot.get() is deprecated. Use .attr(), .belongsTo() or .hasMany() instead." }, + { handler: "log", matchMessage: "The filter API will be moved into a plugin soon. To enable store.filter using an environment flag, or to use an alternative, you can visit the ember-data-filter addon page" }, // TODO { handler: "silence", matchMessage: "Ember.View is deprecated. Consult the Deprecations Guide for a migration strategy." }, - { handler: "silence", matchMessage: "The filter API will be moved into a plugin soon. To enable store.filter using an environment flag, or to use an alternative, you can visit the ember-data-filter addon page" }, ] }; diff --git a/package.json b/package.json index ad4ffb6f..b3933424 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "ember-cli-sauce": "^1.1.0", "ember-cli-uglify": "1.2.0", "ember-data": "1.13.15", + "ember-data-filter": "1.13.0", "ember-disable-proxy-controllers": "^1.0.1", "ember-export-application-global": "^1.0.4", "ember-try": "0.0.7"