Ember 7 : pas de nouveautés, du bug fix et des retraits d'API
mar, 09/06/2026 - 18:00
Ember est un framework JavaScript en réduisant les efforts nécessaires pour créer une app web. Ember est maintenant disponible en version 7. Cette nouvelle version retire des fonctions dépréciées avant la v7 et fixe des bugs. Les versions 6.x avaient déjà fixé de nombreux bugs.
La v7 n'introduit pas de nouvelles API publiques. Elle retire :
- import Ember from 'ember'
- publication de bundles AMD par ember-source
- importation inject de @ember/service
Les bugs fixés sont :
- #21076 Support default globals for strict mode with the runtime template compiler per RFC #1070.
- #21098 Add support for
thisin explicit scope for the runtime template compiler. - #21107 Fix
LinkToinside inline SVG reloads your application - #21109 Fix missing value attribute on radio/checkbox inputs bound to empty string
- #21122 Fix tracked collections
delete()returning true for non-existent entries - #21124 Fix
{{#each}}runtime crash when array contains null/undefined items with key - #21125 Fix crash when accessing negative index of helper positional args
- #21128 Fix
trackedMapandtrackedWeakMapreactivity for existing keys - #21139 Port
BrandedArrayfix for Array-as-parent bug in destroyables - #21168 Fix
EmberArray.reduceto match native behavior - #21189 Clear stale metadata references after destruction to allow GC
- #21202 Fix
<LinkTo>'s@current-whenargument with nested routes containing dynamic segments
Note de version : https://blog.emberjs.com/ember-released-7-0/

