ember-source 3.5.0 → 3.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/build-metadata.json +4 -4
- package/dist/ember-template-compiler.js +6 -41
- package/dist/ember-template-compiler.map +1 -1
- package/dist/ember-testing.js +1 -2
- package/dist/ember-testing.map +1 -1
- package/dist/ember.debug.js +91 -43
- package/dist/ember.debug.map +1 -1
- package/dist/ember.min.js +145 -129
- package/dist/ember.min.map +1 -1
- package/dist/ember.prod.js +104 -51
- package/dist/ember.prod.map +1 -1
- package/docs/data.json +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Ember Changelog
|
|
2
2
|
|
|
3
|
+
### v3.5.1 (October 29, 2018)
|
|
4
|
+
|
|
5
|
+
- [#17028](https://github.com/emberjs/ember.js/pull/17028) Mark `defineProperty` as public (yet low level) API.
|
|
6
|
+
- [#17115](https://github.com/emberjs/ember.js/pull/17115) [BUGFIX] Pass the event parameter to sendAction
|
|
7
|
+
- [#17128](https://github.com/emberjs/ember.js/pull/17128) [BUGFIX] Fix sourcemaping issues due to multiple sourcemap directives.
|
|
8
|
+
- [#17130](https://github.com/emberjs/ember.js/pull/17130) [BUGFIX] Ensure that timers scheduled after a system sleep are fired properly.
|
|
9
|
+
|
|
3
10
|
### v3.5.0 (October 8, 2018)
|
|
4
11
|
|
|
5
12
|
- [#16978](https://github.com/emberjs/ember.js/pull/16978) [BUGFIX] Properly teardown alias
|
package/build-metadata.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "3.5.
|
|
3
|
-
"buildType": "v3-5-
|
|
4
|
-
"SHA": "
|
|
5
|
-
"assetPath": "/v3-5-
|
|
2
|
+
"version": "3.5.1",
|
|
3
|
+
"buildType": "v3-5-1",
|
|
4
|
+
"SHA": "abf753a3d494830dc9e95b1337b3654b671b11be",
|
|
5
|
+
"assetPath": "/v3-5-1/shas/abf753a3d494830dc9e95b1337b3654b671b11be.tgz"
|
|
6
6
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* Portions Copyright 2008-2011 Apple Inc. All rights reserved.
|
|
7
7
|
* @license Licensed under MIT license
|
|
8
8
|
* See https://raw.github.com/emberjs/ember.js/master/LICENSE
|
|
9
|
-
* @version 3.5.
|
|
9
|
+
* @version 3.5.1
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/*globals process */
|
|
@@ -197,7 +197,6 @@ enifed('@ember/canary-features/index', ['exports', '@ember/polyfills', 'ember-en
|
|
|
197
197
|
exports.GLIMMER_CUSTOM_COMPONENT_MANAGER = featureValue(FEATURES.GLIMMER_CUSTOM_COMPONENT_MANAGER);
|
|
198
198
|
exports.EMBER_TEMPLATE_BLOCK_LET_HELPER = featureValue(FEATURES.EMBER_TEMPLATE_BLOCK_LET_HELPER);
|
|
199
199
|
exports.EMBER_GLIMMER_ANGLE_BRACKET_INVOCATION = featureValue(FEATURES.EMBER_GLIMMER_ANGLE_BRACKET_INVOCATION);
|
|
200
|
-
//# sourceMappingURL=index.js.map
|
|
201
200
|
});
|
|
202
201
|
enifed('@ember/debug/index', ['exports', '@ember/debug/lib/warn', '@ember/debug/lib/deprecate', '@ember/debug/lib/testing', '@ember/error', 'ember-browser-environment'], function (exports, _warn2, _deprecate2, _testing, _error, _emberBrowserEnvironment) {
|
|
203
202
|
'use strict';
|
|
@@ -699,9 +698,7 @@ enifed("@ember/debug/lib/testing", ["exports"], function (exports) {
|
|
|
699
698
|
exports.isTesting = isTesting;
|
|
700
699
|
exports.setTesting = function (value) {
|
|
701
700
|
testing = !!value;
|
|
702
|
-
}
|
|
703
|
-
//# sourceMappingURL=testing.js.map
|
|
704
|
-
;
|
|
701
|
+
};
|
|
705
702
|
var testing = false;
|
|
706
703
|
function isTesting() {
|
|
707
704
|
return testing;
|
|
@@ -831,7 +828,6 @@ enifed('@ember/deprecated-features/index', ['exports'], function (exports) {
|
|
|
831
828
|
exports.BINDING_SUPPORT = !!'2.7.0-beta.1';
|
|
832
829
|
exports.MAP = !!'3.3.0-beta.1';
|
|
833
830
|
exports.ORDERED_SET = !!'3.3.0-beta.1';
|
|
834
|
-
//# sourceMappingURL=index.js.map
|
|
835
831
|
});
|
|
836
832
|
enifed("@ember/error/index", ["exports", "ember-babel"], function (exports, _emberBabel) {
|
|
837
833
|
"use strict";
|
|
@@ -963,7 +959,6 @@ enifed("@ember/polyfills/lib/assign", ["exports"], function (exports) {
|
|
|
963
959
|
enifed('@ember/polyfills/lib/merge', ['exports'], function (exports) {
|
|
964
960
|
'use strict';
|
|
965
961
|
|
|
966
|
-
//# sourceMappingURL=merge.js.map
|
|
967
962
|
exports.default =
|
|
968
963
|
/**
|
|
969
964
|
@module @ember/polyfills
|
|
@@ -4868,7 +4863,6 @@ enifed('ember-template-compiler/index', ['exports', 'ember-template-compiler/lib
|
|
|
4868
4863
|
}
|
|
4869
4864
|
// used for adding Ember.Handlebars.compile for backwards compat
|
|
4870
4865
|
|
|
4871
|
-
//# sourceMappingURL=index.js.map
|
|
4872
4866
|
(0, _compat.default)(_Ember);
|
|
4873
4867
|
// used to bootstrap templates
|
|
4874
4868
|
|
|
@@ -4878,7 +4872,6 @@ enifed('ember-template-compiler/index', ['exports', 'ember-template-compiler/lib
|
|
|
4878
4872
|
enifed('ember-template-compiler/lib/compat', ['exports', 'ember-template-compiler/lib/system/compile', 'ember-template-compiler/lib/system/compile-options', 'ember-template-compiler/lib/system/precompile'], function (exports, _compile, _compileOptions, _precompile) {
|
|
4879
4873
|
'use strict';
|
|
4880
4874
|
|
|
4881
|
-
//# sourceMappingURL=compat.js.map
|
|
4882
4875
|
exports.default = function (Ember) {
|
|
4883
4876
|
var EmberHandlebars = Ember.Handlebars;
|
|
4884
4877
|
if (!EmberHandlebars) {
|
|
@@ -4933,7 +4926,6 @@ enifed('ember-template-compiler/lib/plugins/assert-if-helper-without-arguments',
|
|
|
4933
4926
|
function isInvalidBlockIf(node) {
|
|
4934
4927
|
return node.path.original === 'if' && (!node.params || node.params.length !== 1);
|
|
4935
4928
|
}
|
|
4936
|
-
//# sourceMappingURL=assert-if-helper-without-arguments.js.map
|
|
4937
4929
|
});
|
|
4938
4930
|
enifed('ember-template-compiler/lib/plugins/assert-input-helper-without-block', ['exports', '@ember/debug', 'ember-template-compiler/lib/system/calculate-location-display'], function (exports, _debug, _calculateLocationDisplay) {
|
|
4939
4931
|
'use strict';
|
|
@@ -4958,7 +4950,6 @@ enifed('ember-template-compiler/lib/plugins/assert-input-helper-without-block',
|
|
|
4958
4950
|
var sourceInformation = (0, _calculateLocationDisplay.default)(moduleName, node.loc);
|
|
4959
4951
|
return 'The {{input}} helper cannot be used in block form. ' + sourceInformation;
|
|
4960
4952
|
}
|
|
4961
|
-
//# sourceMappingURL=assert-input-helper-without-block.js.map
|
|
4962
4953
|
});
|
|
4963
4954
|
enifed('ember-template-compiler/lib/plugins/assert-reserved-named-arguments', ['exports', '@ember/debug', 'ember-template-compiler/lib/system/calculate-location-display'], function (exports, _debug, _calculateLocationDisplay) {
|
|
4964
4955
|
'use strict';
|
|
@@ -4991,7 +4982,6 @@ enifed('ember-template-compiler/lib/plugins/assert-reserved-named-arguments', ['
|
|
|
4991
4982
|
assertMessage = function (name) {
|
|
4992
4983
|
return '\'' + name + '\' is reserved.';
|
|
4993
4984
|
};
|
|
4994
|
-
//# sourceMappingURL=assert-reserved-named-arguments.js.map
|
|
4995
4985
|
});
|
|
4996
4986
|
enifed('ember-template-compiler/lib/plugins/assert-splattribute-expression', ['exports', '@ember/debug', 'ember-template-compiler/lib/system/calculate-location-display'], function (exports, _debug, _calculateLocationDisplay) {
|
|
4997
4987
|
'use strict';
|
|
@@ -5021,12 +5011,10 @@ enifed('ember-template-compiler/lib/plugins/assert-splattribute-expression', ['e
|
|
|
5021
5011
|
function errorMessage() {
|
|
5022
5012
|
return 'Using "...attributes" can only be used in the element position e.g. <div ...attributes />. It cannot be used as a path.';
|
|
5023
5013
|
}
|
|
5024
|
-
//# sourceMappingURL=assert-splattribute-expression.js.map
|
|
5025
5014
|
});
|
|
5026
5015
|
enifed('ember-template-compiler/lib/plugins/deprecate-render-model', ['exports', '@ember/debug', '@ember/deprecated-features', 'ember-template-compiler/lib/system/calculate-location-display'], function (exports, _debug, _deprecatedFeatures, _calculateLocationDisplay) {
|
|
5027
5016
|
'use strict';
|
|
5028
5017
|
|
|
5029
|
-
//# sourceMappingURL=deprecate-render-model.js.map
|
|
5030
5018
|
exports.default =
|
|
5031
5019
|
|
|
5032
5020
|
// Remove after 3.4 once _ENABLE_RENDER_SUPPORT flag is no longer needed.
|
|
@@ -5069,7 +5057,6 @@ enifed('ember-template-compiler/lib/plugins/deprecate-render-model', ['exports',
|
|
|
5069
5057
|
enifed('ember-template-compiler/lib/plugins/deprecate-render', ['exports', '@ember/debug', '@ember/deprecated-features', 'ember-template-compiler/lib/system/calculate-location-display'], function (exports, _debug, _deprecatedFeatures, _calculateLocationDisplay) {
|
|
5070
5058
|
'use strict';
|
|
5071
5059
|
|
|
5072
|
-
//# sourceMappingURL=deprecate-render.js.map
|
|
5073
5060
|
exports.default =
|
|
5074
5061
|
|
|
5075
5062
|
// Remove after 3.4 once _ENABLE_RENDER_SUPPORT flag is no longer needed.
|
|
@@ -5145,9 +5132,7 @@ enifed('ember-template-compiler/lib/plugins/deprecate-send-action', ['exports',
|
|
|
5145
5132
|
}
|
|
5146
5133
|
};
|
|
5147
5134
|
}
|
|
5148
|
-
}
|
|
5149
|
-
//# sourceMappingURL=deprecate-send-action.js.map
|
|
5150
|
-
;
|
|
5135
|
+
};
|
|
5151
5136
|
|
|
5152
5137
|
var EVENTS = ['insert-newline', 'enter', 'escape-press', 'focus-in', 'focus-out', 'key-press', 'key-up', 'key-down'];
|
|
5153
5138
|
});
|
|
@@ -5225,12 +5210,10 @@ enifed('ember-template-compiler/lib/plugins/transform-action-syntax', ['exports'
|
|
|
5225
5210
|
function insertThisAsFirstParam(node, builders) {
|
|
5226
5211
|
node.params.unshift(builders.path('this'));
|
|
5227
5212
|
}
|
|
5228
|
-
//# sourceMappingURL=transform-action-syntax.js.map
|
|
5229
5213
|
});
|
|
5230
5214
|
enifed('ember-template-compiler/lib/plugins/transform-angle-bracket-components', ['exports'], function (exports) {
|
|
5231
5215
|
'use strict';
|
|
5232
5216
|
|
|
5233
|
-
//# sourceMappingURL=transform-angle-bracket-components.js.map
|
|
5234
5217
|
exports.default = function () /* env */{
|
|
5235
5218
|
return {
|
|
5236
5219
|
name: 'transform-angle-bracket-components',
|
|
@@ -5312,7 +5295,6 @@ enifed('ember-template-compiler/lib/plugins/transform-attrs-into-args', ['export
|
|
|
5312
5295
|
}
|
|
5313
5296
|
return false;
|
|
5314
5297
|
}
|
|
5315
|
-
//# sourceMappingURL=transform-attrs-into-args.js.map
|
|
5316
5298
|
});
|
|
5317
5299
|
enifed('ember-template-compiler/lib/plugins/transform-dot-component-invocation', ['exports'], function (exports) {
|
|
5318
5300
|
'use strict';
|
|
@@ -5407,12 +5389,10 @@ enifed('ember-template-compiler/lib/plugins/transform-dot-component-invocation',
|
|
|
5407
5389
|
node.path = componentHelper;
|
|
5408
5390
|
node.params.unshift(component);
|
|
5409
5391
|
}
|
|
5410
|
-
//# sourceMappingURL=transform-dot-component-invocation.js.map
|
|
5411
5392
|
});
|
|
5412
5393
|
enifed('ember-template-compiler/lib/plugins/transform-each-in-into-each', ['exports'], function (exports) {
|
|
5413
5394
|
'use strict';
|
|
5414
5395
|
|
|
5415
|
-
//# sourceMappingURL=transform-each-in-into-each.js.map
|
|
5416
5396
|
exports.default =
|
|
5417
5397
|
/**
|
|
5418
5398
|
@module ember
|
|
@@ -5492,9 +5472,7 @@ enifed('ember-template-compiler/lib/plugins/transform-has-block-syntax', ['expor
|
|
|
5492
5472
|
}
|
|
5493
5473
|
}
|
|
5494
5474
|
};
|
|
5495
|
-
}
|
|
5496
|
-
//# sourceMappingURL=transform-has-block-syntax.js.map
|
|
5497
|
-
;
|
|
5475
|
+
};
|
|
5498
5476
|
/**
|
|
5499
5477
|
@module ember
|
|
5500
5478
|
*/
|
|
@@ -5610,7 +5588,6 @@ enifed('ember-template-compiler/lib/plugins/transform-in-element', ['exports', '
|
|
|
5610
5588
|
var sourceInformation = (0, _calculateLocationDisplay.default)(moduleName, node.loc);
|
|
5611
5589
|
return 'The {{in-element}} helper cannot be used. ' + sourceInformation;
|
|
5612
5590
|
}
|
|
5613
|
-
//# sourceMappingURL=transform-in-element.js.map
|
|
5614
5591
|
});
|
|
5615
5592
|
enifed('ember-template-compiler/lib/plugins/transform-inline-link-to', ['exports'], function (exports) {
|
|
5616
5593
|
'use strict';
|
|
@@ -5632,9 +5609,7 @@ enifed('ember-template-compiler/lib/plugins/transform-inline-link-to', ['exports
|
|
|
5632
5609
|
}
|
|
5633
5610
|
}
|
|
5634
5611
|
};
|
|
5635
|
-
}
|
|
5636
|
-
//# sourceMappingURL=transform-inline-link-to.js.map
|
|
5637
|
-
;
|
|
5612
|
+
};
|
|
5638
5613
|
function buildProgram(b, content, loc) {
|
|
5639
5614
|
return b.program([buildStatement(b, content, loc)], undefined, loc);
|
|
5640
5615
|
}
|
|
@@ -5710,12 +5685,10 @@ enifed('ember-template-compiler/lib/plugins/transform-input-type-syntax', ['expo
|
|
|
5710
5685
|
node.params.unshift(builders.sexpr('-input-type', [pair.value], undefined, pair.loc));
|
|
5711
5686
|
}
|
|
5712
5687
|
}
|
|
5713
|
-
//# sourceMappingURL=transform-input-type-syntax.js.map
|
|
5714
5688
|
});
|
|
5715
5689
|
enifed('ember-template-compiler/lib/plugins/transform-old-binding-syntax', ['exports', '@ember/debug', '@ember/deprecated-features', 'ember-template-compiler/lib/system/calculate-location-display'], function (exports, _debug, _deprecatedFeatures, _calculateLocationDisplay) {
|
|
5716
5690
|
'use strict';
|
|
5717
5691
|
|
|
5718
|
-
//# sourceMappingURL=transform-old-binding-syntax.js.map
|
|
5719
5692
|
exports.default = function (env) {
|
|
5720
5693
|
var moduleName, b, exprToString, processHash;
|
|
5721
5694
|
|
|
@@ -5886,7 +5859,6 @@ enifed('ember-template-compiler/lib/plugins/transform-old-class-binding-syntax',
|
|
|
5886
5859
|
}
|
|
5887
5860
|
return ret;
|
|
5888
5861
|
}
|
|
5889
|
-
//# sourceMappingURL=transform-old-class-binding-syntax.js.map
|
|
5890
5862
|
});
|
|
5891
5863
|
enifed('ember-template-compiler/lib/plugins/transform-quoted-bindings-into-just-bindings', ['exports'], function (exports) {
|
|
5892
5864
|
'use strict';
|
|
@@ -5927,7 +5899,6 @@ enifed('ember-template-compiler/lib/plugins/transform-quoted-bindings-into-just-
|
|
|
5927
5899
|
}
|
|
5928
5900
|
return undefined;
|
|
5929
5901
|
}
|
|
5930
|
-
//# sourceMappingURL=transform-quoted-bindings-into-just-bindings.js.map
|
|
5931
5902
|
});
|
|
5932
5903
|
enifed('ember-template-compiler/lib/plugins/transform-top-level-components', ['exports'], function (exports) {
|
|
5933
5904
|
'use strict';
|
|
@@ -5979,7 +5950,6 @@ enifed('ember-template-compiler/lib/plugins/transform-top-level-components', ['e
|
|
|
5979
5950
|
componentCallback(lastComponentNode);
|
|
5980
5951
|
}
|
|
5981
5952
|
}
|
|
5982
|
-
//# sourceMappingURL=transform-top-level-components.js.map
|
|
5983
5953
|
});
|
|
5984
5954
|
enifed('ember-template-compiler/lib/system/bootstrap', ['exports', 'ember-template-compiler/lib/system/compile'], function (exports, _compile) {
|
|
5985
5955
|
'use strict';
|
|
@@ -6041,7 +6011,6 @@ enifed('ember-template-compiler/lib/system/bootstrap', ['exports', 'ember-templa
|
|
|
6041
6011
|
enifed('ember-template-compiler/lib/system/calculate-location-display', ['exports'], function (exports) {
|
|
6042
6012
|
'use strict';
|
|
6043
6013
|
|
|
6044
|
-
//# sourceMappingURL=calculate-location-display.js.map
|
|
6045
6014
|
exports.default = function (moduleName, loc) {
|
|
6046
6015
|
var moduleInfo = '',
|
|
6047
6016
|
_ref,
|
|
@@ -6160,7 +6129,6 @@ enifed('ember-template-compiler/lib/system/compile-options', ['exports', '@ember
|
|
|
6160
6129
|
return plugin !== PluginClass && plugin.__raw !== PluginClass;
|
|
6161
6130
|
});
|
|
6162
6131
|
}
|
|
6163
|
-
//# sourceMappingURL=compile-options.js.map
|
|
6164
6132
|
});
|
|
6165
6133
|
enifed('ember-template-compiler/lib/system/compile', ['exports', 'require', 'ember-template-compiler/lib/system/precompile'], function (exports, _require2, _precompile) {
|
|
6166
6134
|
'use strict';
|
|
@@ -6192,7 +6160,6 @@ enifed('ember-template-compiler/lib/system/compile', ['exports', 'require', 'emb
|
|
|
6192
6160
|
var templateJS = new Function('return ' + precompiledTemplateString)();
|
|
6193
6161
|
return template(templateJS);
|
|
6194
6162
|
}
|
|
6195
|
-
//# sourceMappingURL=compile.js.map
|
|
6196
6163
|
});
|
|
6197
6164
|
enifed('ember-template-compiler/lib/system/dasherize-component-name', ['exports', 'ember-utils'], function (exports, _emberUtils) {
|
|
6198
6165
|
'use strict';
|
|
@@ -6240,12 +6207,10 @@ enifed('ember-template-compiler/lib/system/initializer', ['require', 'ember-temp
|
|
|
6240
6207
|
}
|
|
6241
6208
|
});
|
|
6242
6209
|
}
|
|
6243
|
-
//# sourceMappingURL=initializer.js.map
|
|
6244
6210
|
});
|
|
6245
6211
|
enifed('ember-template-compiler/lib/system/precompile', ['exports', '@glimmer/compiler', 'ember-template-compiler/lib/system/compile-options'], function (exports, _compiler, _compileOptions) {
|
|
6246
6212
|
'use strict';
|
|
6247
6213
|
|
|
6248
|
-
//# sourceMappingURL=precompile.js.map
|
|
6249
6214
|
exports.default =
|
|
6250
6215
|
|
|
6251
6216
|
/**
|
|
@@ -7881,7 +7846,7 @@ enifed('ember-utils', ['exports'], function (exports) {
|
|
|
7881
7846
|
enifed("ember/version", ["exports"], function (exports) {
|
|
7882
7847
|
"use strict";
|
|
7883
7848
|
|
|
7884
|
-
exports.default = "3.5.
|
|
7849
|
+
exports.default = "3.5.1";
|
|
7885
7850
|
});
|
|
7886
7851
|
enifed("handlebars", ["exports"], function (exports) {
|
|
7887
7852
|
"use strict";
|