Skip to content

Commit 3e80dec

Browse files
authored
Merge pull request #1219 from ember-learn/release-4-8
4.8 release blog post
2 parents 294a5ea + 716a0dc commit 3e80dec

File tree

1 file changed

+107
-0
lines changed

1 file changed

+107
-0
lines changed

content/ember-4-8-released.md

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
---
2+
title: Ember 4.8 Released
3+
authors:
4+
- jared-galanis
5+
date: 2022-10-25T00:00:00.000Z
6+
tags:
7+
- releases
8+
- '2022'
9+
- version-4-x
10+
---
11+
12+
Today the Ember project is releasing version 4.8 of Ember.js, Ember Data, and Ember CLI.
13+
14+
This release kicks off the 4.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 4.8
30+
31+
Ember.js 4.8 is an incremental, backwards compatible release of Ember with bug fixes, performance improvements, and minor deprecations.
32+
33+
#### Bug Fixes
34+
35+
Ember.js 4.8 introduced 1 bug fix.
36+
37+
- [#20166](https://github.com/emberjs/ember.js/pull/20166) - fixed a bug where calling RouteInfo.find() method executes callback with undefined object since 4.3.0.
38+
39+
#### Features
40+
41+
Ember.js 4.8 introduced 1 feature.
42+
43+
- [#20180](https://github.com/emberjs/ember.js/pull/20180) - an opt-in preview of Ember's official TypeScript types. This is the latest step in implementing [RFC 0800: TypeScript Adoption Plan](https://rfcs.emberjs.com/id/0800-ts-adoption-plan). These types serve as a way to get early feedback, in line with Ember's normal path to stabilizing features. You can opt into the types now, but won't be opted in automatically until they're stable. Check out [the announcement blog post](https://blog.emberjs.com/announcing-official-typescript-types-public-preview) for details on how you can try out the preview, and see the [pull request](https://github.com/emberjs/ember.js/pull/2018) for more detail on the implementation and mechanics involved.
44+
45+
#### Deprecations
46+
47+
Ember.js 4.8 introduced 0 deprecations.
48+
49+
<!-- Block end -->
50+
51+
For more details on changes in Ember.js 4.8, please review the [Ember.js 4.8.0 release page](https://github.com/emberjs/ember.js/releases/tag/v4.8.0).
52+
53+
---
54+
55+
## Ember Data
56+
57+
Ember Data is the official data persistence library for Ember.js applications.
58+
59+
### Changes in Ember Data
60+
61+
Due to low availability for the Ember Data team this cycle, Ember Data does not have a new release, so it remains at 4.7.
62+
63+
Please see the [Ember 4.7 release blog post](https://blog.emberjs.com/ember-released-4-7) for details about v4.7 of Ember Data.
64+
65+
---
66+
67+
## Ember CLI
68+
69+
Ember CLI is the command line interface for managing and packaging Ember.js applications.
70+
71+
### Upgrading Ember CLI
72+
73+
You may upgrade Ember CLI using the `ember-cli-update` project:
74+
75+
```bash
76+
npx ember-cli-update
77+
```
78+
79+
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).
80+
81+
While it is recommended to keep Ember CLI versions in sync with Ember and Ember Data, this is not required. After updating ember-cli, you can keep your current version(s) of Ember or Ember Data by editing `package.json` to revert the changes to the lines containing `ember-source` and `ember-data`.
82+
83+
### Changes in Ember CLI 4.8
84+
85+
#### Bug Fixes
86+
87+
Ember CLI 4.8 introduced 4 bug fixes.
88+
89+
- [#10014](https://github.com/ember-cli/ember-cli/pull/10014) - a fix that makes sure newly installed addons are discovered when running ember install.
90+
- [#9920](https://github.com/ember-cli/ember-cli/pull/9920) - a fix that makes sure a blueprint’s options object and project instance are always available for all public hooks.
91+
- [#9987](https://github.com/ember-cli/ember-cli/pull/9987) - a fix that makes sure we handle rebuild failures without exiting.
92+
- [#9988](https://github.com/ember-cli/ember-cli/pull/9988) - a fix for a glob matching issue when npm-run-all and Yarn 2+ are used together.
93+
94+
#### Features
95+
96+
Ember CLI 4.8 introduced 2 features.
97+
98+
- [#9945](https://github.com/ember-cli/ember-cli/pull/9945) - Added Node v18 to engines in the app and addon blueprints (removes support for Node v17, which is a breaking change).
99+
- [#9975](https://github.com/ember-cli/ember-cli/pull/9975) - Updated the app and addon blueprints to use const to avoid unnecessary linting errors.
100+
101+
#### Deprecations
102+
103+
Ember CLI 4.8 introduced 0 deprecations.
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)