Skip to content

Commit b49a8e3

Browse files
committed
Merge pull request #77 from jmdobry/0.10.0
0.10.0
2 parents 96b90e2 + 7d45c29 commit b49a8e3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+8998
-7485
lines changed

.jshintrc

+37-32
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,39 @@
11
{
2-
"node": false,
3-
"browser": true,
4-
"es5": true,
5-
"esnext": true,
6-
"bitwise": true,
7-
"camelcase": true,
8-
"curly": true,
9-
"eqeqeq": true,
10-
"immed": true,
11-
"indent": 2,
12-
"latedef": true,
13-
"newcap": true,
14-
"noarg": true,
15-
"quotmark": "single",
16-
"regexp": true,
17-
"undef": true,
18-
"unused": true,
19-
"strict": true,
20-
"trailing": true,
21-
"smarttabs": true,
22-
"predef": [
23-
"inject",
24-
"describe",
25-
"it",
26-
"beforeEach",
27-
"afterEach",
28-
"assert",
29-
"require",
30-
"module",
31-
"exports",
32-
"angular"
33-
]
2+
"node": false,
3+
"browser": true,
4+
"es5": true,
5+
"esnext": true,
6+
"bitwise": true,
7+
"camelcase": true,
8+
"curly": true,
9+
"eqeqeq": true,
10+
"immed": true,
11+
"indent": 2,
12+
"latedef": true,
13+
"newcap": true,
14+
"noarg": true,
15+
"quotmark": "single",
16+
"regexp": true,
17+
"undef": true,
18+
"unused": true,
19+
"strict": false,
20+
"trailing": true,
21+
"smarttabs": true,
22+
"globals": {
23+
"inject": true,
24+
"describe": true,
25+
"it": true,
26+
"beforeEach": true,
27+
"afterEach": true,
28+
"assert": true,
29+
"startInjector": true,
30+
"DS": true,
31+
"fail": true,
32+
"$httpBackend": true,
33+
"console": true,
34+
"require": true,
35+
"module": true,
36+
"exports": true,
37+
"angular": true
38+
}
3439
}

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
##### 0.10.0 - 29 June 2014
2+
3+
###### Breaking API changes
4+
- #76 - Queries and filtering. See [TRANSITION.md](https://github.com/jmdobry/angular-data/blob/master/TRANSITION.md).
5+
- #82 - Simplify error handling. Reduced size of angular-data.min.js by 4kb.
6+
- #42 - Relations/Associations. `DS.inject` now looks for relations and injects them as well.
7+
8+
###### Backwards compatible API changes
9+
- #17 - Where predicates should be able to handle OR, not just AND
10+
- #23 - Computed Properties
11+
- #78 - Added optional callback to `bindOne` and `bindAll`
12+
- #79 - `ejectAll` should clear matching completed queries
13+
- #83 - Implement `DS.loadRelations(resourceName, instance(Id), relations[, options])`
14+
- #84 - idAttribute of a resource can be a computed property
15+
116
##### 0.9.1 - 30 May 2014
217

318
###### Backwards compatible bug fixes

0 commit comments

Comments
 (0)