Skip to content

Commit 61facad

Browse files
committed
1.1.7
1 parent 61665fa commit 61facad

21 files changed

+33
-22
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
<a name="1.1.7"></a>
2+
### 1.1.7 (2015-01-06)
3+
4+
5+
#### Bug Fixes
6+
7+
* **record:** Adds support for array properties on patch mask ([61665fa4](http://github.com/angular-platanus/restmod/commit/61665fa42a470651f3b6d006c2987b3e0d303813), closes [#217](http://github.com/angular-platanus/restmod/issues/217))
8+
9+
110
<a name="1.1.6"></a>
211
### 1.1.6 (2015-01-06)
312

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-restmod",
3-
"version": "1.1.6",
3+
"version": "1.1.7",
44
"authors": [
55
"Ignacio Baixas <[email protected]>"
66
],

dist/angular-restmod-bundle.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* API Bound Models for AngularJS
3-
* @version v1.1.6 - 2015-01-06
3+
* @version v1.1.7 - 2015-01-06
44
* @link https://github.com/angular-platanus/restmod
55
* @author Ignacio Baixas <[email protected]>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
@@ -1562,6 +1562,7 @@ RMModule.factory('RMRecordApi', ['RMUtils', function(Utils) {
15621562
url: url,
15631563
// Use special mask for patches, mask everything that is not in the patch list.
15641564
data: this.$wrap(function(_name) {
1565+
_name = _name.replace('[]', '');
15651566
for(var i = 0, l = _patch.length; i < l; i++) {
15661567
if(_name === _patch[i] ||
15671568
_name.indexOf(_patch[i] + '.') === 0 ||

dist/angular-restmod-bundle.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-restmod.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* API Bound Models for AngularJS
3-
* @version v1.1.6 - 2015-01-06
3+
* @version v1.1.7 - 2015-01-06
44
* @link https://github.com/angular-platanus/restmod
55
* @author Ignacio Baixas <[email protected]>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
@@ -1324,6 +1324,7 @@ RMModule.factory('RMRecordApi', ['RMUtils', function(Utils) {
13241324
url: url,
13251325
// Use special mask for patches, mask everything that is not in the patch list.
13261326
data: this.$wrap(function(_name) {
1327+
_name = _name.replace('[]', '');
13271328
for(var i = 0, l = _patch.length; i < l; i++) {
13281329
if(_name === _patch[i] ||
13291330
_name.indexOf(_patch[i] + '.') === 0 ||

dist/angular-restmod.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plugins/debounced.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* API Bound Models for AngularJS
3-
* @version v1.1.6 - 2015-01-06
3+
* @version v1.1.7 - 2015-01-06
44
* @link https://github.com/angular-platanus/restmod
55
* @author Ignacio Baixas <[email protected]>
66
* @license MIT License, http://www.opensource.org/licenses/MIT

dist/plugins/debounced.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/plugins/dirty.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* API Bound Models for AngularJS
3-
* @version v1.1.6 - 2015-01-06
3+
* @version v1.1.7 - 2015-01-06
44
* @link https://github.com/angular-platanus/restmod
55
* @author Ignacio Baixas <[email protected]>
66
* @license MIT License, http://www.opensource.org/licenses/MIT

dist/plugins/dirty.min.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* API Bound Models for AngularJS
3-
* @version v1.1.6 - 2015-01-06
3+
* @version v1.1.7 - 2015-01-06
44
* @link https://github.com/angular-platanus/restmod
55
* @author Ignacio Baixas <[email protected]>
66
* @license MIT License, http://www.opensource.org/licenses/MIT

0 commit comments

Comments
 (0)