Skip to content

Commit 1fcfe1d

Browse files
committed
clean up
1 parent bc9e21a commit 1fcfe1d

File tree

1 file changed

+18
-17
lines changed

1 file changed

+18
-17
lines changed

content/ember-released-6-3.md

+18-17
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Ember 6.3 Released
33
authors:
44
- jared-galanis
5-
date: 2025-03-21T00:00:00.000Z
5+
date: 2025-03-28T00:00:00.000Z
66
tags:
77
- releases
88
- '2025'
@@ -34,24 +34,23 @@ Ember.js 6.3 is an incremental, backwards compatible release of Ember with bug f
3434

3535
Ember.js 6.3 includes 1 noteworthy bug fix:
3636

37-
* [#20825](https://github.com/emberjs/ember.js/pull/20825) Remove the `helper` wrapper from the helper generator; [Plain functions as helpers](https://guides.emberjs.com/release/components/helper-functions/#toc_global-helper-functions) have been supported since v4.5.
38-
37+
- [#20825](https://github.com/emberjs/ember.js/pull/20825) Remove the `helper` wrapper from the helper generator; [Plain functions as helpers](https://guides.emberjs.com/release/components/helper-functions/#toc_global-helper-functions) have been supported since v4.5.
3938

4039
#### Features
4140

4241
Ember.js 6.3 introduces 1 new feature.
4342

44-
##### [#20800](https://github.com/emberjs/ember.js/pull/20800) Template Tag support in Routes
43+
##### [#20800](https://github.com/emberjs/ember.js/pull/20800) Template Tag support in Routes
4544

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.
45+
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.
4746

4847
This is a replacement for the [ember-route-template](https://github.com/discourse/ember-route-template) addon.
4948

5049
#### Deprecations
5150

5251
Ember.js 6.3 introduces 1 new deprecation.
5352

54-
##### [#20526](https://github.com/emberjs/ember.js/pull/20526) Deprecates importing inject from @ember/service.
53+
##### [#20526](https://github.com/emberjs/ember.js/pull/20526) Deprecates importing inject from @ember/service.
5554

5655
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.
5756

@@ -102,7 +101,7 @@ It is not required to keep Ember CLI versions in sync with Ember and EmberData.
102101
Ember CLI 6.3 includes 4 noteworthy bug fixes:
103102

104103
- [#10612](https://github.com/ember-cli/ember-cli/pull/10612) Fix ember-data TS config in monorepo when using npm or yarn v1
105-
- [#10592](https://github.com/ember-cli/ember-cli/pull/10592) Fix ESLint config for v1 addons
104+
- [#10592](https://github.com/ember-cli/ember-cli/pull/10592) Fix ESLint config for v1 addons
106105
- [#10633](https://github.com/ember-cli/ember-cli/pull/10633) / [#10638](https://github.com/ember-cli/ember-cli/pull/10638) Fix Ember Data package versions in the blueprint
107106
- [#10643](https://github.com/ember-cli/ember-cli/pull/10643) Remove unmaintained ember-cli-lodash-subset in favor of requiring functions directly from lodash
108107

@@ -111,19 +110,20 @@ Ember CLI 6.3 includes 4 noteworthy bug fixes:
111110
Ember CLI 6.3 introduces 5 new feature and noteworthy enhancements:
112111

113112
##### 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-
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.
120113

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+
117+
- `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.
118+
- `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.
119+
120+
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.
121121

122122
##### Add ember-cli-deprecation-workflow to app blueprint per [RFC #1009](https://rfcs.emberjs.com/id/1009-move-deprecation-workflow-to-apps)
123123

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.
125125

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.
127127

128128
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.
129129

@@ -139,15 +139,16 @@ Ember CLI 6.3 introduces 1 new deprecation:
139139

140140
##### Deprecate v1 addon `contentFor` types per [RFC #1029](https://rfcs.emberjs.com/id/1029-deprecate-app-prefix/)
141141

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+
143144
- app-prefix
144145
- app-suffix
145146
- tests-prefix
146147
- tests-suffix
147148
- vendor-prefix
148149
- vendor-suffix
149150

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+
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/).
151152

152153
For more details on the changes in Ember CLI 6.3 and detailed upgrade
153154
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

Comments
 (0)