Skip to content
Tech News
← Back to articles

Ember.js 7.0

read original get Ember.js 7.0 Developer Guide → more articles
Why This Matters

The release of Ember.js 7.0 marks a significant milestone by consolidating stability with the transition of version 6.12 into Long Term Support (LTS), ensuring long-term reliability for developers. This update emphasizes backward compatibility and incremental improvements, making it easier for teams to adopt new features without disruptive upgrades, thereby fostering a more sustainable and modern development ecosystem in the tech industry.

Key Takeaways

The Ember project is excited to announce the release of Ember v7.0. Following Ember's Major Version Policy, the major includes only the removal of features that were deprecated until 7.0 as well as other bugfixes. This release of Ember.js means the previous version, 6.12, is now an LTS (Long Term Support) version.

When it comes to introducing new features, Ember generally aims to ship new features in minor releases, offering backwards compatibility for existing code at the same time as giving developers the chance to try out new capabilities. This approach reduces the challenges that teams face for major upgrades, compared to producing big, breaking, splashy major versions with lots of new features.

Looking back at improvements in the 6.x series

In Ember 6.x minor releases, we landed many notable features:

Ember v6.8 was the biggest change to how an Ember project is built in recent memory. The Ember Core Teams have been working on the Embroider+Vite build system and the strict-mode-templates (a.k.a template-tag) for literal years, and this is the first version that we made them the default experience for newly generated Ember apps. Early adopters have been opting into these features for quite some time, but generating an app with Ember v6.8 (or newer) now gives you an incredibly modern developer experience 🎉

Along with these features, countless bugfixes, deprecations that cleared the way for future improvements, RFCs setting the stage for new features, in 6.x the community also:

Merged the glimmer-vm monorepo into ember.js to faciliate faster iteration on the rendering engine and the integration with ember.js .

monorepo into to faciliate faster iteration on the rendering engine and the integration with . Merged the router.js repo into the ember.js repo to prepare for experimentation with a new router architecture and the implementation of the Route Manager RFC

repo into the repo to prepare for experimentation with a new router architecture and the implementation of the Route Manager RFC Updated our packages to publish via OIDC .

. Updated broccoli and other dependencies in an ongoing effort to reduce the number of security vulnerabilities. Current vulnerability warnings are only a concern in development mode and should not be exploitable but are annoying.

... continue reading