Skip to content

Commit 79fae17

Browse files
committed
Release 5.9
1 parent 2ee014b commit 79fae17

File tree

2 files changed

+108
-1
lines changed

2 files changed

+108
-1
lines changed

content/ember-released-5-8.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Ember CLI 5.8 introduced 2 bug fixes.
8888
- [#10438](https://github.com/ember-cli/ember-cli/pull/10438) - Add declarations folder to `.eslintignore` file in app blueprint so that running the `lint` script after the `prepack` script does not result in ESLint errors.
8989

9090
For more details on the changes in Ember CLI 5.8 and detailed upgrade
91-
instructions, please review the [Ember CLI 5.8.0 release page](https://github.com/ember-cli/ember-cli/releases/tag/v5.7.0).
91+
instructions, please review the [Ember CLI 5.8.0 release page](https://github.com/ember-cli/ember-cli/releases/tag/v5.8.0).
9292

9393
## Thank You!
9494

content/ember-released-5-9.md

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
---
2+
title: Ember 5.9 Released
3+
authors:
4+
- jared-galanis
5+
date: 2024-06-06T00:00:00.000Z
6+
tags:
7+
- releases
8+
- '2024'
9+
- version-5-x
10+
---
11+
12+
Today the Ember project is releasing version 5.9 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 5.9 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 5.9
30+
31+
Ember.js 5.9 is an incremental, backwards compatible release of Ember with bug fixes, performance improvements, and minor deprecations.
32+
33+
#### Bug fixes
34+
35+
Ember.js 5.9 introduced 1 bug fix.
36+
37+
- [#20656](https://github.com/emberjs/ember.js/pull/20656) and [#20664](https://github.com/emberjs/ember.js/pull/20664) - Upgrade `router_js` to support `exactOptionalPropertyTypes`.
38+
39+
#### Features
40+
41+
Ember.js 5.9 introduced 1 feature:
42+
43+
- [#20669](https://github.com/emberjs/ember.js/pull/20669) - Make deprecations throw when the until for `ember-source` has passed per [RFC #0830](https://rfcs.emberjs.com/id/0830-evolving-embers-major-version-process).
44+
45+
#### Deprecations
46+
47+
Ember.js 5.9 introduced 1 deprecation:
48+
49+
- [#20653](https://github.com/emberjs/ember.js/pull/20653) - Deprecate `(action)` and `{{action}}` in templates per [RFC #1006](emberjs/rfcs#1006).
50+
51+
For more details on changes in Ember.js 5.9, please review the [Ember.js 5.9.0 release page](https://github.com/emberjs/ember.js/releases/tag/v5.9.0).
52+
53+
---
54+
55+
## EmberData
56+
57+
EmberData is the official data persistence library for Ember.js applications.
58+
59+
This release cycle EmberData is again electing to not release a new minor.
60+
61+
Work in the library continues to be focused primarily on aligning 4.12 and 5.3 to enable as many folks in the community to seamlessly upgrade as possible. Further patch releases of 5.3 will be forthcoming.
62+
63+
<!-- alex ignore easy -->
64+
65+
We continue to take our time with 5.4 as we intend to introduce a major new paradigm with it (the replacement for @ember-data/model) and believe releasing this new feature at once on the heels of two very robust LTSs (4.12 and 5.3) is the best approach for users looking to navigate upgrades easily.
66+
67+
Please see the [blog post](https://blog.emberjs.com/updates-to-ember-data-versioning-strategy) addressing EmberData's new versioning strategy for more information.
68+
69+
---
70+
71+
## Ember CLI
72+
73+
Ember CLI is the command line interface for managing and packaging Ember.js applications.
74+
75+
### Upgrading Ember CLI
76+
77+
You may upgrade Ember CLI using the `ember-cli-update` project:
78+
79+
```bash
80+
npx ember-cli-update
81+
```
82+
83+
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).
84+
85+
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`.
86+
87+
### Changes in Ember CLI 5.9
88+
89+
#### Features
90+
91+
Ember CLI 5.9 introduced 2 new features:
92+
93+
- [#10446](https://github.com/ember-cli/ember-cli/pull/10446) - Format markdown files in blueprints with Prettier.
94+
- [#10450](https://github.com/ember-cli/ember-cli/pull/10450) - Remove warning when encountering a `.js` file when generating a `TS` blueprint.
95+
96+
#### Bug fixes
97+
98+
Ember CLI 5.9 introduced 1 bug fix:
99+
100+
- [#10452](https://github.com/ember-cli/ember-cli/pull/10452) - Make sure to use the correct package manager in concurrently scripts.
101+
102+
For more details on the changes in Ember CLI 5.9 and detailed upgrade
103+
instructions, please review the [Ember CLI 5.9.0 release page](https://github.com/ember-cli/ember-cli/releases/tag/v5.9.0).
104+
105+
## Thank You!
106+
107+
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)