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.
@@ -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 5.5.0-beta.1
8
+ * @version 5.5.0
9
9
  */
@@ -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-beta.1";
1
+ export default "5.5.0";
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": "5.5.0-beta.1"
6
+ "version": "5.5.0"
7
7
  },
8
8
  "files": {
9
9
  "node_modules/rsvp/lib/rsvp/promise/all.js": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-source",
3
- "version": "5.5.0-beta.1",
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.7.0",
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-beta.1",
201
- "_versionPreviouslyCalculated": true,
202
- "publishConfig": {
203
- "tag": "beta"
204
- }
205
- }
200
+ "_originalVersion": "5.5.0",
201
+ "_versionPreviouslyCalculated": true
202
+ }