ember-source 4.4.2 → 4.4.3

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/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Ember Changelog
2
2
 
3
+ ### v4.4.3 (October 12, 2022)
4
+
5
+ - [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Fix missing `RouteInfo` entries
6
+
3
7
  ### v4.4.2 (June 13, 2022)
4
8
 
5
9
  - [#20114](https://github.com/emberjs/ember.js/pull/20114) [BUGFIX] Fix generated import paths for test setup functions in addons
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.4.2",
2
+ "version": "4.4.3",
3
3
  "buildType": "tag",
4
- "SHA": "bbcf8477a15aa520a01ed092f09d5a596de5540a",
5
- "assetPath": "/tag/shas/bbcf8477a15aa520a01ed092f09d5a596de5540a.tgz"
4
+ "SHA": "c9f609b5dee9fda3956254d0b98eab7bf9554a25",
5
+ "assetPath": "/tag/shas/c9f609b5dee9fda3956254d0b98eab7bf9554a25.tgz"
6
6
  }
@@ -655,7 +655,7 @@ class InternalRouteInfo {
655
655
  let resolved = new ResolvedRouteInfo(this.router, this.name, this.paramNames, params, this.route, context);
656
656
  if (cached !== undefined) {
657
657
  // SAFETY: This is potentially a bit risker, but for what we're doing, it should be ok.
658
- ROUTE_INFOS.set(this, cached);
658
+ ROUTE_INFOS.set(resolved, cached);
659
659
  }
660
660
  return resolved;
661
661
  }
@@ -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 4.4.2
9
+ * @version 4.4.3
10
10
  */
11
11
 
12
12
  /* eslint-disable no-var */
@@ -18732,7 +18732,7 @@ define("ember/version", ["exports"], function (_exports) {
18732
18732
  value: true
18733
18733
  });
18734
18734
  _exports.default = void 0;
18735
- var _default = "4.4.2";
18735
+ var _default = "4.4.3";
18736
18736
  _exports.default = _default;
18737
18737
  });
18738
18738
  define("simple-html-tokenizer", ["exports"], function (_exports) {