Skip to content

Commit 4787f6c

Browse files
committed
Refactored to be a wrapper for js-data.
1 parent 17deb9a commit 4787f6c

File tree

133 files changed

+315
-22905
lines changed

Some content is hidden

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

133 files changed

+315
-22905
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ before_script:
99
- export DISPLAY=:99.0
1010
- sh -e /etc/init.d/xvfb start
1111
script:
12-
- grunt test
12+
- grunt build
1313
- grunt coveralls || true

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 2.0.0-alpha.1-0 - xx October 2014
2+
3+
###### Breaking API changes
4+
- Refactored to be a wrapper for [js-data](https://github.com/js-data/js-data)
5+
16
##### 1.0.0-rc.2-1 - 25 September 2014
27

38
###### Backwards compatible bug fixes
@@ -120,7 +125,7 @@
120125

121126
###### Backwards compatible bug fixes
122127
- #90 - DS.create isn't added to completedQueries (`DS.create` now adds a completed query entry)
123-
- #91 - dist/angular-data(.min).js doesn't end with a semicolon (upgraded Browserify)
128+
- #91 - dist/js-data-angular(.min).js doesn't end with a semicolon (upgraded Browserify)
124129
- #94 - Resource object name/class inconsistency (added `useClass` option to `DS.defineResource`)
125130
- #95 - observe-js outdated (Upgraded observe-js.js an refactored to new API)
126131
- #98 - Missing id warning
@@ -143,8 +148,8 @@ Official Release
143148
##### 0.10.0-beta.1 - 28 June 2014
144149

145150
###### Breaking API changes
146-
- #76 - Queries and filtering. See [TRANSITION.md](https://github.com/jmdobry/angular-data/blob/master/TRANSITION.md).
147-
- #82 - Simplify error handling. Reduced size of angular-data.min.js by 4kb.
151+
- #76 - Queries and filtering. See [TRANSITION.md](https://github.com/js-data/js-data-angular/blob/master/TRANSITION.md).
152+
- #82 - Simplify error handling. Reduced size of js-data-angular.min.js by 4kb.
148153
- #42 - Relations/Associations. `DS.inject` now looks for relations and injects them as well.
149154

150155
###### Backwards compatible API changes
@@ -253,7 +258,7 @@ Developers can provide their own more robust filters for more powerful queries.
253258
- #3 - Pluggable async adapters
254259

255260
###### Backwards API changes
256-
- #2 - angular-data query language
261+
- #2 - js-data-angular query language
257262
- #4 - Query caching
258263
- #17 - Where predicates should be able to handle OR, not just AND
259264
- #22 - Reorganize infrastructure to utilize angular's DI
@@ -266,7 +271,7 @@ Developers can provide their own more robust filters for more powerful queries.
266271
- #7 - Model lifecycle hooks
267272

268273
###### Backwards compatible bug fixes
269-
- #19 - Null pointer exception in several places where angular-data tries to use the $q service
274+
- #19 - Null pointer exception in several places where js-data-angular tries to use the $q service
270275

271276
##### Other
272277
- #15 - Integration test coverage

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Contributing Guide
22

3-
First, feel free to contact me with questions. [Mailing List](https://groups.google.com/forum/?fromgroups#!forum/angular-data). [Issues](https://github.com/jmdobry/angular-data/issues).
3+
First, feel free to contact me with questions. [Mailing List](https://groups.google.com/forum/?fromgroups#!forum/js-data-angular). [Issues](https://github.com/js-data/js-data-angular/issues).
44

55
1. Contribute to the issue that is the reason you'll be developing in the first place
6-
1. Fork angular-data
7-
1. `git clone https://github.com/<you>/angular-data.git`
8-
1. `cd angular-data; npm install; bower install;`
6+
1. Fork js-data-angular
7+
1. `git clone https://github.com/<you>/js-data-angular.git`
8+
1. `cd js-data-angular; npm install; bower install;`
99
1. `grunt go` (builds and starts a watch)
1010
1. (in another terminal) `grunt karma:dev` (runs the tests)
1111
1. Write your code, including relevant documentation and tests

0 commit comments

Comments
 (0)