ember-source 4.4.0-alpha.4 → 4.4.0-alpha.5
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/build-metadata.json +3 -3
- package/dist/ember-template-compiler.js +9 -5
- package/dist/ember-template-compiler.map +1 -1
- package/dist/ember-testing.js +7 -3
- package/dist/ember-testing.map +1 -1
- package/dist/ember.debug.js +13 -6
- package/dist/ember.debug.map +1 -1
- package/dist/header/license.js +1 -1
- package/dist/packages/@ember/-internals/glimmer/index.js +5 -1
- package/dist/packages/@ember/canary-features/index.js +1 -1
- package/dist/packages/@ember/debug/lib/deprecate.js +6 -2
- package/dist/packages/ember/version.js +1 -1
- package/docs/data.json +2 -2
- package/package.json +4 -4
package/dist/header/license.js
CHANGED
|
@@ -4301,7 +4301,7 @@ var unbound = internalHelper(({
|
|
|
4301
4301
|
/**
|
|
4302
4302
|
@module ember
|
|
4303
4303
|
*/
|
|
4304
|
-
internalHelper(() => {
|
|
4304
|
+
var uniqueId = internalHelper(() => {
|
|
4305
4305
|
return createConstRef(uniqueId$1(), 'unique-id');
|
|
4306
4306
|
}); // From https://gist.github.com/selfish/fef2c0ba6cdfe07af76e64cecd74888b
|
|
4307
4307
|
//
|
|
@@ -4989,6 +4989,10 @@ const BUILTIN_HELPERS = Object.assign(Object.assign({}, BUILTIN_KEYWORD_HELPERS)
|
|
|
4989
4989
|
hash
|
|
4990
4990
|
});
|
|
4991
4991
|
|
|
4992
|
+
{
|
|
4993
|
+
BUILTIN_HELPERS['unique-id'] = uniqueId;
|
|
4994
|
+
}
|
|
4995
|
+
|
|
4992
4996
|
const BUILTIN_KEYWORD_MODIFIERS = {
|
|
4993
4997
|
action: actionModifier
|
|
4994
4998
|
};
|
|
@@ -15,7 +15,7 @@ export const DEFAULT_FEATURES = {
|
|
|
15
15
|
EMBER_IMPROVED_INSTRUMENTATION: null,
|
|
16
16
|
EMBER_ROUTING_ROUTER_SERVICE_REFRESH: true,
|
|
17
17
|
EMBER_CACHED: true,
|
|
18
|
-
EMBER_UNIQUE_ID_HELPER:
|
|
18
|
+
EMBER_UNIQUE_ID_HELPER: true
|
|
19
19
|
};
|
|
20
20
|
/**
|
|
21
21
|
The hash of enabled Canary features. Add to this, any canary features
|
|
@@ -63,11 +63,15 @@ if (DEBUG) {
|
|
|
63
63
|
let formatMessage = function formatMessage(_message, options) {
|
|
64
64
|
let message = _message;
|
|
65
65
|
|
|
66
|
-
if (options
|
|
66
|
+
if (options === null || options === void 0 ? void 0 : options.id) {
|
|
67
67
|
message = message + ` [deprecation id: ${options.id}]`;
|
|
68
68
|
}
|
|
69
69
|
|
|
70
|
-
if (options
|
|
70
|
+
if (options === null || options === void 0 ? void 0 : options.until) {
|
|
71
|
+
message = message + ` This will be removed in Ember ${options.until}.`;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if (options === null || options === void 0 ? void 0 : options.url) {
|
|
71
75
|
message += ` See ${options.url} for more details.`;
|
|
72
76
|
}
|
|
73
77
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default "4.4.0-alpha.
|
|
1
|
+
export default "4.4.0-alpha.5";
|
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.4.0-alpha.
|
|
6
|
+
"version": "4.4.0-alpha.5"
|
|
7
7
|
},
|
|
8
8
|
"files": {
|
|
9
9
|
"node_modules/rsvp/lib/rsvp/promise/all.js": {
|
|
@@ -15686,7 +15686,7 @@
|
|
|
15686
15686
|
},
|
|
15687
15687
|
{
|
|
15688
15688
|
"file": "packages/@ember/debug/lib/deprecate.ts",
|
|
15689
|
-
"line":
|
|
15689
|
+
"line": 181,
|
|
15690
15690
|
"description": "Display a deprecation warning with the provided message and a stack trace\n(Chrome and Firefox only).\n\n* In a production build, this method is defined as an empty function (NOP).\nUses of this method in Ember itself are stripped from the ember.prod.js build.",
|
|
15691
15691
|
"itemtype": "method",
|
|
15692
15692
|
"name": "deprecate",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-source",
|
|
3
|
-
"version": "4.4.0-alpha.
|
|
3
|
+
"version": "4.4.0-alpha.5",
|
|
4
4
|
"description": "A JavaScript framework for creating ambitious web applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
"mocha": "^9.2.0",
|
|
138
138
|
"npm-run-all": "^4.1.5",
|
|
139
139
|
"prettier": "^2.1.2",
|
|
140
|
-
"puppeteer": "^
|
|
140
|
+
"puppeteer": "^13.4.1",
|
|
141
141
|
"qunit": "^2.14.0",
|
|
142
142
|
"rollup-plugin-commonjs": "^9.3.4",
|
|
143
143
|
"rollup-plugin-node-resolve": "^4.2.4",
|
|
@@ -148,7 +148,7 @@
|
|
|
148
148
|
"simple-dom": "^1.4.0",
|
|
149
149
|
"testem": "^3.6.0",
|
|
150
150
|
"testem-failure-only-reporter": "^1.0.0",
|
|
151
|
-
"typescript": "
|
|
151
|
+
"typescript": "~4.6.0"
|
|
152
152
|
},
|
|
153
153
|
"engines": {
|
|
154
154
|
"node": ">= 12.*"
|
|
@@ -156,7 +156,7 @@
|
|
|
156
156
|
"ember-addon": {
|
|
157
157
|
"after": "ember-cli-legacy-blueprints"
|
|
158
158
|
},
|
|
159
|
-
"_originalVersion": "4.4.0-alpha.
|
|
159
|
+
"_originalVersion": "4.4.0-alpha.5",
|
|
160
160
|
"_versionPreviouslyCalculated": true,
|
|
161
161
|
"publishConfig": {
|
|
162
162
|
"tag": "alpha"
|