ember-source 4.3.0-beta.1 → 4.3.0-beta.2

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,5 +5,5 @@
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 4.3.0-beta.1
8
+ * @version 4.3.0-beta.2
9
9
  */
@@ -195,7 +195,6 @@ class RouterService extends Service.extend(Evented) {
195
195
 
196
196
  let transition = this._router._doTransition(routeName, models, queryParams, true);
197
197
 
198
- transition['_keepDefaultQueryParamValues'] = true;
199
198
  return transition;
200
199
  }
201
200
  /**
@@ -366,19 +365,26 @@ class RouterService extends Service.extend(Evented) {
366
365
  let hasQueryParams = Object.keys(queryParams).length > 0;
367
366
 
368
367
  if (hasQueryParams) {
369
- queryParams = Object.assign({}, queryParams);
370
-
371
- this._router._prepareQueryParams( // UNSAFE: casting `routeName as string` here encodes the existing
368
+ // UNSAFE: casting `routeName as string` here encodes the existing
372
369
  // assumption but may be wrong: `extractRouteArgs` correctly returns it
373
370
  // as `string | undefined`. There may be bugs if `_prepareQueryParams`
374
371
  // does not correctly account for `undefined` values for `routeName`.
375
372
  // Spoilers: under the hood this currently uses router.js APIs which
376
373
  // *do not* account for this being `undefined`.
377
- routeName, models, queryParams, true
374
+ let targetRouteName = routeName;
375
+ queryParams = Object.assign({}, queryParams);
376
+
377
+ this._router._prepareQueryParams(targetRouteName, models, queryParams, true
378
+ /* fromRouterService */
379
+ );
380
+
381
+ let currentQueryParams = Object.assign({}, routerMicrolib.state.queryParams);
382
+
383
+ this._router._prepareQueryParams(targetRouteName, models, currentQueryParams, true
378
384
  /* fromRouterService */
379
385
  );
380
386
 
381
- return shallowEqual(queryParams, routerMicrolib.state.queryParams);
387
+ return shallowEqual(queryParams, currentQueryParams);
382
388
  }
383
389
 
384
390
  return true;
