ember-source 6.12.0-beta.1 → 6.12.0-beta.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.
@@ -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.12.0-beta.1
8
+ * @version 6.12.0-beta.3
9
9
  */
10
10
  /* eslint-disable no-var */
11
11
  /* globals global globalThis self */
@@ -2115,7 +2115,7 @@ var define, require;
2115
2115
  }, Symbol.toStringTag, { value: 'Module' });
2116
2116
 
2117
2117
  // this file gets replaced with the real value during the build
2118
- const Version = '6.12.0-beta.1';
2118
+ const Version = '6.12.0-beta.3';
2119
2119
 
2120
2120
  const emberVersion = /*#__PURE__*/Object.defineProperty({
2121
2121
  __proto__: null,
@@ -41195,7 +41195,7 @@ var define, require;
41195
41195
  nextSibling: null
41196
41196
  }), layout, dynamicScope);
41197
41197
  let result = this.result = iterator.sync();
41198
- associateDestroyableChild(owner, result);
41198
+ associateDestroyableChild(this, result);
41199
41199
  this.render = errorLoopTransaction(() => {
41200
41200
  if (isDestroying(result) || isDestroyed(result)) return;
41201
41201
  return result.rerender({
@@ -43361,8 +43361,6 @@ var define, require;
43361
43361
  let handleTransitionReject = error => {
43362
43362
  if (error.error && error.error instanceof Error) {
43363
43363
  throw error.error;
43364
- } else if (error.name === 'TransitionAborted' && router._routerMicrolib.activeTransition) {
43365
- return router._routerMicrolib.activeTransition.then(handleTransitionResolve, handleTransitionReject);
43366
43364
  } else if (error.name === 'TransitionAborted') {
43367
43365
  throw new Error(error.message);
43368
43366
  } else {
@@ -43373,7 +43371,7 @@ var define, require;
43373
43371
  location.setURL(url);
43374
43372
 
43375
43373
  // getURL returns the set url with the rootURL stripped off
43376
- return router.handleURL(location.getURL()).then(handleTransitionResolve, handleTransitionReject);
43374
+ return router.handleURL(location.getURL()).followRedirects().then(handleTransitionResolve, handleTransitionReject);
43377
43375
  }
43378
43376
  willDestroy() {
43379
43377
  super.willDestroy();