You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
##### [#20800](https://github.com/emberjs/ember.js/pull/20800) Template Tag support in Routes
44
+
##### [#20800](https://github.com/emberjs/ember.js/pull/20800) Template Tag support in Routes
45
45
46
-
Following [RFC #1046](https://rfcs.emberjs.com/id/1046-template-tag-in-routes/), Ember now supports the use of `<template>` authoring-format Glimmer components (gjs | gts) in place of route templates.
46
+
Following [RFC #1046](https://rfcs.emberjs.com/id/1046-template-tag-in-routes/), Ember now supports the use of `<template>` authoring-format Glimmer components (gjs | gts) in place of route templates.
47
47
48
48
This is a replacement for the [ember-route-template](https://github.com/discourse/ember-route-template) addon.
49
49
50
50
#### Deprecations
51
51
52
52
Ember.js 6.3 introduces 1 new deprecation.
53
53
54
-
##### [#20526](https://github.com/emberjs/ember.js/pull/20526) Deprecates importing inject from @ember/service.
54
+
##### [#20526](https://github.com/emberjs/ember.js/pull/20526) Deprecates importing inject from @ember/service.
55
55
56
56
The export is renamed to service per [RFC #0752](https://rfcs.emberjs.com/id/0752-inject-service/). See the [deprecation guide](https://deprecations.emberjs.com/id/importing-inject-from-ember-service) for more information.
57
57
@@ -111,19 +111,19 @@ Ember CLI 6.3 includes 4 noteworthy bug fixes:
111
111
Ember CLI 6.3 introduces 5 new feature and noteworthy enhancements:
112
112
113
113
##### Vanilla `Prettier` setup per [RFC #1055](https://rfcs.emberjs.com/id/1055-vanilla-prettier-setup-in-blueprints)
114
-
[#10596](https://github.com/ember-cli/ember-cli/pull/10596) moves the default [`Prettier`](https://prettier.io/) setup to no longer be run through linters (ESLint, Stylelint) but to be run directly.
115
-
The following scripts are adding to package.json via the blueprint:
116
-
*`npm run format` runs `prettier . --cache --write`. This will format all files with Prettier that are not ignored in the Prettier configuration. Previously this would only have applied to files configured in your linters. `npm run lint:fix` will run this command.
117
-
*`npm run lint:format` runs `prettier . --cache --check` This runs `prettier` as a linter and allows `npm run lint` to fail if prettier has not run.
118
-
114
+
[#10596](https://github.com/ember-cli/ember-cli/pull/10596) moves the default [`Prettier`](https://prettier.io/) setup to no longer be run through linters (ESLint, Stylelint) but to be run directly.
115
+
The following scripts are adding to package.json via the blueprint:
116
+
*`npm run format` runs `prettier . --cache --write`. This will format all files with Prettier that are not ignored in the Prettier configuration. Previously this would only have applied to files configured in your linters. `npm run lint:fix` will run this command.
117
+
*`npm run lint:format` runs `prettier . --cache --check` This runs `prettier` as a linter and allows `npm run lint` to fail if prettier has not run.
118
+
119
119
As noted in the RFC: we use `format` instead of `lint:format:fix`, because we don't want to run Prettier parallel to ESLint and Stylelint when fixing lint errors. The `lint:fix` script will always run `format` last to avoid competing changes.
120
120
121
121
122
122
##### Add ember-cli-deprecation-workflow to app blueprint per [RFC #1009](https://rfcs.emberjs.com/id/1009-move-deprecation-workflow-to-apps)
123
123
124
-
[#10588](https://github.com/ember-cli/ember-cli/pull/10588) Adds the `ember-cli-deprecation-workflow` addon to the default blueprint for apps and generates the setup for the addon as well.
124
+
[#10588](https://github.com/ember-cli/ember-cli/pull/10588) Adds the `ember-cli-deprecation-workflow` addon to the default blueprint for apps and generates the setup for the addon as well.
125
125
126
-
The addon enables collecting deprecations as they happen and creating a configuration so that you can silence deprecations or make them throw. See [the README](https://github.com/ember-cli/ember-cli-deprecation-workflow#ember-cli-deprecation-workflow) for more information.
126
+
The addon enables collecting deprecations as they happen and creating a configuration so that you can silence deprecations or make them throw. See [the README](https://github.com/ember-cli/ember-cli-deprecation-workflow#ember-cli-deprecation-workflow) for more information.
127
127
128
128
For example, you may wish to silence a deprecation that is coming from an addon while you await an updated version, or you may wish to cause a deprecation to throw that you have already cleared and do not wish to allow to regress.
129
129
@@ -139,15 +139,15 @@ Ember CLI 6.3 introduces 1 new deprecation:
139
139
140
140
##### Deprecate v1 addon `contentFor` types per [RFC #1029](https://rfcs.emberjs.com/id/1029-deprecate-app-prefix/)
141
141
142
-
[#10589](https://github.com/ember-cli/ember-cli/pull/10589) deprecates `contentFor` with the following types:
142
+
[#10589](https://github.com/ember-cli/ember-cli/pull/10589) deprecates `contentFor` with the following types:
143
143
- app-prefix
144
144
- app-suffix
145
145
- tests-prefix
146
146
- tests-suffix
147
147
- vendor-prefix
148
148
- vendor-suffix
149
149
150
-
The deprecation guide is not yet published but the content can be read in the [RFC](https://rfcs.emberjs.com/id/1029-deprecate-app-prefix/).
150
+
The deprecation guide is not yet published but the content can be read in the [RFC](https://rfcs.emberjs.com/id/1029-deprecate-app-prefix/).
151
151
152
152
For more details on the changes in Ember CLI 6.3 and detailed upgrade
153
153
instructions, please review the [Ember CLI 6.3.0 release page](https://github.com/ember-cli/ember-cli/releases/tag/v6.3.0).
0 commit comments