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
Copy file name to clipboardExpand all lines: content/ember-released-6-3.md
+18-17
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Ember 6.3 Released
3
3
authors:
4
4
- jared-galanis
5
-
date: 2025-03-21T00:00:00.000Z
5
+
date: 2025-03-28T00:00:00.000Z
6
6
tags:
7
7
- releases
8
8
- '2025'
@@ -34,24 +34,23 @@ Ember.js 6.3 is an incremental, backwards compatible release of Ember with bug f
34
34
35
35
Ember.js 6.3 includes 1 noteworthy bug fix:
36
36
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.
39
38
40
39
#### Features
41
40
42
41
Ember.js 6.3 introduces 1 new feature.
43
42
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
45
44
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.
47
46
48
47
This is a replacement for the [ember-route-template](https://github.com/discourse/ember-route-template) addon.
49
48
50
49
#### Deprecations
51
50
52
51
Ember.js 6.3 introduces 1 new deprecation.
53
52
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.
55
54
56
55
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
56
@@ -102,7 +101,7 @@ It is not required to keep Ember CLI versions in sync with Ember and EmberData.
102
101
Ember CLI 6.3 includes 4 noteworthy bug fixes:
103
102
104
103
-[#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
106
105
-[#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
107
106
-[#10643](https://github.com/ember-cli/ember-cli/pull/10643) Remove unmaintained ember-cli-lodash-subset in favor of requiring functions directly from lodash
108
107
@@ -111,19 +110,20 @@ Ember CLI 6.3 includes 4 noteworthy bug fixes:
111
110
Ember CLI 6.3 introduces 5 new feature and noteworthy enhancements:
112
111
113
112
##### 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.
120
113
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.
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,16 @@ 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
144
- app-prefix
144
145
- app-suffix
145
146
- tests-prefix
146
147
- tests-suffix
147
148
- vendor-prefix
148
149
- vendor-suffix
149
150
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/).
151
152
152
153
For more details on the changes in Ember CLI 6.3 and detailed upgrade
153
154
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