ember-source 6.8.3 → 6.8.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,7 +5,7 @@
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 6.8.3
8
+ * @version 6.8.4
9
9
  */
10
10
  /* eslint-disable no-var */
11
11
  /* globals global globalThis self */
@@ -5,7 +5,7 @@
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 6.8.3
8
+ * @version 6.8.4
9
9
  */
10
10
  /* eslint-disable no-var */
11
11
  /* globals global globalThis self */
@@ -2846,7 +2846,7 @@ var define, require;
2846
2846
  }, Symbol.toStringTag, { value: 'Module' });
2847
2847
 
2848
2848
  // this file gets replaced with the real value during the build
2849
- const Version = '6.8.3';
2849
+ const Version = '6.8.4';
2850
2850
 
2851
2851
  const emberVersion = /*#__PURE__*/Object.defineProperty({
2852
2852
  __proto__: null,
@@ -39497,7 +39497,7 @@ var define, require;
39497
39497
  nextSibling: null
39498
39498
  }), layout, dynamicScope);
39499
39499
  let result = this.result = iterator.sync();
39500
- associateDestroyableChild(owner, result);
39500
+ associateDestroyableChild(this, result);
39501
39501
  this.render = errorLoopTransaction(() => {
39502
39502
  if (isDestroying(result) || isDestroyed(result)) return;
39503
39503
  return result.rerender({
@@ -41630,8 +41630,6 @@ var define, require;
41630
41630
  let handleTransitionReject = error => {
41631
41631
  if (error.error && error.error instanceof Error) {
41632
41632
  throw error.error;
41633
- } else if (error.name === 'TransitionAborted' && router._routerMicrolib.activeTransition) {
41634
- return router._routerMicrolib.activeTransition.then(handleTransitionResolve, handleTransitionReject);
41635
41633
  } else if (error.name === 'TransitionAborted') {
41636
41634
  throw new Error(error.message);
41637
41635
  } else {
@@ -41643,7 +41641,7 @@ var define, require;
41643
41641
  location.setURL(url);
41644
41642
 
41645
41643
  // getURL returns the set url with the rootURL stripped off
41646
- return router.handleURL(location.getURL()).then(handleTransitionResolve, handleTransitionReject);
41644
+ return router.handleURL(location.getURL()).followRedirects().then(handleTransitionResolve, handleTransitionReject);
41647
41645
  }
41648
41646
  willDestroy() {
41649
41647
  super.willDestroy();