ember-source 4.5.0-alpha.3 → 4.5.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.
@@ -5,5 +5,5 @@
5
5
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
6
6
  * @license Licensed under MIT license
7
7
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
8
- * @version 4.5.0-alpha.3
8
+ * @version 4.5.0-alpha.4
9
9
  */
@@ -3711,6 +3711,12 @@ function toBool(predicate) {
3711
3711
  // Setup global context
3712
3712
 
3713
3713
  setGlobalContext({
3714
+ FEATURES: {
3715
+ DEFAULT_HELPER_MANAGER: Boolean(true
3716
+ /* EMBER_DEFAULT_HELPER_MANAGER */
3717
+ )
3718
+ },
3719
+
3714
3720
  scheduleRevalidate() {
3715
3721
  _backburner.ensureInstance();
3716
3722
  },
@@ -13,7 +13,8 @@ import { ENV } from '@ember/-internals/environment';
13
13
  export const DEFAULT_FEATURES = {
14
14
  EMBER_LIBRARIES_ISREGISTERED: null,
15
15
  EMBER_IMPROVED_INSTRUMENTATION: null,
16
- EMBER_UNIQUE_ID_HELPER: true
16
+ EMBER_UNIQUE_ID_HELPER: true,
17
+ EMBER_DEFAULT_HELPER_MANAGER: true
17
18
  };
18
19
  /**
19
20
  The hash of enabled Canary features. Add to this, any canary features
@@ -64,4 +65,5 @@ function featureValue(value) {
64
65
 
65
66
  export const EMBER_LIBRARIES_ISREGISTERED = featureValue(FEATURES.EMBER_LIBRARIES_ISREGISTERED);
66
67
  export const EMBER_IMPROVED_INSTRUMENTATION = featureValue(FEATURES.EMBER_IMPROVED_INSTRUMENTATION);
67
- export const EMBER_UNIQUE_ID_HELPER = featureValue(FEATURES.EMBER_UNIQUE_ID_HELPER);
68
+ export const EMBER_UNIQUE_ID_HELPER = featureValue(FEATURES.EMBER_UNIQUE_ID_HELPER);
69
+ export const EMBER_DEFAULT_HELPER_MANAGER = featureValue(FEATURES.EMBER_DEFAULT_HELPER_MANAGER);
@@ -1 +1 @@
1
- export default "4.5.0-alpha.3";
1
+ export default "4.5.0-alpha.4";
package/docs/data.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "The Ember API",
4
4
  "description": "The Ember API: a framework for building ambitious web applications",
5
5
  "url": "https://emberjs.com/",
6
- "version": "4.5.0-alpha.3"
6
+ "version": "4.5.0-alpha.4"
7
7
  },
8
8
  "files": {
9
9
  "node_modules/rsvp/lib/rsvp/promise/all.js": {
@@ -2085,7 +2085,7 @@
2085
2085
  "namespaces": {},
2086
2086
  "tag": "module",
2087
2087
  "file": "packages/@ember/canary-features/index.ts",
2088
- "line": 20,
2088
+ "line": 21,
2089
2089
  "description": "Set `EmberENV.FEATURES` in your application's `config/environment.js` file\nto enable canary features in your application.\n\nSee the [feature flag guide](https://guides.emberjs.com/release/configuring-ember/feature-flags/)\nfor more details.",
2090
2090
  "access": "public",
2091
2091
  "tagname": ""
@@ -3560,7 +3560,7 @@
3560
3560
  "module": "@ember/canary-features",
3561
3561
  "namespace": "",
3562
3562
  "file": "packages/@ember/canary-features/index.ts",
3563
- "line": 20,
3563
+ "line": 21,
3564
3564
  "description": "The hash of enabled Canary features. Add to this, any canary features\nbefore creating your application.",
3565
3565
  "static": 1,
3566
3566
  "since": "1.1.0",
@@ -15256,7 +15256,7 @@
15256
15256
  },
15257
15257
  {
15258
15258
  "file": "packages/@ember/canary-features/index.ts",
15259
- "line": 31,
15259
+ "line": 32,
15260
15260
  "description": "Determine whether the specified `feature` is enabled. Used by Ember's\nbuild tools to exclude experimental features from beta/stable builds.\n\nYou can define the following configuration options:\n\n* `EmberENV.ENABLE_OPTIONAL_FEATURES` - enable any features that have not been explicitly\n enabled/disabled.",
15261
15261
  "itemtype": "method",
15262
15262
  "name": "isEnabled",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-source",
3
- "version": "4.5.0-alpha.3",
3
+ "version": "4.5.0-alpha.4",
4
4
  "description": "A JavaScript framework for creating ambitious web applications",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -52,7 +52,7 @@
52
52
  "@babel/helper-module-imports": "^7.16.7",
53
53
  "@babel/plugin-transform-block-scoping": "^7.16.0",
54
54
  "@ember/edition-utils": "^1.2.0",
55
- "@glimmer/vm-babel-plugins": "0.83.1",
55
+ "@glimmer/vm-babel-plugins": "0.84.2",
56
56
  "babel-plugin-debug-macros": "^0.3.4",
57
57
  "babel-plugin-filter-imports": "^4.0.0",
58
58
  "broccoli-concat": "^4.2.5",
@@ -78,19 +78,19 @@
78
78
  },
79
79
  "devDependencies": {
80
80
  "@babel/preset-env": "^7.16.11",
81
- "@glimmer/compiler": "0.84.0",
82
- "@glimmer/destroyable": "0.83.1",
81
+ "@glimmer/compiler": "0.84.2",
82
+ "@glimmer/destroyable": "0.84.2",
83
83
  "@glimmer/env": "^0.1.7",
84
- "@glimmer/global-context": "0.83.1",
85
- "@glimmer/interfaces": "0.83.1",
86
- "@glimmer/manager": "0.83.1",
87
- "@glimmer/node": "0.83.1",
88
- "@glimmer/opcode-compiler": "0.83.1",
89
- "@glimmer/owner": "0.84.0",
90
- "@glimmer/program": "0.83.1",
91
- "@glimmer/reference": "0.83.1",
92
- "@glimmer/runtime": "0.83.1",
93
- "@glimmer/validator": "0.83.1",
84
+ "@glimmer/global-context": "0.84.2",
85
+ "@glimmer/interfaces": "0.84.2",
86
+ "@glimmer/manager": "0.84.2",
87
+ "@glimmer/node": "0.84.2",
88
+ "@glimmer/opcode-compiler": "0.84.2",
89
+ "@glimmer/owner": "0.84.2",
90
+ "@glimmer/program": "0.84.2",
91
+ "@glimmer/reference": "0.84.2",
92
+ "@glimmer/runtime": "0.84.2",
93
+ "@glimmer/validator": "0.84.2",
94
94
  "@simple-dom/document": "^1.4.0",
95
95
  "@types/qunit": "^2.11.3",
96
96
  "@types/rsvp": "^4.0.4",
@@ -159,7 +159,7 @@
159
159
  "ember-addon": {
160
160
  "after": "ember-cli-legacy-blueprints"
161
161
  },
162
- "_originalVersion": "4.5.0-alpha.3",
162
+ "_originalVersion": "4.5.0-alpha.4",
163
163
  "_versionPreviouslyCalculated": true,
164
164
  "publishConfig": {
165
165
  "tag": "alpha"