Skip to content

Commit 0a13d3d

Browse files
authored
Merge pull request #1350 from ember-learn/release-6-4
Release 6.4
2 parents 4f7bba1 + cc19245 commit 0a13d3d

File tree

2 files changed

+122
-3
lines changed

2 files changed

+122
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: mansona/npm-lockfile-version@v1
2222

2323
- name: Use Node.js ${{ env.NODE_VERSION }}
24-
uses: actions/setup-node@v2
24+
uses: actions/setup-node@v4
2525
with:
2626
cache: 'npm'
2727
node-version: ${{ env.NODE_VERSION }}
@@ -32,7 +32,6 @@ jobs:
3232
- name: Lint
3333
run: npm run lint
3434

35-
3635
test-app:
3736
name: Test app
3837
runs-on: ubuntu-latest
@@ -42,7 +41,7 @@ jobs:
4241
uses: actions/checkout@v2
4342

4443
- name: Use Node.js ${{ env.NODE_VERSION }}
45-
uses: actions/setup-node@v2
44+
uses: actions/setup-node@v4
4645
with:
4746
cache: 'npm'
4847
node-version: ${{ env.NODE_VERSION }}

content/ember-released-6-4.md

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
---
2+
title: Ember 6.4 Released
3+
authors:
4+
- jared-galanis
5+
date: 2025-05-26T00:00:00.000Z
6+
tags:
7+
- releases
8+
- '2025'
9+
- version-6-x
10+
---
11+
12+
Today the Ember project is releasing version 6.4 of Ember.js and Ember CLI. This release of Ember.js is an LTS (Long Term Support) candidate. LTS candidates prioritize stability over the addition of new features, and have an extended support schedule.
13+
14+
This release kicks off the 6.5 beta cycle for all sub-projects. We encourage our community (especially addon authors) to help test these beta builds and report any bugs before they are published as a final release in six weeks' time. The [ember-try](https://github.com/ember-cli/ember-try) addon is a great way to continuously test your projects against the latest Ember releases.
15+
16+
You can read more about our general release process here:
17+
18+
- [Release Dashboard](http://emberjs.com/releases/)
19+
- [The Ember Release Cycle](https://blog.emberjs.com/new-ember-release-process/)
20+
- [The Ember Project](https://blog.emberjs.com/ember-project-at-2-0/)
21+
- [Ember LTS Releases](https://blog.emberjs.com/announcing-embers-first-lts/)
22+
23+
---
24+
25+
## Ember.js
26+
27+
Ember.js is the core framework for building ambitious web applications.
28+
29+
### Changes in Ember.js 6.4
30+
31+
Ember.js 6.4 is an incremental, backwards compatible release of Ember with bug fixes, performance improvements, and minor deprecations.
32+
33+
#### Bug fixes
34+
35+
Ember.js 6.4 includes 4 noteworthy bug fixes:
36+
37+
- [#20842](https://github.com/emberjs/ember.js/pull/20842) / [#20864](https://github.com/emberjs/ember.js/pull/20864) Upgrade glimmer-vm.
38+
- [#20872](https://github.com/emberjs/ember.js/pull/20872) `{{debugger}}` will now work again in templates
39+
- [#20850](https://github.com/emberjs/ember.js/pull/20850) Correct publication of source maps for ember-source
40+
- [#20867](https://github.com/emberjs/ember.js/pull/20867) Fix LOG_VERSIONS.
41+
42+
#### Potentially Breaking
43+
44+
- [#20842](https://github.com/emberjs/ember.js/pull/20842) [BREAKING] Drop support for TypeScript 4.9 to allow for glimmer-vm upgrade.
45+
- Ember now tests against TypeScript 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7.
46+
Per the rolling support window, following [Semantic Versioning for TypeScript Types](https://www.semver-ts.org/), the supported range of TypeScript versions across two Ember LTS releases must always overlap.
47+
For more examples, see the [Stability heading in this blog post](https://blog.emberjs.com/stable-typescript-types-in-ember-5-1/).
48+
- We now require consumers use `verbatimModuleSyntax`.
49+
50+
#### Features
51+
52+
Ember.js 6.4 introduces no new features.
53+
54+
#### Deprecations
55+
56+
Ember.js 6.4 introduces no new deprecations.
57+
58+
---
59+
60+
## EmberData
61+
62+
EmberData is the official data persistence library for Ember.js applications.
63+
64+
EmberData 5.4 has been released with many updates that will be more extensively covered in a full stand alone blog post.
65+
66+
EmberData is also in the process of rebranding to WarpDrive. Stay tuned for more info!
67+
68+
To learn about the motivation and goals for upcoming changes to EmberData in 5.x,
69+
read the [blog post, EmberData 5.X Update](https://blog.emberjs.com/ember-data-5-x-update-2023-04-15/).
70+
71+
<!-- alex ignore retext-equality -->
72+
73+
This will help you form the mental model of what to expect across the 5.x series,
74+
and understand deprecation removals in the context of the upcoming goals.
75+
76+
---
77+
78+
## Ember CLI
79+
80+
Ember CLI is the command line interface for managing and packaging Ember.js applications.
81+
82+
### Upgrading Ember CLI
83+
84+
You may upgrade Ember CLI using the `ember-cli-update` project:
85+
86+
```bash
87+
npx ember-cli-update
88+
```
89+
90+
This utility will help you to update your app or addon to the latest Ember CLI version. You will probably encounter merge conflicts, in which the default behavior is to let you resolve conflicts on your own. For more information on the `ember-cli-update` project, see [the GitHub README](https://github.com/ember-cli/ember-cli-update).
91+
92+
It is not required to keep Ember CLI versions in sync with Ember and EmberData. After updating ember-cli, you can keep your current version(s) of Ember or EmberData by editing `package.json` to revert the changes to the lines containing `ember-source` and `ember-data`.
93+
94+
### Changes in Ember CLI 6.4
95+
96+
#### Bug fixes
97+
98+
Ember CLI 6.4 includes 4 bug fixes:
99+
100+
- [#10685](https://github.com/ember-cli/ember-cli/pull/10685) Add configuration to opt new projects out of the deprecated behavior of the Store class extending EmberObject. If upgrading you may need to alter this configuration when updating with `ember-cli-update` or otherwise applying the blueprint.
101+
- [#10620](https://github.com/ember-cli/ember-cli/pull/10620) Handle errors gracefully when proxy target is down.
102+
- [#10641](https://github.com/ember-cli/ember-cli/pull/10641) Fix eslint parser for js when using --typescript flag.
103+
- [#10659](https://github.com/ember-cli/ember-cli/pull/10659/files) Improve de-typing .gts files.
104+
105+
#### Features
106+
107+
Ember CLI 6.4 introduces 1 new feature:
108+
109+
- [#10661](https://github.com/ember-cli/ember-cli/pull/10661) Update ember-try to v4 in blueprints.
110+
111+
#### Deprecations
112+
113+
Ember CLI 6.4 introduces no new deprecations.
114+
115+
For more details on the changes in Ember CLI 6.4 and detailed upgrade
116+
instructions, please review the [Ember CLI 6.4.0 release page](https://github.com/ember-cli/ember-cli/releases/tag/v6.4.0).
117+
118+
## Thank You!
119+
120+
As a community-driven open-source project with an ambitious scope, each of these releases serves as a reminder that the Ember project would not have been possible without your continued support. We are extremely grateful to our contributors for their efforts.

0 commit comments

Comments
 (0)