ember-source 5.9.0-alpha.2 → 5.9.0-alpha.4

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "5.9.0-alpha.2",
2
+ "version": "5.9.0-alpha.4",
3
3
  "buildType": "tag",
4
- "SHA": "463a0671f788000883136c32402eaee2af831d12",
5
- "assetPath": "/tag/shas/463a0671f788000883136c32402eaee2af831d12.tgz"
4
+ "SHA": "ffd730bf165823c8fe9fe562ea3cde5d6a4ca76d",
5
+ "assetPath": "/tag/shas/ffd730bf165823c8fe9fe562ea3cde5d6a4ca76d.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 5.9.0-alpha.2
9
+ * @version 5.9.0-alpha.4
10
10
  */
11
11
 
12
12
  /* eslint-disable no-var */
@@ -270,6 +270,28 @@ define("@ember/-internals/environment/index", ["exports"], function (_exports) {
270
270
  @private
271
271
  */
272
272
  _DEBUG_RENDER_TREE: true /* DEBUG */,
273
+ /**
274
+ Whether to force all deprecations to be enabled. This is used internally by
275
+ Ember to enable deprecations in tests. It is not intended to be set in
276
+ projects.
277
+ @property _ALL_DEPRECATIONS_ENABLED
278
+ @for EmberENV
279
+ @type Boolean
280
+ @default false
281
+ @private
282
+ */
283
+ _ALL_DEPRECATIONS_ENABLED: false,
284
+ /**
285
+ Override the version of ember-source used to determine when deprecations "break".
286
+ This is used internally by Ember to test with deprecated features "removed".
287
+ This is never intended to be set by projects.
288
+ @property _OVERRIDE_DEPRECATION_VERSION
289
+ @for EmberENV
290
+ @type string | null
291
+ @default null
292
+ @private
293
+ */
294
+ _OVERRIDE_DEPRECATION_VERSION: null,
273
295
  /**
274
296
  Whether the app defaults to using async observers.
275
297
  This is not intended to be set directly, as the implementation may change in
@@ -317,6 +339,8 @@ define("@ember/-internals/environment/index", ["exports"], function (_exports) {
317
339
  ENV[flag] = EmberENV[flag] !== false;
318
340
  } else if (defaultValue === false) {
319
341
  ENV[flag] = EmberENV[flag] === true;
342
+ } else {
343
+ ENV[flag] = EmberENV[flag];
320
344
  }
321
345
  }
322
346
  let {
@@ -16577,7 +16601,7 @@ define("ember/version", ["exports"], function (_exports) {
16577
16601
  value: true
16578
16602
  });
16579
16603
  _exports.default = void 0;
16580
- var _default = _exports.default = "5.9.0-alpha.2";
16604
+ var _default = _exports.default = "5.9.0-alpha.4";
16581
16605
  });
16582
16606
  define("simple-html-tokenizer", ["exports"], function (_exports) {
16583
16607
  "use strict";