@@ -1656,7 +1656,7 @@ Route.reopen({
1656
1656
  qp.serializedValue = svalue;
1657
1657
  let thisQueryParamHasDefaultValue = qp.serializedDefaultValue === svalue;
1658
1658
 
1659
- if (!thisQueryParamHasDefaultValue || transition._keepDefaultQueryParamValues) {
1659
+ if (!thisQueryParamHasDefaultValue) {
1660
1660
  finalParams.push({
1661
1661
  value: svalue,
1662
1662
  visible: true,
@@ -916,7 +916,7 @@ class EmberRouter extends EmberObject.extend(Evented) {
916
916
  }
917
917
  }
918
918
 
919
- _doTransition(_targetRouteName, models, _queryParams, _keepDefaultQueryParamValues) {
919
+ _doTransition(_targetRouteName, models, _queryParams, _fromRouterService) {
920
920
  let targetRouteName = _targetRouteName || getActiveTargetName(this._routerMicrolib);
921
921
 
922
922
  assert(`The route ${targetRouteName} was not found`, Boolean(targetRouteName) && this._routerMicrolib.hasRoute(targetRouteName));
@@ -927,7 +927,7 @@ class EmberRouter extends EmberObject.extend(Evented) {
927
927
 
928
928
  Object.assign(queryParams, _queryParams);
929
929
 
930
- this._prepareQueryParams(targetRouteName, models, queryParams, Boolean(_keepDefaultQueryParamValues));
930
+ this._prepareQueryParams(targetRouteName, models, queryParams, Boolean(_fromRouterService));
931
931
 
932
932
  let transition = this._routerMicrolib.transitionTo(targetRouteName, ...models, {
933
933
  queryParams
@@ -1 +1 @@
1
- export default "4.3.0-beta.1";
1
+ export default "4.3.0-beta.2";
package/docs/data.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "name": "The Ember API",
4
4
  "description": "The Ember API: a framework for building ambitious web applications",
5
5
  "url": "https://emberjs.com/",
6
- "version": "4.3.0-beta.1"
6
+ "version": "4.3.0-beta.2"
7
7
  },
8
8
  "files": {
9
9
  "node_modules/rsvp/lib/rsvp/promise/all.js": {
@@ -8579,7 +8579,7 @@
8579
8579
  },
8580
8580
  {
8581
8581
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8582
- "line": 137,
8582
+ "line": 136,
8583
8583
  "description": "Similar to `transitionTo`, but instead of adding the destination to the browser's URL history,\nit replaces the entry for the current route.\nWhen the user clicks the \"back\" button in the browser, there will be fewer steps.\nThis is most commonly used to manage redirects in a way that does not cause confusing additions\nto the user's browsing history.\n\nCalling `replaceWith` from the Router service will cause default query parameter values to be included in the URL.\nThis behavior is different from calling `replaceWith` on a route.\nSee the [Router Service RFC](https://github.com/emberjs/rfcs/blob/master/text/0095-router-service.md#query-parameter-semantics) for more info.\n\nUsage example:\n\n```app/routes/application.js\nimport Route from '@ember/routing/route';\n\nexport default class extends Route {\n beforeModel() {\n if (!authorized()){\n this.replaceWith('unauthorized');\n }\n }\n});\n```",
8584
8584
  "itemtype": "method",
8585
8585
  "name": "replaceWith",
@@ -8612,7 +8612,7 @@
8612
8612
  },
8613
8613
  {
8614
8614
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8615
- "line": 176,
8615
+ "line": 175,
8616
8616
  "description": "Generate a URL based on the supplied route name and optionally a model. The\nURL is returned as a string that can be used for any purpose.\n\nIn this example, the URL for the `author.books` route for a given author\nis copied to the clipboard.\n\n```app/templates/application.hbs\n<CopyLink @author={{hash id=\"tomster\" name=\"Tomster\"}} />\n```\n\n```app/components/copy-link.js\nimport Component from '@glimmer/component';\nimport { service } from '@ember/service';\nimport { action } from '@ember/object';\n\nexport default class CopyLinkComponent extends Component {\n @service router;\n @service clipboard;\n\n @action\n copyBooksURL() {\n if (this.author) {\n const url = this.router.urlFor('author.books', this.args.author);\n this.clipboard.set(url);\n // Clipboard now has /author/tomster/books\n }\n }\n}\n```\n\nJust like with `transitionTo` and `replaceWith`, `urlFor` can also handle\nquery parameters.\n\n```app/templates/application.hbs\n<CopyLink @author={{hash id=\"tomster\" name=\"Tomster\"}} />\n```\n\n```app/components/copy-link.js\nimport Component from '@glimmer/component';\nimport { service } from '@ember/service';\nimport { action } from '@ember/object';\n\nexport default class CopyLinkComponent extends Component {\n @service router;\n @service clipboard;\n\n @action\n copyOnlyEmberBooksURL() {\n if (this.author) {\n const url = this.router.urlFor('author.books', this.author, {\n queryParams: { filter: 'emberjs' }\n });\n this.clipboard.set(url);\n // Clipboard now has /author/tomster/books?filter=emberjs\n }\n }\n}\n```",
8617
8617
  "itemtype": "method",
8618
8618
  "name": "urlFor",
@@ -8645,7 +8645,7 @@
8645
8645
  },
8646
8646
  {
8647
8647
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8648
- "line": 249,
8648
+ "line": 248,
8649
8649
  "description": "Returns `true` if `routeName/models/queryParams` is the active route, where `models` and `queryParams` are optional.\nSee [model](api/ember/release/classes/Route/methods/model?anchor=model) and\n[queryParams](/api/ember/3.7/classes/Route/properties/queryParams?anchor=queryParams) for more information about these arguments.\n\nIn the following example, `isActive` will return `true` if the current route is `/posts`.\n\n```app/components/posts.js\nimport Component from '@glimmer/component';\nimport { service } from '@ember/service';\n\nexport default class extends Component {\n @service router;\n\n displayComments() {\n return this.router.isActive('posts');\n }\n});\n```\n\nThe next example includes a dynamic segment, and will return `true` if the current route is `/posts/1`,\nassuming the post has an id of 1:\n\n```app/components/posts.js\nimport Component from '@glimmer/component';\nimport { service } from '@ember/service';\n\nexport default class extends Component {\n @service router;\n\n displayComments(post) {\n return this.router.isActive('posts', post.id);\n }\n});\n```\n\nWhere `post.id` is the id of a specific post, which is represented in the route as /posts/[post.id].\nIf `post.id` is equal to 1, then isActive will return true if the current route is /posts/1, and false if the route is anything else.",
8650
8650
  "itemtype": "method",
8651
8651
  "name": "isActive",
@@ -8678,7 +8678,7 @@
8678
8678
  },
8679
8679
  {
8680
8680
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8681
- "line": 343,
8681
+ "line": 352,
8682
8682
  "description": "Takes a string URL and returns a `RouteInfo` for the leafmost route represented\nby the URL. Returns `null` if the URL is not recognized. This method expects to\nreceive the actual URL as seen by the browser including the app's `rootURL`.\n\nSee [RouteInfo](/ember/release/classes/RouteInfo) for more info.\n\nIn the following example `recognize` is used to verify if a path belongs to our\napplication before transitioning to it.\n\n```\nimport Component from '@ember/component';\nimport { service } from '@ember/service';\n\nexport default class extends Component {\n @service router;\n path = '/';\n\n click() {\n if (this.router.recognize(this.path)) {\n this.router.transitionTo(this.path);\n }\n }\n}\n```",
8683
8683
  "itemtype": "method",
8684
8684
  "name": "recognize",
@@ -8700,7 +8700,7 @@
8700
8700
  },
8701
8701
  {
8702
8702
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8703
- "line": 384,
8703
+ "line": 393,
8704
8704
  "description": "Takes a string URL and returns a promise that resolves to a\n`RouteInfoWithAttributes` for the leafmost route represented by the URL.\nThe promise rejects if the URL is not recognized or an unhandled exception\nis encountered. This method expects to receive the actual URL as seen by\nthe browser including the app's `rootURL`.",
8705
8705
  "itemtype": "method",
8706
8706
  "name": "recognizeAndLoad",
@@ -8722,7 +8722,7 @@
8722
8722
  },
8723
8723
  {
8724
8724
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8725
- "line": 406,
8725
+ "line": 415,
8726
8726
  "description": "The `routeWillChange` event is fired at the beginning of any\nattempted transition with a `Transition` object as the sole\nargument. This action can be used for aborting, redirecting,\nor decorating the transition from the currently active routes.\n\nA good example is preventing navigation when a form is\nhalf-filled out:\n\n```app/routes/contact-form.js\nimport Route from '@ember/routing';\nimport { service } from '@ember/service';\n\nexport default class extends Route {\n @service router;\n\n constructor() {\n super(...arguments);\n\n this.router.on('routeWillChange', (transition) => {\n if (!transition.to.find(route => route.name === this.routeName)) {\n alert(\"Please save or cancel your changes.\");\n transition.abort();\n }\n })\n }\n}\n```\n\nThe `routeWillChange` event fires whenever a new route is chosen as the desired target of a transition. This includes `transitionTo`, `replaceWith`, all redirection for any reason including error handling, and abort. Aborting implies changing the desired target back to where you already were. Once a transition has completed, `routeDidChange` fires.",
8727
8727
  "itemtype": "event",
8728
8728
  "name": "routeWillChange",
@@ -8740,7 +8740,7 @@
8740
8740
  },
8741
8741
  {
8742
8742
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8743
- "line": 442,
8743
+ "line": 451,
8744
8744
  "description": "The `routeDidChange` event only fires once a transition has settled.\nThis includes aborts and error substates. Like the `routeWillChange` event\nit receives a Transition as the sole argument.\n\nA good example is sending some analytics when the route has transitioned:\n\n```app/routes/contact-form.js\nimport Route from '@ember/routing';\nimport { service } from '@ember/service';\n\nexport default class extends Route {\n @service router;\n\n constructor() {\n super(...arguments);\n\n this.router.on('routeDidChange', (transition) => {\n ga.send('pageView', {\n current: transition.to.name,\n from: transition.from.name\n });\n })\n }\n}\n```\n\n`routeDidChange` will be called after any `Route`'s\n[didTransition](/ember/release/classes/Route/events/didTransition?anchor=didTransition)\naction has been fired.\nThe updates of properties\n[currentURL](/ember/release/classes/RouterService/properties/currentURL?anchor=currentURL),\n[currentRouteName](/ember/release/classes/RouterService/properties/currentURL?anchor=currentRouteName)\nand\n[currentRoute](/ember/release/classes/RouterService/properties/currentURL?anchor=currentRoute)\nare completed at the time `routeDidChange` is called.",
8745
8745
  "itemtype": "event",
8746
8746
  "name": "routeDidChange",
@@ -8758,7 +8758,7 @@
8758
8758
  },
8759
8759
  {
8760
8760
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8761
- "line": 485,
8761
+ "line": 494,
8762
8762
  "description": "Refreshes all currently active routes, doing a full transition.\nIf a route name is provided and refers to a currently active route,\nit will refresh only that route and its descendents.\nReturns a promise that will be resolved once the refresh is complete.\nAll resetController, beforeModel, model, afterModel, redirect, and setupController\nhooks will be called again. You will get new data from the model hook.",
8763
8763
  "itemtype": "method",
8764
8764
  "name": "refresh",
@@ -8783,7 +8783,7 @@
8783
8783
  },
8784
8784
  {
8785
8785
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8786
- "line": 522,
8786
+ "line": 531,
8787
8787
  "description": "Name of the current route.\n\n This property represents the logical name of the route,\n which is comma separated.\n For the following router:\n\n ```app/router.js\n Router.map(function() {\n this.route('about');\n this.route('blog', function () {\n this.route('post', { path: ':post_id' });\n });\n });\n ```\n\n It will return:\n\n * `index` when you visit `/`\n * `about` when you visit `/about`\n * `blog.index` when you visit `/blog`\n * `blog.post` when you visit `/blog/some-post-id`",
8788
8788
  "itemtype": "property",
8789
8789
  "name": "currentRouteName",
@@ -8795,7 +8795,7 @@
8795
8795
  },
8796
8796
  {
8797
8797
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8798
- "line": 552,
8798
+ "line": 561,
8799
8799
  "description": "Current URL for the application.\n\n This property represents the URL path for this route.\n For the following router:\n\n ```app/router.js\n Router.map(function() {\n this.route('about');\n this.route('blog', function () {\n this.route('post', { path: ':post_id' });\n });\n });\n ```\n\n It will return:\n\n * `/` when you visit `/`\n * `/about` when you visit `/about`\n * `/blog` when you visit `/blog`\n * `/blog/some-post-id` when you visit `/blog/some-post-id`",
8800
8800
  "itemtype": "property",
8801
8801
  "name": "currentURL",
@@ -8807,7 +8807,7 @@
8807
8807
  },
8808
8808
  {
8809
8809
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8810
- "line": 581,
8810
+ "line": 590,
8811
8811
  "description": "The `location` property returns what implementation of the `location` API\nyour application is using, which determines what type of URL is being used.\n\nSee [Location](/ember/release/classes/Location) for more information.\n\nTo force a particular `location` API implementation to be used in your\napplication you can set a location type on your `config/environment`.\nFor example, to set the `history` type:\n\n```config/environment.js\n'use strict';\n\nmodule.exports = function(environment) {\n let ENV = {\n modulePrefix: 'router-service',\n environment,\n rootURL: '/',\n locationType: 'history',\n ...\n }\n}\n```\n\nThe following location types are available by default:\n`auto`, `hash`, `history`, `none`.\n\nSee [HashLocation](/ember/release/classes/HashLocation).\nSee [HistoryLocation](/ember/release/classes/HistoryLocation).\nSee [NoneLocation](/ember/release/classes/NoneLocation).\nSee [AutoLocation](/ember/release/classes/AutoLocation).",
8812
8812
  "itemtype": "property",
8813
8813
  "name": "location",
@@ -8822,7 +8822,7 @@
8822
8822
  },
8823
8823
  {
8824
8824
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8825
- "line": 621,
8825
+ "line": 630,
8826
8826
  "description": "The `rootURL` property represents the URL of the root of\nthe application, '/' by default.\nThis prefix is assumed on all routes defined on this app.\n\nIf you change the `rootURL` in your environment configuration\nlike so:\n\n```config/environment.js\n'use strict';\n\nmodule.exports = function(environment) {\n let ENV = {\n modulePrefix: 'router-service',\n environment,\n rootURL: '/my-root',\n …\n }\n]\n```\n\nThis property will return `/my-root`.",
8827
8827
  "itemtype": "property",
8828
8828
  "name": "rootURL",
@@ -8834,7 +8834,7 @@
8834
8834
  },
8835
8835
  {
8836
8836
  "file": "packages/@ember/-internals/routing/lib/services/router.ts",
8837
- "line": 651,
8837
+ "line": 660,
8838
8838
  "description": "The `currentRoute` property contains metadata about the current leaf route.\nIt returns a `RouteInfo` object that has information like the route name,\nparams, query params and more.\n\nSee [RouteInfo](/ember/release/classes/RouteInfo) for more info.\n\nThis property is guaranteed to change whenever a route transition\nhappens (even when that transition only changes parameters\nand doesn't change the active route).\n\nUsage example:\n```app/components/header.js\n import Component from '@glimmer/component';\n import { service } from '@ember/service';\n import { notEmpty } from '@ember/object/computed';\n\n export default class extends Component {\n @service router;\n\n @notEmpty('router.currentRoute.child') isChildRoute;\n });\n```",
8839
8839
  "itemtype": "property",
8840
8840
  "name": "currentRoute",
@@ -10481,7 +10481,7 @@
10481
10481
  },
10482
10482
  {
10483
10483
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10484
- "line": 1120,
10484
+ "line": 1115,
10485
10485
  "description": "Prepares the query params for a URL or Transition. Restores any undefined QP\nkeys/values, serializes all values, and then prunes any default values.",
10486
10486
  "access": "private",
10487
10487
  "tagname": "",
@@ -10518,7 +10518,7 @@
10518
10518
  },
10519
10519
  {
10520
10520
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10521
- "line": 1147,
10521
+ "line": 1142,
10522
10522
  "description": "Returns the meta information for the query params of a given route. This\nwill be overridden to allow support for lazy routes.",
10523
10523
  "access": "private",
10524
10524
  "tagname": "",
@@ -10540,7 +10540,7 @@
10540
10540
  },
10541
10541
  {
10542
10542
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10543
- "line": 1161,
10543
+ "line": 1156,
10544
10544
  "description": "Returns a merged query params meta object for a given set of routeInfos.\nUseful for knowing what query params are available for a given route hierarchy.",
10545
10545
  "access": "private",
10546
10546
  "tagname": "",
@@ -10562,7 +10562,7 @@
10562
10562
  },
10563
10563
  {
10564
10564
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10565
- "line": 1223,
10565
+ "line": 1218,
10566
10566
  "description": "Maps all query param keys to their fully scoped property name of the form\n`controllerName:propName`.",
10567
10567
  "access": "private",
10568
10568
  "tagname": "",
@@ -10594,7 +10594,7 @@
10594
10594
  },
10595
10595
  {
10596
10596
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10597
- "line": 1261,
10597
+ "line": 1256,
10598
10598
  "description": "Hydrates (adds/restores) any query params that have pre-existing values into\nthe given queryParams hash. This is what allows query params to be \"sticky\"\nand restore their last known values for their scope.",
10599
10599
  "access": "private",
10600
10600
  "tagname": "",
@@ -10621,7 +10621,7 @@
10621
10621
  },
10622
10622
  {
10623
10623
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10624
- "line": 1432,
10624
+ "line": 1427,
10625
10625
  "description": "Handles updating the paths and notifying any listeners of the URL\nchange.\n\nTriggers the router level `didTransition` hook.\n\nFor example, to notify google analytics when the route changes,\nyou could use this hook. (Note: requires also including GA scripts, etc.)\n\n```javascript\nimport config from './config/environment';\nimport EmberRouter from '@ember/routing/router';\nimport { service } from '@ember/service';\n\nlet Router = EmberRouter.extend({\n location: config.locationType,\n\n router: service(),\n\n didTransition: function() {\n this._super(...arguments);\n\n ga('send', 'pageview', {\n page: this.router.currentURL,\n title: this.router.currentRouteName,\n });\n }\n});\n```",
10626
10626
  "itemtype": "method",
10627
10627
  "name": "didTransition",
@@ -10633,7 +10633,7 @@
10633
10633
  },
10634
10634
  {
10635
10635
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10636
- "line": 1469,
10636
+ "line": 1464,
10637
10637
  "description": "Handles notifying any listeners of an impending URL\nchange.\n\nTriggers the router level `willTransition` hook.",
10638
10638
  "itemtype": "method",
10639
10639
  "name": "willTransition",
@@ -10645,7 +10645,7 @@
10645
10645
  },
10646
10646
  {
10647
10647
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10648
- "line": 1482,
10648
+ "line": 1477,
10649
10649
  "description": "Represents the current URL.",
10650
10650
  "itemtype": "property",
10651
10651
  "name": "url",
@@ -10657,7 +10657,7 @@
10657
10657
  },
10658
10658
  {
10659
10659
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10660
- "line": 1640,
10660
+ "line": 1635,
10661
10661
  "description": "Finds the name of the substate route if it exists for the given route. A\nsubstate route is of the form `route_state`, such as `foo_loading`.",
10662
10662
  "access": "private",
10663
10663
  "tagname": "",
@@ -10682,7 +10682,7 @@
10682
10682
  },
10683
10683
  {
10684
10684
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10685
- "line": 1661,
10685
+ "line": 1656,
10686
10686
  "description": "Finds the name of the state route if it exists for the given route. A state\nroute is of the form `route.state`, such as `foo.loading`. Properly Handles\n`application` named routes.",
10687
10687
  "access": "private",
10688
10688
  "tagname": "",
@@ -10707,7 +10707,7 @@
10707
10707
  },
10708
10708
  {
10709
10709
  "file": "packages/@ember/-internals/routing/lib/system/router.ts",
10710
- "line": 1683,
10710
+ "line": 1678,
10711
10711
  "description": "Determines whether or not a route has been defined by checking that the route\nis in the Router's map and the owner has a registration for that route.",
10712
10712
  "access": "private",
10713
10713
  "tagname": "",
@@ -18871,15 +18871,15 @@
18871
18871
  },
18872
18872
  {
18873
18873
  "message": "Missing item type\nFinds the name of the substate route if it exists for the given route. A\nsubstate route is of the form `route_state`, such as `foo_loading`.",
18874
- "line": " packages/@ember/-internals/routing/lib/system/router.ts:1640"
18874
+ "line": " packages/@ember/-internals/routing/lib/system/router.ts:1635"
18875
18875
  },
18876
18876
  {
18877
18877
  "message": "Missing item type\nFinds the name of the state route if it exists for the given route. A state\nroute is of the form `route.state`, such as `foo.loading`. Properly Handles\n`application` named routes.",
18878
- "line": " packages/@ember/-internals/routing/lib/system/router.ts:1661"
18878
+ "line": " packages/@ember/-internals/routing/lib/system/router.ts:1656"
18879
18879
  },
18880
18880
  {
18881
18881
  "message": "Missing item type\nDetermines whether or not a route has been defined by checking that the route\nis in the Router's map and the owner has a registration for that route.",
18882
- "line": " packages/@ember/-internals/routing/lib/system/router.ts:1683"
18882
+ "line": " packages/@ember/-internals/routing/lib/system/router.ts:1678"
18883
18883
  },
18884
18884
  {
18885
18885
  "message": "Missing item type\nThis mixin allows for Ember objects to subscribe to and emit events.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-source",
3
- "version": "4.3.0-beta.1",
3
+ "version": "4.3.0-beta.2",
4
4
  "description": "A JavaScript framework for creating ambitious web applications",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -156,7 +156,7 @@
156
156
  "ember-addon": {
157
157
  "after": "ember-cli-legacy-blueprints"
158
158
  },
159
- "_originalVersion": "4.3.0-beta.1",
159
+ "_originalVersion": "4.3.0-beta.2",
160
160
  "_versionPreviouslyCalculated": true,
161
161
  "publishConfig": {
162
162
  "tag": "beta"