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 */
@@ -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 */
@@ -2845,7 +2845,7 @@ var define, require;
2845
2845
  }, Symbol.toStringTag, { value: 'Module' });
2846
2846
 
2847
2847
  // this file gets replaced with the real value during the build
2848
- const Version = '6.12.0-beta.1';
2848
+ const Version = '6.12.0-beta.3';
2849
2849
 
2850
2850
  const emberVersion = /*#__PURE__*/Object.defineProperty({
2851
2851
  __proto__: null,
@@ -43851,7 +43851,7 @@ var define, require;
43851
43851
  nextSibling: null
43852
43852
  }), layout, dynamicScope);
43853
43853
  let result = this.result = iterator.sync();
43854
- associateDestroyableChild(owner, result);
43854
+ associateDestroyableChild(this, result);
43855
43855
  this.render = errorLoopTransaction(() => {
43856
43856
  if (isDestroying(result) || isDestroyed(result)) return;
43857
43857
  return result.rerender({
@@ -46037,8 +46037,6 @@ var define, require;
46037
46037
  let handleTransitionReject = error => {
46038
46038
  if (error.error && error.error instanceof Error) {
46039
46039
  throw error.error;
46040
- } else if (error.name === 'TransitionAborted' && router._routerMicrolib.activeTransition) {
46041
- return router._routerMicrolib.activeTransition.then(handleTransitionResolve, handleTransitionReject);
46042
46040
  } else if (error.name === 'TransitionAborted') {
46043
46041
  throw new Error(error.message);
46044
46042
  } else {
@@ -46050,7 +46048,7 @@ var define, require;
46050
46048
  location.setURL(url);
46051
46049
 
46052
46050
  // getURL returns the set url with the rootURL stripped off
46053
- return router.handleURL(location.getURL()).then(handleTransitionResolve, handleTransitionReject);
46051
+ return router.handleURL(location.getURL()).followRedirects().then(handleTransitionResolve, handleTransitionReject);
46054
46052
  }
46055
46053
  willDestroy() {
46056
46054
  super.willDestroy();