Skip to content

Commit e0d684d

Browse files
chore(all): prepare release 1.7.3
1 parent cb2bcfa commit e0d684d

File tree

9 files changed

+13
-8
lines changed

9 files changed

+13
-8
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-binding",
3-
"version": "1.7.2",
3+
"version": "1.7.3",
44
"description": "A modern databinding library for JavaScript and HTML.",
55
"license": "MIT",
66
"keywords": [

dist/amd/aurelia-binding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,7 +1050,7 @@ define(['exports', 'aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aure
10501050
if (arrayProto.__au_patched__) {
10511051
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
10521052
} else {
1053-
arrayProto.__au_patched__ = 1;
1053+
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
10541054
arrayProto.pop = function () {
10551055
var notEmpty = this.length > 0;
10561056
var methodCallResult = pop.apply(this, arguments);

dist/aurelia-binding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1040,7 +1040,7 @@ if (arrayProto.__au_patched__) {
10401040
+ ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.'
10411041
);
10421042
} else {
1043-
arrayProto.__au_patched__ = 1;
1043+
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
10441044
arrayProto.pop = function() {
10451045
let notEmpty = this.length > 0;
10461046
let methodCallResult = pop.apply(this, arguments);

dist/commonjs/aurelia-binding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1003,7 +1003,7 @@ var unshift = arrayProto.unshift;
10031003
if (arrayProto.__au_patched__) {
10041004
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
10051005
} else {
1006-
arrayProto.__au_patched__ = 1;
1006+
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
10071007
arrayProto.pop = function () {
10081008
var notEmpty = this.length > 0;
10091009
var methodCallResult = pop.apply(this, arguments);

dist/es2015/aurelia-binding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ const unshift = arrayProto.unshift;
941941
if (arrayProto.__au_patched__) {
942942
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
943943
} else {
944-
arrayProto.__au_patched__ = 1;
944+
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
945945
arrayProto.pop = function () {
946946
let notEmpty = this.length > 0;
947947
let methodCallResult = pop.apply(this, arguments);

dist/native-modules/aurelia-binding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ var unshift = arrayProto.unshift;
971971
if (arrayProto.__au_patched__) {
972972
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
973973
} else {
974-
arrayProto.__au_patched__ = 1;
974+
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
975975
arrayProto.pop = function () {
976976
var notEmpty = this.length > 0;
977977
var methodCallResult = pop.apply(this, arguments);

dist/system/aurelia-binding.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1412,7 +1412,7 @@ System.register(['aurelia-logging', 'aurelia-pal', 'aurelia-task-queue', 'aureli
14121412
if (arrayProto.__au_patched__) {
14131413
LogManager.getLogger('array-observation').warn('Detected 2nd attempt of patching array from Aurelia binding.' + ' This is probably caused by dependency mismatch between core modules and a 3rd party plugin.' + ' Please see https://github.com/aurelia/cli/pull/906 if you are using webpack.');
14141414
} else {
1415-
arrayProto.__au_patched__ = 1;
1415+
Reflect.defineProperty(arrayProto, '__au_patched__', { value: 1 });
14161416
arrayProto.pop = function () {
14171417
var notEmpty = this.length > 0;
14181418
var methodCallResult = pop.apply(this, arguments);

doc/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<a name="1.7.3"></a>
2+
## [1.7.3](https://github.com/aurelia/binding/compare/1.7.2...1.7.3) (2018-08-09)
3+
4+
5+
16
<a name="1.7.2"></a>
27
## [1.7.2](https://github.com/aurelia/binding/compare/1.7.1...1.7.2) (2018-08-02)
38

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-binding",
3-
"version": "1.7.2",
3+
"version": "1.7.3",
44
"description": "A modern databinding library for JavaScript and HTML.",
55
"keywords": [
66
"aurelia",

0 commit comments

Comments
 (0)