ember-source 5.5.0-beta.1 → 5.5.0
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/dependencies/backburner.js.js +1 -1
- package/dist/ember-template-compiler.js +2 -2
- package/dist/ember-template-compiler.map +1 -1
- package/dist/ember-testing.js +1 -1
- package/dist/ember-testing.map +1 -1
- package/dist/ember.debug.js +19 -3
- package/dist/ember.debug.map +1 -1
- package/dist/header/license.js +1 -1
- package/dist/packages/@ember/-internals/glimmer/index.js +16 -0
- package/dist/packages/ember/version.js +1 -1
- package/docs/data.json +1 -1
- package/package.json +5 -8
package/dist/header/license.js
CHANGED
|
@@ -4241,6 +4241,22 @@ function stateFor(ref, outlet) {
|
|
|
4241
4241
|
// and is no longer considered supported
|
|
4242
4242
|
if (isTemplateFactory(template)) {
|
|
4243
4243
|
template = template(render.owner);
|
|
4244
|
+
if (DEBUG) {
|
|
4245
|
+
let message = 'The `template` property of `OutletState` should be a ' + '`Template` rather than a `TemplateFactory`. This is known to be a ' + "problem in older versions of `@ember/test-helpers`. If you haven't " + 'done so already, try upgrading to the latest version.\n\n';
|
|
4246
|
+
if (template.result === 'ok' && typeof template.moduleName === 'string') {
|
|
4247
|
+
message += 'The offending template has a moduleName `' + template.moduleName + '`, which might be helpful for identifying ' + 'source of this issue.\n\n';
|
|
4248
|
+
}
|
|
4249
|
+
message += 'Please note that `OutletState` is a private API in Ember.js ' + "and not meant to be used outside of the framework's internal code.";
|
|
4250
|
+
deprecate(message, false, {
|
|
4251
|
+
id: 'outlet-state-template-factory',
|
|
4252
|
+
until: '5.9.0',
|
|
4253
|
+
for: 'ember-source',
|
|
4254
|
+
since: {
|
|
4255
|
+
available: '5.5.0',
|
|
4256
|
+
enabled: '5.5.0'
|
|
4257
|
+
}
|
|
4258
|
+
});
|
|
4259
|
+
}
|
|
4244
4260
|
}
|
|
4245
4261
|
return {
|
|
4246
4262
|
ref,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export default "5.5.0
|
|
1
|
+
export default "5.5.0";
|
package/docs/data.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-source",
|
|
3
|
-
"version": "5.5.0
|
|
3
|
+
"version": "5.5.0",
|
|
4
4
|
"description": "A JavaScript framework for creating ambitious web applications",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"@simple-dom/interface": "^1.4.0",
|
|
78
78
|
"babel-plugin-debug-macros": "^0.3.4",
|
|
79
79
|
"babel-plugin-filter-imports": "^4.0.0",
|
|
80
|
-
"backburner.js": "^2.
|
|
80
|
+
"backburner.js": "^2.8.0",
|
|
81
81
|
"broccoli-concat": "^4.2.5",
|
|
82
82
|
"broccoli-debug": "^0.6.4",
|
|
83
83
|
"broccoli-file-creator": "^2.1.1",
|
|
@@ -197,9 +197,6 @@
|
|
|
197
197
|
"node": "16.20.0",
|
|
198
198
|
"pnpm": "8.7.6"
|
|
199
199
|
},
|
|
200
|
-
"_originalVersion": "5.5.0
|
|
201
|
-
"_versionPreviouslyCalculated": true
|
|
202
|
-
|
|
203
|
-
"tag": "beta"
|
|
204
|
-
}
|
|
205
|
-
}
|
|
200
|
+
"_originalVersion": "5.5.0",
|
|
201
|
+
"_versionPreviouslyCalculated": true
|
|
202
|
+
}
|