Skip to content

Commit 43354da

Browse files
committed
Merge branch 'v1'
2 parents 83fa2f4 + 17d8df0 commit 43354da

File tree

18 files changed

+428
-97
lines changed

18 files changed

+428
-97
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
##### 1.3.0 - 07 November 2014
2+
3+
###### Backwards compatible API changes
4+
- #227 - Added DSDestroy and DSRefresh to instance methods
5+
- #228 - Added DS.getAll(resourceName[, ids])
6+
7+
###### Backwards compatible bug fixes
8+
- #207 - digest iterations error
9+
10+
##### 1.2.1 - 04 November 2014
11+
12+
###### Backwards compatible bug fixes
13+
- #225 - If the server returned an empty array for a get request (valid scenario), angular-data throws an exception
14+
115
##### 1.2.0 - 02 November 2014
216

317
###### Backwards compatible API changes

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ Unlike Backbone and Ember Models, angular-data does not require the use of gette
88

99
Supporting relations, computed properties, model lifecycle control and a slew of other features, angular-data is the tool for giving your data the respect it deserves.
1010

11-
__Latest Release:__ [1.2.0](https://github.com/jmdobry/angular-data/releases/tag/1.2.0)
11+
__Latest Release:__ [1.3.0](https://github.com/jmdobry/angular-data/releases/tag/1.3.0)
1212

13-
Angular-data is finally 1.0.!
13+
Angular-data is finally 1.0.!
1414

1515
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).
1616

@@ -55,14 +55,14 @@ app.controller('postCtrl', function ($scope, $routeParams, Post, Comment) {
5555
var query = {
5656
postId: $routeParams.id
5757
};
58-
58+
5959
Post.find($routeParams.id);
6060
Comment.findAll(query);
61-
61+
6262
// My goodness this was easy
6363
Post.bindOne($scope, 'post', $routeParams.id);
6464
Comment.bindAll($scope, 'comments', query);
65-
65+
6666
// Long form, functionally the same as above
6767
$scope.$watch(function () {
6868
return Post.lastModified($routeParams.id);

bower.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"author": "Jason Dobry",
33
"name": "angular-data",
44
"description": "Data store for Angular.js.",
5-
"version": "1.2.0",
5+
"version": "1.3.0",
66
"homepage": "http://angular-data.pseudobry.com/",
77
"repository": {
88
"type": "git",
9-
"url": "git://github.com/jmdobry/angular-data.git"
9+
"url": "https://github.com/jmdobry/angular-data.git"
1010
},
1111
"main": "./dist/angular-data.min.js",
1212
"ignore": [
@@ -31,7 +31,7 @@
3131
"devDependencies": {
3232
"angular": "1.2.25",
3333
"angular-mocks": "1.2.25",
34-
"angular-cache": "3.1.1",
34+
"angular-cache": "3.2.0",
3535
"observe-js": "0.3.4",
3636
"angular-data-mocks": "1.0.0",
3737
"bootstrap": "3.2.0"

0 commit comments

Comments
 (0)