ember-source 4.9.0-alpha.5 → 4.9.0-beta.1

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.
package/CHANGELOG.md CHANGED
@@ -1,26 +1,21 @@
1
1
  # Ember Changelog
2
2
 
3
- ### v4.8.0-beta.5 (October 3, 2022)
3
+ ### v4.9.0-beta.1 (October 17, 2022)
4
4
 
5
- - [#20212](https://github.com/emberjs/ember.js/pull/20212) [BUGFIX] Remove incorrect exports from preview routing types
5
+ - [#20203](https://github.com/emberjs/ember.js/pull/20203) / [#20204](https://github.com/emberjs/ember.js/pull/20204) [FEATURE] Preview types: Update to Typescript 4.8
6
6
 
7
- ### v4.8.0-beta.4 (September 26, 2022)
7
+ ### v4.8.0 (October 17, 2022)
8
8
 
9
- - [#20201](https://github.com/emberjs/ember.js/pull/20201) [BUGFIX] Fix type definition for `Route`
10
-
11
- ### v4.8.0-beta.3 (September 19, 2022)
12
-
13
- - [#20194](https://github.com/emberjs/ember.js/pull/20194) [BUGFIX] Provide a `.d.ts` file at types/stable
14
- - [#20196](https://github.com/emberjs/ember.js/pull/20196) [BUGFIX] types imports are at 'ember-source/types'
9
+ - [#20180](https://github.com/emberjs/ember.js/pull/20180) [FEATURE] Publish an opt-in preview of public types for Ember
10
+ - [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Upgrade router_js to fix Linked list of RouteInfos contains undefined object
15
11
 
16
- ### v4.8.0-beta.2 (September 13, 2022)
12
+ ### v4.4.3 (October 12, 2022)
17
13
 
18
- - [#20186](https://github.com/emberjs/ember.js/pull/20186) [BUGFIX] Fix `@ember/runloop` type tests folder name so that the tests are properly excluded from the build
19
- - [#20180](https://github.com/emberjs/ember.js/pull/20180) [FEATURE] Publish an opt-in preview of public types for Ember
14
+ - [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Fix missing `RouteInfo` entries
20
15
 
21
- ### v4.8.0-beta.1 (September 6, 2022)
16
+ ### v4.7.1 (October 12, 2022)
22
17
 
23
- - [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Upgrade router_js to fix Linked list of RouteInfos contains undefined object
18
+ - [#20166](https://github.com/emberjs/ember.js/pull/20166) [BUGFIX] Fix missing `RouteInfo` entries
24
19
 
25
20
  ### v4.7.0 (September 6, 2022)
26
21
 
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.9.0-alpha.5",
2
+ "version": "4.9.0-beta.1",
3
3
  "buildType": "tag",
4
- "SHA": "d8463ef922e333e35dc026d6a60cc6ce7ebc0eac",
5
- "assetPath": "/tag/shas/d8463ef922e333e35dc026d6a60cc6ce7ebc0eac.tgz"
4
+ "SHA": "3413e7d3ab5a218c89d8b79be89acf6ff199dc97",
5
+ "assetPath": "/tag/shas/3413e7d3ab5a218c89d8b79be89acf6ff199dc97.tgz"
6
6
  }
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 4.9.0-alpha.5
9
+ * @version 4.9.0-beta.1
10
10
  */
11
11
 
12
12
  /* eslint-disable no-var */
@@ -2594,8 +2594,39 @@ define("@ember/debug/lib/deprecate", ["exports", "@ember/-internals/environment"
2594
2594
  /**
2595
2595
  Display a deprecation warning with the provided message and a stack trace
2596
2596
  (Chrome and Firefox only).
2597
+ Ember itself leverages [Semantic Versioning](https://semver.org) to aid
2598
+ projects in keeping up with changes to the framework. Before any
2599
+ functionality or API is removed, it first flows linearly through a
2600
+ deprecation staging process. The staging process currently contains two
2601
+ stages: available and enabled.
2602
+ Deprecations are initially released into the 'available' stage.
2603
+ Deprecations will stay in this stage until the replacement API has been
2604
+ marked as a recommended practice via the RFC process and the addon
2605
+ ecosystem has generally adopted the change.
2606
+ Once a deprecation meets the above criteria, it will move into the
2607
+ 'enabled' stage where it will remain until the functionality or API is
2608
+ eventually removed.
2609
+ For application and addon developers, "available" deprecations are not
2610
+ urgent and "enabled" deprecations require action.
2597
2611
  * In a production build, this method is defined as an empty function (NOP).
2598
2612
  Uses of this method in Ember itself are stripped from the ember.prod.js build.
2613
+ ```javascript
2614
+ import { deprecate } from '@ember/debug';
2615
+ deprecate(
2616
+ 'Use of `assign` has been deprecated. Please use `Object.assign` or the spread operator instead.',
2617
+ false,
2618
+ {
2619
+ id: 'ember-polyfills.deprecate-assign',
2620
+ until: '5.0.0',
2621
+ url: 'https://deprecations.emberjs.com/v4.x/#toc_ember-polyfills-deprecate-assign',
2622
+ for: 'ember-source',
2623
+ since: {
2624
+ available: '4.0.0',
2625
+ enabled: '4.0.0',
2626
+ },
2627
+ }
2628
+ );
2629
+ ```
2599
2630
  @method deprecate
2600
2631
  @for @ember/debug
2601
2632
  @param {String} message A description of the deprecation.
@@ -19399,7 +19430,7 @@ define("ember/version", ["exports"], function (_exports) {
19399
19430
  value: true
19400
19431
  });
19401
19432
  _exports.default = void 0;
19402
- var _default = "4.9.0-alpha.5";
19433
+ var _default = "4.9.0-beta.1";
19403
19434
  _exports.default = _default;
19404
19435
  });
19405
19436
  define("simple-html-tokenizer", ["exports"], function (_exports) {