ember-source 2.17.1 → 2.17.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/dist/ember-runtime.js +1 -1
- data/dist/ember-template-compiler.js +2 -2
- data/dist/ember-testing.js +1 -1
- data/dist/ember-tests.js +66 -1
- data/dist/ember-tests.prod.js +64 -1
- data/dist/ember.debug.js +7 -5
- data/dist/ember.min.js +2 -2
- data/dist/ember.prod.js +7 -5
- data/package.json +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88f279808b47b8cb3bf5c3b05c68aa44e52761df5681969d9618e54f30042e6c
|
4
|
+
data.tar.gz: 91af64861625b8962ec410954aeb575af88d7445659bd9421f01d88238d2a80c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3267332ad1bb675df2be5dd2851d0e9eb4e043ef3b276a7da216d948d23a3b0135dc42fc9b6e32213ae75948e9dca8aa3d772d3e6cf41feb5700c8f28a6bba94
|
7
|
+
data.tar.gz: 437911cd8ea5bca3754dbb36ac0683824c3de0ffbdfb3cd29715b876f9f40dd1d1bacac5e2d043d66bd464eaef27345a5b317fbf41c8a8a83dead8028d558c26
|
data/dist/ember-runtime.js
CHANGED
@@ -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 2.17.
|
9
|
+
* @version 2.17.2
|
10
10
|
*/
|
11
11
|
|
12
12
|
var enifed, requireModule, Ember;
|
@@ -17349,7 +17349,7 @@ enifed('ember/features', ['exports', 'ember-environment', 'ember-utils'], functi
|
|
17349
17349
|
enifed("ember/version", ["exports"], function (exports) {
|
17350
17350
|
"use strict";
|
17351
17351
|
|
17352
|
-
exports.default = "2.17.
|
17352
|
+
exports.default = "2.17.2";
|
17353
17353
|
});
|
17354
17354
|
enifed("handlebars", ["exports"], function (exports) {
|
17355
17355
|
"use strict";
|
data/dist/ember-testing.js
CHANGED
data/dist/ember-tests.js
CHANGED
@@ -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 2.17.
|
9
|
+
* @version 2.17.2
|
10
10
|
*/
|
11
11
|
|
12
12
|
var enifed, requireModule, Ember;
|
@@ -17720,6 +17720,71 @@ enifed('ember-glimmer/tests/integration/components/error-handling-test', ['ember
|
|
17720
17720
|
this.assertText('hello');
|
17721
17721
|
};
|
17722
17722
|
|
17723
|
+
_class.prototype['@test it can recover resets the transaction when an error is thrown during didInsertElement'] = function testItCanRecoverResetsTheTransactionWhenAnErrorIsThrownDuringDidInsertElement(assert) {
|
17724
|
+
var _this4 = this;
|
17725
|
+
|
17726
|
+
var shouldThrow = true;
|
17727
|
+
var FooBarComponent = _helpers.Component.extend({
|
17728
|
+
didInsertElement: function () {
|
17729
|
+
this._super.apply(this, arguments);
|
17730
|
+
if (shouldThrow) {
|
17731
|
+
throw new Error('silly mistake!');
|
17732
|
+
}
|
17733
|
+
}
|
17734
|
+
});
|
17735
|
+
|
17736
|
+
this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
|
17737
|
+
|
17738
|
+
assert.throws(function () {
|
17739
|
+
_this4.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
|
17740
|
+
}, /silly mistake/);
|
17741
|
+
|
17742
|
+
assert.equal(this.env.inTransaction, false, 'should not be in a transaction even though an error was thrown');
|
17743
|
+
|
17744
|
+
this.assertText('hello');
|
17745
|
+
|
17746
|
+
this.runTask(function () {
|
17747
|
+
return (0, _emberMetal.set)(_this4.context, 'switch', false);
|
17748
|
+
});
|
17749
|
+
|
17750
|
+
this.assertText('');
|
17751
|
+
};
|
17752
|
+
|
17753
|
+
_class.prototype['@test it can recover resets the transaction when an error is thrown during destroy'] = function testItCanRecoverResetsTheTransactionWhenAnErrorIsThrownDuringDestroy(assert) {
|
17754
|
+
var _this5 = this;
|
17755
|
+
|
17756
|
+
var shouldThrow = true;
|
17757
|
+
var FooBarComponent = _helpers.Component.extend({
|
17758
|
+
destroy: function () {
|
17759
|
+
this._super.apply(this, arguments);
|
17760
|
+
if (shouldThrow) {
|
17761
|
+
throw new Error('silly mistake!');
|
17762
|
+
}
|
17763
|
+
}
|
17764
|
+
});
|
17765
|
+
|
17766
|
+
this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
|
17767
|
+
|
17768
|
+
this.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
|
17769
|
+
|
17770
|
+
this.assertText('hello');
|
17771
|
+
|
17772
|
+
assert.throws(function () {
|
17773
|
+
_this5.runTask(function () {
|
17774
|
+
return (0, _emberMetal.set)(_this5.context, 'switch', false);
|
17775
|
+
});
|
17776
|
+
}, /silly mistake/);
|
17777
|
+
|
17778
|
+
this.assertText('');
|
17779
|
+
|
17780
|
+
shouldThrow = false;
|
17781
|
+
this.runTask(function () {
|
17782
|
+
return (0, _emberMetal.set)(_this5.context, 'switch', true);
|
17783
|
+
});
|
17784
|
+
|
17785
|
+
this.assertText('hello');
|
17786
|
+
};
|
17787
|
+
|
17723
17788
|
return _class;
|
17724
17789
|
}(_testCase.RenderingTest));
|
17725
17790
|
});
|
data/dist/ember-tests.prod.js
CHANGED
@@ -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 2.17.
|
9
|
+
* @version 2.17.2
|
10
10
|
*/
|
11
11
|
|
12
12
|
var enifed, requireModule, Ember;
|
@@ -16700,6 +16700,69 @@ enifed('ember-glimmer/tests/integration/components/error-handling-test', ['ember
|
|
16700
16700
|
this.assertText('hello');
|
16701
16701
|
};
|
16702
16702
|
|
16703
|
+
_class.prototype['@test it can recover resets the transaction when an error is thrown during didInsertElement'] = function (assert) {
|
16704
|
+
var _this4 = this;
|
16705
|
+
|
16706
|
+
var FooBarComponent = _helpers.Component.extend({
|
16707
|
+
didInsertElement: function () {
|
16708
|
+
this._super.apply(this, arguments);
|
16709
|
+
|
16710
|
+
throw new Error('silly mistake!');
|
16711
|
+
}
|
16712
|
+
});
|
16713
|
+
|
16714
|
+
this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
|
16715
|
+
|
16716
|
+
assert.throws(function () {
|
16717
|
+
_this4.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
|
16718
|
+
}, /silly mistake/);
|
16719
|
+
|
16720
|
+
assert.equal(this.env.inTransaction, false, 'should not be in a transaction even though an error was thrown');
|
16721
|
+
|
16722
|
+
this.assertText('hello');
|
16723
|
+
|
16724
|
+
this.runTask(function () {
|
16725
|
+
return (0, _emberMetal.set)(_this4.context, 'switch', false);
|
16726
|
+
});
|
16727
|
+
|
16728
|
+
this.assertText('');
|
16729
|
+
};
|
16730
|
+
|
16731
|
+
_class.prototype['@test it can recover resets the transaction when an error is thrown during destroy'] = function (assert) {
|
16732
|
+
var _this5 = this;
|
16733
|
+
|
16734
|
+
var shouldThrow = true;
|
16735
|
+
var FooBarComponent = _helpers.Component.extend({
|
16736
|
+
destroy: function () {
|
16737
|
+
this._super.apply(this, arguments);
|
16738
|
+
if (shouldThrow) {
|
16739
|
+
throw new Error('silly mistake!');
|
16740
|
+
}
|
16741
|
+
}
|
16742
|
+
});
|
16743
|
+
|
16744
|
+
this.registerComponent('foo-bar', { ComponentClass: FooBarComponent, template: 'hello' });
|
16745
|
+
|
16746
|
+
this.render('{{#if switch}}{{#foo-bar}}{{foo-bar}}{{/foo-bar}}{{/if}}', { switch: true });
|
16747
|
+
|
16748
|
+
this.assertText('hello');
|
16749
|
+
|
16750
|
+
assert.throws(function () {
|
16751
|
+
_this5.runTask(function () {
|
16752
|
+
return (0, _emberMetal.set)(_this5.context, 'switch', false);
|
16753
|
+
});
|
16754
|
+
}, /silly mistake/);
|
16755
|
+
|
16756
|
+
this.assertText('');
|
16757
|
+
|
16758
|
+
shouldThrow = false;
|
16759
|
+
this.runTask(function () {
|
16760
|
+
return (0, _emberMetal.set)(_this5.context, 'switch', true);
|
16761
|
+
});
|
16762
|
+
|
16763
|
+
this.assertText('hello');
|
16764
|
+
};
|
16765
|
+
|
16703
16766
|
return _class;
|
16704
16767
|
}(_testCase.RenderingTest));
|
16705
16768
|
});
|
data/dist/ember.debug.js
CHANGED
@@ -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 2.17.
|
9
|
+
* @version 2.17.2
|
10
10
|
*/
|
11
11
|
|
12
12
|
var enifed, requireModule, Ember;
|
@@ -17813,9 +17813,11 @@ enifed('ember-glimmer/environment', ['exports', 'ember-babel', 'ember-utils', 'e
|
|
17813
17813
|
destroyedComponents[i].destroy();
|
17814
17814
|
}
|
17815
17815
|
|
17816
|
-
|
17817
|
-
|
17818
|
-
|
17816
|
+
try {
|
17817
|
+
_GlimmerEnvironment.prototype.commit.call(this);
|
17818
|
+
} finally {
|
17819
|
+
this.inTransaction = false;
|
17820
|
+
}
|
17819
17821
|
};
|
17820
17822
|
|
17821
17823
|
return Environment;
|
@@ -48522,7 +48524,7 @@ enifed('ember/index', ['exports', 'require', 'ember-environment', 'node-module',
|
|
48522
48524
|
enifed("ember/version", ["exports"], function (exports) {
|
48523
48525
|
"use strict";
|
48524
48526
|
|
48525
|
-
exports.default = "2.17.
|
48527
|
+
exports.default = "2.17.2";
|
48526
48528
|
});
|
48527
48529
|
enifed("handlebars", ["exports"], function (exports) {
|
48528
48530
|
"use strict";
|
data/dist/ember.min.js
CHANGED
@@ -1222,7 +1222,7 @@ throw new Error(e+" is not a modifier")},i.prototype.toConditionalReference=func
|
|
1222
1222
|
this.isInteractive&&(t=e.prototype.scheduleInstallModifier).call.apply(t,[this].concat(Array.prototype.slice.call(arguments)))},i.prototype.scheduleUpdateModifier=function(){var t
|
1223
1223
|
this.isInteractive&&(t=e.prototype.scheduleUpdateModifier).call.apply(t,[this].concat(Array.prototype.slice.call(arguments)))},i.prototype.didDestroy=function(e){e.destroy()},i.prototype.begin=function(){this.inTransaction=!0,e.prototype.begin.call(this)},i.prototype.commit=function(){var t,n=this.destroyedComponents
|
1224
1224
|
for(this.destroyedComponents=[],t=0;t<n.length;t++)n[t].destroy()
|
1225
|
-
e.prototype.commit.call(this)
|
1225
|
+
try{e.prototype.commit.call(this)}finally{this.inTransaction=!1}},i}(s.Environment)
|
1226
1226
|
e["default"]=j}),e("ember-glimmer/helper",["exports","ember-utils","ember-runtime","@glimmer/reference"],function(e,t,n,r){"use strict"
|
1227
1227
|
e.SimpleHelper=e.RECOMPUTE_TAG=void 0,e.helper=function(e){return new s(e)}
|
1228
1228
|
var i=e.RECOMPUTE_TAG=(0,t.symbol)("RECOMPUTE_TAG"),o=n.FrameworkObject.extend({isHelperInstance:!0,init:function(){this._super.apply(this,arguments),this[i]=new r.DirtyableTag},recompute:function(){this[i].dirty()}})
|
@@ -2592,7 +2592,7 @@ var b,_=s.computed
|
|
2592
2592
|
_.alias=s.alias,s["default"].computed=_,s["default"].ComputedProperty=s.ComputedProperty,s["default"].cacheFor=s.cacheFor,s["default"].assert=u.assert,s["default"].warn=u.warn,s["default"].debug=u.debug,s["default"].deprecate=u.deprecate,s["default"].deprecateFunc=u.deprecateFunc,s["default"].runInDebug=u.runInDebug,s["default"].Debug={registerDeprecationHandler:u.registerDeprecationHandler,registerWarnHandler:u.registerWarnHandler},s["default"].merge=s.merge,s["default"].instrument=s.instrument,s["default"].subscribe=s.instrumentationSubscribe,s["default"].Instrumentation={instrument:s.instrument,subscribe:s.instrumentationSubscribe,unsubscribe:s.instrumentationUnsubscribe,reset:s.instrumentationReset},s["default"].Error=u.Error,s["default"].META_DESC=s.META_DESC,s["default"].meta=s.meta,s["default"].get=s.get,s["default"].getWithDefault=s.getWithDefault,s["default"]._getPath=s._getPath,s["default"].set=s.set,s["default"].trySet=s.trySet,s["default"].FEATURES=a.FEATURES,s["default"].FEATURES.isEnabled=u.isFeatureEnabled,s["default"]._Cache=s.Cache,s["default"].on=s.on,s["default"].addListener=s.addListener,s["default"].removeListener=s.removeListener,s["default"]._suspendListener=s.suspendListener,s["default"]._suspendListeners=s.suspendListeners,s["default"].sendEvent=s.sendEvent,s["default"].hasListeners=s.hasListeners,s["default"].watchedEvents=s.watchedEvents,s["default"].listenersFor=s.listenersFor,s["default"].isNone=s.isNone,s["default"].isEmpty=s.isEmpty,s["default"].isBlank=s.isBlank,s["default"].isPresent=s.isPresent,s["default"].run=s.run,s["default"]._ObserverSet=s.ObserverSet,s["default"].propertyWillChange=s.propertyWillChange,s["default"].propertyDidChange=s.propertyDidChange,s["default"].overrideChains=s.overrideChains,s["default"].beginPropertyChanges=s.beginPropertyChanges,s["default"].endPropertyChanges=s.endPropertyChanges,s["default"].changeProperties=s.changeProperties,s["default"].platform={defineProperty:!0,hasPropertyAccessors:!0},s["default"].defineProperty=s.defineProperty,s["default"].watchKey=s.watchKey,s["default"].unwatchKey=s.unwatchKey,s["default"].removeChainWatcher=s.removeChainWatcher,s["default"]._ChainNode=s.ChainNode,s["default"].finishChains=s.finishChains,s["default"].watchPath=s.watchPath,s["default"].unwatchPath=s.unwatchPath,s["default"].watch=s.watch,s["default"].isWatching=s.isWatching,s["default"].unwatch=s.unwatch,s["default"].destroy=s.deleteMeta,s["default"].libraries=s.libraries,s["default"].OrderedSet=s.OrderedSet,s["default"].Map=s.Map,s["default"].MapWithDefault=s.MapWithDefault,s["default"].getProperties=s.getProperties,s["default"].setProperties=s.setProperties,s["default"].expandProperties=s.expandProperties,s["default"].NAME_KEY=i.NAME_KEY,s["default"].addObserver=s.addObserver,s["default"].observersFor=s.observersFor,s["default"].removeObserver=s.removeObserver,s["default"]._suspendObserver=s._suspendObserver,s["default"]._suspendObservers=s._suspendObservers,s["default"].required=s.required,s["default"].aliasMethod=s.aliasMethod,s["default"].observer=s.observer,s["default"].immediateObserver=s._immediateObserver,s["default"].mixin=s.mixin,s["default"].Mixin=s.Mixin,s["default"].bind=s.bind,s["default"].Binding=s.Binding,s["default"].isGlobalPath=s.isGlobalPath,Object.defineProperty(s["default"],"ENV",{get:function(){return n.ENV},enumerable:!1}),Object.defineProperty(s["default"],"lookup",{get:function(){return n.context.lookup},set:function(e){n.context.lookup=e},enumerable:!1}),s["default"].EXTEND_PROTOTYPES=n.ENV.EXTEND_PROTOTYPES,Object.defineProperty(s["default"],"LOG_STACKTRACE_ON_DEPRECATION",{get:function(){return n.ENV.LOG_STACKTRACE_ON_DEPRECATION},set:function(e){n.ENV.LOG_STACKTRACE_ON_DEPRECATION=!!e},enumerable:!1}),Object.defineProperty(s["default"],"LOG_VERSION",{get:function(){return n.ENV.LOG_VERSION},set:function(e){n.ENV.LOG_VERSION=!!e},enumerable:!1}),Object.defineProperty(s["default"],"LOG_BINDINGS",{get:function(){return n.ENV.LOG_BINDINGS},set:function(e){n.ENV.LOG_BINDINGS=!!e},enumerable:!1}),Object.defineProperty(s["default"],"onerror",{get:s.getOnerror,set:s.setOnerror,enumerable:!1}),Object.defineProperty(s["default"],"K",{get:function(){return v}}),Object.defineProperty(s["default"],"testing",{get:u.isTesting,set:u.setTesting,enumerable:!1}),s["default"]._Backburner=c["default"],s["default"].Logger=l["default"],s["default"].String=p.String,s["default"].Object=p.Object,s["default"]._RegistryProxyMixin=p.RegistryProxyMixin,s["default"]._ContainerProxyMixin=p.ContainerProxyMixin,s["default"].compare=p.compare,s["default"].copy=p.copy,s["default"].isEqual=p.isEqual,s["default"].inject=p.inject,s["default"].Array=p.Array,s["default"].Comparable=p.Comparable,s["default"].Enumerable=p.Enumerable,s["default"].ArrayProxy=p.ArrayProxy,s["default"].ObjectProxy=p.ObjectProxy,s["default"].ActionHandler=p.ActionHandler,s["default"].CoreObject=p.CoreObject,s["default"].NativeArray=p.NativeArray,s["default"].Copyable=p.Copyable,s["default"].Freezable=p.Freezable,s["default"].FROZEN_ERROR=p.FROZEN_ERROR,s["default"].MutableEnumerable=p.MutableEnumerable,s["default"].MutableArray=p.MutableArray,s["default"].TargetActionSupport=p.TargetActionSupport,s["default"].Evented=p.Evented,s["default"].PromiseProxyMixin=p.PromiseProxyMixin,s["default"].Observable=p.Observable,s["default"].typeOf=p.typeOf,s["default"].isArray=p.isArray,s["default"].Object=p.Object,s["default"].onLoad=p.onLoad,s["default"].runLoadHooks=p.runLoadHooks,s["default"].Controller=p.Controller,s["default"].ControllerMixin=p.ControllerMixin,s["default"].Service=p.Service,s["default"]._ProxyMixin=p._ProxyMixin,s["default"].RSVP=p.RSVP,s["default"].Namespace=p.Namespace,_.empty=p.empty,_.notEmpty=p.notEmpty,_.none=p.none,_.not=p.not,_.bool=p.bool,_.match=p.match,_.equal=p.equal,_.gt=p.gt,_.gte=p.gte,_.lt=p.lt,_.lte=p.lte,_.oneWay=p.oneWay,_.reads=p.oneWay,_.readOnly=p.readOnly,_.deprecatingAlias=p.deprecatingAlias,_.and=p.and,_.or=p.or,_.any=p.any,_.sum=p.sum,_.min=p.min,_.max=p.max,_.map=p.map,_.sort=p.sort,_.setDiff=p.setDiff,_.mapBy=p.mapBy,_.filter=p.filter,_.filterBy=p.filterBy,_.uniq=p.uniq,_.uniqBy=p.uniqBy,_.union=p.union,_.intersect=p.intersect,_.collect=p.collect,Object.defineProperty(s["default"],"STRINGS",{configurable:!1,get:p.getStrings,set:p.setStrings}),Object.defineProperty(s["default"],"BOOTED",{configurable:!1,enumerable:!1,get:p.isNamespaceSearchDisabled,set:p.setNamespaceSearchDisabled}),s["default"].Component=h.Component,h.Helper.helper=h.helper,s["default"].Helper=h.Helper,s["default"].Checkbox=h.Checkbox,s["default"].TextField=h.TextField,s["default"].TextArea=h.TextArea,s["default"].LinkComponent=h.LinkComponent,n.ENV.EXTEND_PROTOTYPES.String&&(String.prototype.htmlSafe=function(){return(0,h.htmlSafe)(this)})
|
2593
2593
|
var w=s["default"].Handlebars=s["default"].Handlebars||{},O=s["default"].HTMLBars=s["default"].HTMLBars||{},E=w.Utils=w.Utils||{}
|
2594
2594
|
Object.defineProperty(w,"SafeString",{get:h._getSafeString}),O.template=w.template=h.template,E.escapeExpression=h.escapeExpression,p.String.htmlSafe=h.htmlSafe,p.String.isHTMLSafe=h.isHTMLSafe,Object.defineProperty(s["default"],"TEMPLATES",{get:h.getTemplates,set:h.setTemplates,configurable:!1,enumerable:!1}),e.VERSION=f["default"],s["default"].VERSION=f["default"],s.libraries.registerCoreLibrary("Ember",f["default"]),s["default"].$=d.jQuery,s["default"].ViewTargetActionSupport=d.ViewTargetActionSupport,s["default"].ViewUtils={isSimpleClick:d.isSimpleClick,getViewElement:d.getViewElement,getViewBounds:d.getViewBounds,getViewClientRects:d.getViewClientRects,getViewBoundingClientRect:d.getViewBoundingClientRect,getRootViews:d.getRootViews,getChildViews:d.getChildViews},s["default"].TextSupport=d.TextSupport,s["default"].ComponentLookup=d.ComponentLookup,s["default"].EventDispatcher=d.EventDispatcher,s["default"].Location=m.Location,s["default"].AutoLocation=m.AutoLocation,s["default"].HashLocation=m.HashLocation,s["default"].HistoryLocation=m.HistoryLocation,s["default"].NoneLocation=m.NoneLocation,s["default"].controllerFor=m.controllerFor,s["default"].generateControllerFactory=m.generateControllerFactory,s["default"].generateController=m.generateController,s["default"].RouterDSL=m.RouterDSL,s["default"].Router=m.Router,s["default"].Route=m.Route,s["default"].Application=g.Application,s["default"].ApplicationInstance=g.ApplicationInstance,s["default"].Engine=g.Engine,s["default"].EngineInstance=g.EngineInstance,s["default"].DefaultResolver=s["default"].Resolver=g.Resolver,(0,p.runLoadHooks)("Ember.Application",g.Application),s["default"].DataAdapter=y.DataAdapter,s["default"].ContainerDebugAdapter=y.ContainerDebugAdapter,(0,t.has)("ember-template-compiler")&&(0,t["default"])("ember-template-compiler"),(0,t.has)("ember-testing")&&(b=(0,t["default"])("ember-testing"),s["default"].Test=b.Test,s["default"].Test.Adapter=b.Adapter,s["default"].Test.QUnitAdapter=b.QUnitAdapter,s["default"].setupForTesting=b.setupForTesting),(0,p.runLoadHooks)("Ember"),e["default"]=s["default"],r.IS_NODE?r.module.exports=s["default"]:n.context.exports.Ember=n.context.exports.Em=s["default"]}),e("ember/version",["exports"],function(e){"use strict"
|
2595
|
-
e["default"]="2.17.
|
2595
|
+
e["default"]="2.17.2"}),e("node-module",["exports"],function(e){var t="object"==typeof module&&"function"==typeof module.require
|
2596
2596
|
t?(e.require=module.require,e.module=module,e.IS_NODE=t):(e.require=null,e.module=null,e.IS_NODE=t)}),e("route-recognizer",["exports"],function(e){"use strict"
|
2597
2597
|
function t(){var e=g(null)
|
2598
2598
|
return e.__=void 0,delete e.__,e}function n(e,t,r){return function(i,o){var s=e+i
|
data/dist/ember.prod.js
CHANGED
@@ -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 2.17.
|
9
|
+
* @version 2.17.2
|
10
10
|
*/
|
11
11
|
|
12
12
|
var enifed, requireModule, Ember;
|
@@ -17381,9 +17381,11 @@ enifed('ember-glimmer/environment', ['exports', 'ember-babel', 'ember-utils', 'e
|
|
17381
17381
|
destroyedComponents[i].destroy();
|
17382
17382
|
}
|
17383
17383
|
|
17384
|
-
|
17385
|
-
|
17386
|
-
|
17384
|
+
try {
|
17385
|
+
_GlimmerEnvironment.prototype.commit.call(this);
|
17386
|
+
} finally {
|
17387
|
+
this.inTransaction = false;
|
17388
|
+
}
|
17387
17389
|
};
|
17388
17390
|
|
17389
17391
|
return Environment;
|
@@ -44498,7 +44500,7 @@ enifed('ember/index', ['exports', 'require', 'ember-environment', 'node-module',
|
|
44498
44500
|
enifed("ember/version", ["exports"], function (exports) {
|
44499
44501
|
"use strict";
|
44500
44502
|
|
44501
|
-
exports.default = "2.17.
|
44503
|
+
exports.default = "2.17.2";
|
44502
44504
|
});
|
44503
44505
|
enifed('node-module', ['exports'], function(_exports) {
|
44504
44506
|
var IS_NODE = typeof module === 'object' && typeof module.require === 'function';
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ember-source",
|
3
|
-
"version": "2.17.
|
3
|
+
"version": "2.17.2",
|
4
4
|
"description": "A JavaScript framework for creating ambitious web applications",
|
5
5
|
"keywords": [
|
6
6
|
"ember-addon"
|
@@ -124,5 +124,8 @@
|
|
124
124
|
},
|
125
125
|
"ember-addon": {
|
126
126
|
"after": "ember-cli-legacy-blueprints"
|
127
|
+
},
|
128
|
+
"publishConfig": {
|
129
|
+
"tag": "old"
|
127
130
|
}
|
128
131
|
}
|