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 */
@@ -2116,7 +2116,7 @@ var define, require;
2116
2116
  }, Symbol.toStringTag, { value: 'Module' });
2117
2117
 
2118
2118
  // this file gets replaced with the real value during the build
2119
- const Version = '6.8.3';
2119
+ const Version = '6.8.4';
2120
2120
 
2121
2121
  const emberVersion = /*#__PURE__*/Object.defineProperty({
2122
2122
  __proto__: null,
@@ -37046,7 +37046,7 @@ var define, require;
37046
37046
  nextSibling: null
37047
37047
  }), layout, dynamicScope);
37048
37048
  let result = this.result = iterator.sync();
37049
- associateDestroyableChild(owner, result);
37049
+ associateDestroyableChild(this, result);
37050
37050
  this.render = errorLoopTransaction(() => {
37051
37051
  if (isDestroying(result) || isDestroyed(result)) return;
37052
37052
  return result.rerender({
@@ -39159,8 +39159,6 @@ var define, require;
39159
39159
  let handleTransitionReject = error => {
39160
39160
  if (error.error && error.error instanceof Error) {
39161
39161
  throw error.error;
39162
- } else if (error.name === 'TransitionAborted' && router._routerMicrolib.activeTransition) {
39163
- return router._routerMicrolib.activeTransition.then(handleTransitionResolve, handleTransitionReject);
39164
39162
  } else if (error.name === 'TransitionAborted') {
39165
39163
  throw new Error(error.message);
39166
39164
  } else {
@@ -39171,7 +39169,7 @@ var define, require;
39171
39169
  location.setURL(url);
39172
39170
 
39173
39171
  // getURL returns the set url with the rootURL stripped off
39174
- return router.handleURL(location.getURL()).then(handleTransitionResolve, handleTransitionReject);
39172
+ return router.handleURL(location.getURL()).followRedirects().then(handleTransitionResolve, handleTransitionReject);
39175
39173
  }
39176
39174
  willDestroy() {
39177
39175
  super.willDestroy();