angular-data
Advanced tools
Comparing version 1.0.0 to 1.0.1
@@ -0,1 +1,6 @@ | ||
##### 1.0.1 - 10 October 2014 | ||
###### Backwards compatible bug fixes | ||
- #204 - pending query isn't deleted properly in DS.find | ||
##### 1.0.0 - 04 October 2014 | ||
@@ -2,0 +7,0 @@ |
{ | ||
"name": "angular-data", | ||
"description": "Data store for Angular.js.", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"homepage": "http://angular-data.pseudobry.com", | ||
@@ -6,0 +6,0 @@ "repository": { |
@@ -11,5 +11,5 @@ ## angular-data [![Stories in Backlog](https://badge.waffle.io/jmdobry/angular-data.svg?label=backlog&title=Backlog)](http://waffle.io/jmdobry/angular-data) [![Stories in Ready](https://badge.waffle.io/jmdobry/angular-data.svg?label=ready&title=Ready)](http://waffle.io/jmdobry/angular-data) [![Stories in progress](https://badge.waffle.io/jmdobry/angular-data.svg?label=in%20progress&title=In%20Progress)](http://waffle.io/jmdobry/angular-data) | ||
__Latest Release:__ [1.0.0](https://github.com/jmdobry/angular-data/releases/tag/1.0.0) | ||
__Latest Release:__ [1.0.1](https://github.com/jmdobry/angular-data/releases/tag/1.0.1) | ||
Angular-data is finally 1.0.0! | ||
Angular-data is finally 1.0.! | ||
@@ -16,0 +16,0 @@ Angular-data 1.x will continue to see bug fixes, but all new development will be on [js-data](https://github.com/js-data/js-data) and [js-data-angular](https://github.com/jmdobry/angular-data/pull/198) (Angular-data 2.0). |
@@ -82,5 +82,5 @@ function errorPrefix(resourceName, id) { | ||
var data = options.deserialize ? options.deserialize(resourceName, res) : definition.deserialize(resourceName, res); | ||
// Query is no longer pending | ||
delete resource.pendingQueries[id]; | ||
if (options.cacheResponse) { | ||
// Query is no longer pending | ||
delete resource.pendingQueries[id]; | ||
resource.completedQueries[id] = new Date().getTime(); | ||
@@ -87,0 +87,0 @@ return DS.inject(resourceName, data, options); |
@@ -9,3 +9,3 @@ (function (window, angular, undefined) { | ||
* @description | ||
* __Version:__ 1.0.0 | ||
* __Version:__ 1.0.1 | ||
* | ||
@@ -12,0 +12,0 @@ * ## Install |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
561432