Skip to content

Commit 53b2dee

Browse files
committed
Build.
1 parent 9983639 commit 53b2dee

8 files changed

+77
-22
lines changed

CHANGELOG.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1-
##### 2.0.0-beta.1 - 10 January 2014
1+
##### 2.0.0 - 03 February 2015
2+
3+
_Note:_ Please see the [js-data CHANGELOG](https://github.com/js-data/js-data/blob/master/CHANGELOG.md).
24

35
###### Breaking API changes
6+
- Angular module renamed from `angular-data.DS` to `js-data`
47
- Refactored to be a wrapper for [js-data](https://github.com/js-data/js-data)
58
- `deserialize` and `serialize` are now properties of `DSHttpAdapter.defaults`
6-
- All hooks (`validate`, `afterCreate`, `serialize`, etc.) now take the resource definition as the first argument instead of just the name of the resource
9+
- `deserialize` and `serialize` are now configuration options used solely by the http adapter
10+
- All hooks (`validate`, `afterCreate`, `serialize`, etc.) now take the actual resource definition as the first argument instead of just the name of the resource
11+
- `DSLocalStorageAdapter` is no longer bundled, but is each separate from js-data-angular.
12+
- The API for `bindOne` and `bindAll` has been changed to be more consistent with the rest of the API
13+
- `eagerInject` has not yet been implemented in `js-data`.
14+
15+
##### Backwards compatible API changes
16+
- GitHub project renamed to js-data-angular
17+
- GitHub project moved to the js-data organization
718

819
###### Other
920
- #199 - Re-implement bindOne & bindAll in js-data-angular (they're missing from js-data)

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 Jason Dobry
3+
Copyright (c) 2014-2015 Jason Dobry
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Js-data-angular is Angular-data 2.0, with [js-data](http://www.js-data.io) as th
2323
## Js-data-angular API Documentation
2424
- [js-data-angular](http://www.js-data.io/docs/js-data-angular)
2525
- [DS](http://www.js-data.io/docs/ds)
26-
- [Schemator](http://www.js-data.io/docs/js-data-schema)
26+
- [js-data-schema](http://www.js-data.io/docs/js-data-schema)
2727
- [DSHttpAdapter](http://www.js-data.io/docs/dshttpadapter)
2828
- [DSLocalStorageAdapter](http://www.js-data.io/docs/dslocalstorageadapter)
2929
- [DSLocalForageAdapter](http://www.js-data.io/docs/dslocalforageadapter)

TRANSITION.md

+50-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,49 @@
1+
### 1.x ---> 2.x - 03 February 2015
2+
3+
#### Breaking API changes
4+
5+
##### Module name change
6+
7+
###### Before
8+
`angular.module('myApp', ['angular-data.DS'])`
9+
10+
###### After
11+
`angular.module('myApp', ['js-data'])`
12+
13+
##### `bindOne` and `bindAll` syntax change
14+
15+
###### Before
16+
[bindOne](http://angular-data.pseudobry.com/documentation/api/angular-data/DS.sync%20methods_bindOne) and [bindAll](http://angular-data.pseudobry.com/documentation/api/angular-data/DS.sync%20methods_bindAll)
17+
18+
###### After
19+
[bindOne](http://www.js-data.io/docs/js-data-angular#dsbindone) and [bindAll](http://www.js-data.io/docs/js-data-angular#dsbindall)
20+
21+
#### Backwards compatible API changes
22+
23+
##### Repo re-assignment and name change
24+
25+
###### Before
26+
`https://github.com/jmdobry/angular-data.git`
27+
28+
###### After
29+
`https://github.com/js-data/js-data-angular.git`
30+
31+
##### New Bower package
32+
33+
###### Before
34+
`bower install --save angular-data`
35+
36+
###### After
37+
`bower install --save js-data-angular`
38+
39+
##### New NPM package
40+
41+
###### Before
42+
`npm install --save angular-data`
43+
44+
###### After
45+
`npm install --save js-data js-data-angular`
46+
147
### 0.9.x. ---> 0.10.x - 29 June 2014
248

349
#### Breaking API changes
@@ -64,17 +110,17 @@ DSProvider.defaults.filter = function (resourceName, where, attrs) {
64110
DSProvider.defaults.filter = function (collection, resourceName, params, options) {
65111
// examine params and
66112
// decide whether to exclude items, skip items, start from an offset, or sort the items
67-
68-
// see the [default implementation that ships with js-data-angular](https://github.com/js-data/js-data-angular/blob/master/src/datastore/index.js#L12)
113+
114+
// see the [default implementation that ships with js-data-angular](https://github.com/js-data/js-data-angular/blob/master/src/datastore/index.js#L12)
69115
// overriding this method is useful when our server only understands a certain
70116
// params format and you want js-data-angular's filter to behave the same as your server
71-
117+
72118
// js-data-angular looks for the following fields:
73119
// - where
74120
// - skip (or offset)
75121
// - limit
76122
// - orderBy (or sort)
77-
123+
78124
// return the filtered collection
79125
};
80126
```

bower.json

+3-6
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"type": "git",
88
"url": "https://github.com/js-data/js-data-angular.git"
99
},
10-
"main": "./dist/js-data-angular.min.js",
10+
"main": "./dist/js-data-angular.js",
1111
"ignore": [
1212
".idea/",
1313
".*",
@@ -28,10 +28,7 @@
2828
"angular-mocks-1.3.2": "angular-mocks#1.3.2"
2929
},
3030
"dependencies": {
31-
"js-data": "~1.0.x",
32-
"angular": "~1.x"
33-
},
34-
"resolutions": {
35-
"angular": "1.3.2"
31+
"js-data": ">=1.0.0",
32+
"angular": ">=1.0.3"
3633
}
3734
}

dist/js-data-angular.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @author Jason Dobry <jason.dobry@gmail.com>
33
* @file js-data-angular.js
4-
* @version 2.0.0-alpha.3-5 - Homepage <http://www.js-data.io/js-data-angular/>
4+
* @version 2.0.0 - Homepage <http://www.js-data.io/js-data-angular/>
55
* @copyright (c) 2014 Jason Dobry <https://github.com/jmdobry/>
66
* @license MIT <https://github.com/js-data/js-data-angular/blob/master/LICENSE>
77
*

dist/js-data-angular.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)