Skip to content

Commit ef8e42b

Browse files
committed
Stable Version 1.0.0-beta.3.
1 parent de5a20c commit ef8e42b

File tree

9 files changed

+19
-22
lines changed

9 files changed

+19
-22
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
##### 1.0.0-beta.3 - 30 August 2014
2+
3+
###### Backwards compatible bug fixes
4+
- Unfroze resource definitions
5+
16
##### 1.0.0-beta.2 - 27 August 2014
27

38
###### Breaking API changes

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ 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.0.0-beta.2](http://angular-data.pseudobry.com/)
12-
__master:__ [1.0.0-beta.2](http://angular-data-next.pseudobry.com/)
11+
__Latest Release:__ [1.0.0-beta.3](http://angular-data.pseudobry.com/)
12+
__master:__ [1.0.0-beta.3](http://angular-data-next.pseudobry.com/)
1313

1414
Angular-data is in a 1.0.0 Beta. The API is rather stable and angular-data is well tested.
1515

bower.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "Jason Dobry",
33
"name": "angular-data",
44
"description": "Data store for Angular.js.",
5-
"version": "1.0.0-beta.2",
5+
"version": "1.0.0-beta.3",
66
"homepage": "http://angular-data.pseudobry.com/",
77
"repository": {
88
"type": "git",
@@ -28,9 +28,9 @@
2828
"devDependencies": {
2929
"angular": "~1.2.22",
3030
"angular-mocks": "~1.2.22",
31-
"angular-cache": "~3.1.0",
31+
"angular-cache": "~3.1.1",
3232
"observe-js": "0.3.4",
33-
"angular-data-mocks": "~0.5.5",
33+
"angular-data-mocks": "~0.6.0",
3434
"bootstrap": "~3.2.0"
3535
}
3636
}

dist/angular-data.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* @author Jason Dobry <[email protected]>
33
* @file angular-data.js
4-
* @version 1.0.0-beta.2 - Homepage <http://angular-data.pseudobry.com/>
4+
* @version 1.0.0-beta.3 - Homepage <http://angular-data.pseudobry.com/>
55
* @copyright (c) 2014 Jason Dobry <https://github.com/jmdobry/>
66
* @license MIT <https://github.com/jmdobry/angular-data/blob/master/LICENSE>
77
*
@@ -4969,10 +4969,6 @@ function defineResource(definition) {
49694969
def.beforeDestroy = DS.$q.promisify(def.beforeDestroy);
49704970
def.afterDestroy = DS.$q.promisify(def.afterDestroy);
49714971

4972-
if (typeof Object.freeze === 'function') {
4973-
Object.freeze(def);
4974-
}
4975-
49764972
return def;
49774973
} catch (err) {
49784974
DS.$log.error(err);
@@ -6549,7 +6545,7 @@ module.exports = [function () {
65496545
* @id angular-data
65506546
* @name angular-data
65516547
* @description
6552-
* __Version:__ 1.0.0-beta.2
6548+
* __Version:__ 1.0.0-beta.3
65536549
*
65546550
* ## Install
65556551
*

dist/angular-data.min.js

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

guide/nav.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<i class="icon-wrench icon-white"></i> API <b class="caret"></b>
8383
</a>
8484
<ul class="dropdown-menu">
85-
<li class="nav-header">Angular-data - 1.0.0-beta.2</li>
85+
<li class="nav-header">Angular-data - 1.0.0-beta.3</li>
8686
<li>
8787
<a href="/documentation/api/angular-data/angular-data">Overview</a>
8888
</li>
@@ -96,7 +96,7 @@
9696
<a href="/documentation/api/angular-data/DSLocalStorageAdapter">DSLocalStorageAdapter</a>
9797
</li>
9898
<li class="divider"></li>
99-
<li class="nav-header">Angular-data-mocks - 0.5.5</li>
99+
<li class="nav-header">Angular-data-mocks - 0.6.0</li>
100100
<li>
101101
<a href="/documentation/api/angular-data-mocks/angular-data-mocks">Overview</a>
102102
</li>
@@ -107,7 +107,7 @@
107107
<a href="/documentation/api/angular-data-mocks/DSHttpAdapter">DSHttpAdapter</a>
108108
</li>
109109
<li class="divider"></li>
110-
<li class="nav-header">Angular-cache - 3.1.0</li>
110+
<li class="nav-header">Angular-cache - 3.1.1</li>
111111
<li>
112112
<a href="/documentation/api/angular-cache/angular-cache">Overview</a>
113113
</li>

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-data",
33
"description": "Data store for Angular.js.",
4-
"version": "1.0.0-beta.2",
4+
"version": "1.0.0-beta.3",
55
"homepage": "http://angular-data.pseudobry.com",
66
"repository": {
77
"type": "git",

src/datastore/sync_methods/defineResource.js

-4
Original file line numberDiff line numberDiff line change
@@ -304,10 +304,6 @@ function defineResource(definition) {
304304
def.beforeDestroy = DS.$q.promisify(def.beforeDestroy);
305305
def.afterDestroy = DS.$q.promisify(def.afterDestroy);
306306

307-
if (typeof Object.freeze === 'function') {
308-
Object.freeze(def);
309-
}
310-
311307
return def;
312308
} catch (err) {
313309
DS.$log.error(err);

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* @id angular-data
77
* @name angular-data
88
* @description
9-
* __Version:__ 1.0.0-beta.2
9+
* __Version:__ 1.0.0-beta.3
1010
*
1111
* ## Install
1212
*

0 commit comments

Comments
 (0)