Releases: salsify/ember-css-modules
rollup-plugin-preprocess-css-modules/v1.0.0
What's Changed
💥 Breaking Changes
Other Changes
- Fix classNames runtime helper for undefined and unmapped classes by @deanmarano in #335
New Contributors
- @deanmarano made their first contribution in #335
Full Changelog: ember-css-modules/v2.1.1...rollup-plugin-preprocess-css-modules/v1.0.0
glimmer-local-class-transform/v1.0.0
What's Changed
💥 Breaking Changes
Other Changes
- Fix classNames runtime helper for undefined and unmapped classes by @deanmarano in #335
New Contributors
- @deanmarano made their first contribution in #335
Full Changelog: ember-css-modules/v2.1.1...glimmer-local-class-transform/v1.0.0
ember-local-class/v1.0.0
What's Changed
💥 Breaking Changes
Other Changes
- Fix classNames runtime helper for undefined and unmapped classes by @deanmarano in #335
New Contributors
- @deanmarano made their first contribution in #335
Full Changelog: ember-css-modules/v2.1.1...ember-local-class/v1.0.0
ember-css-modules/v3.0.0
What's Changed
💥 Breaking Changes
Other Changes
- Fix classNames runtime helper for undefined and unmapped classes by @deanmarano in #335
New Contributors
- @deanmarano made their first contribution in #335
Full Changelog: ember-css-modules/v2.1.1...ember-css-modules/v3.0.0
ember-css-modules/v2.1.1
What's Changed
- Fix .original deprecation by @RobbieTheWagner in #323
New Contributors
- @RobbieTheWagner made their first contribution in #323
Full Changelog: ember-css-modules/v2.1.0...ember-css-modules/v2.1.1
ember-css-modules/v2.1.0
What's Changed
- Expanding embroider test coverage by @ef4 in #277
- Add Glint template registry for local-class helper by @SergeAstapov in #301
- Exclude development stuff from Snyk analysis by @dfreeman in #319
- Bump version for release by @dfreeman in #320
New Contributors
Full Changelog: v2.0.1...ember-css-modules/v2.1.0
v2.0.1
Fixed
Avoid triggering ember.js#19392 when we produce synthetic class AttrNodes.
v1.6.2
No changes noted.
v2.0.0
This major release of Ember CSS Modules primarily removes support for deprecated patterns and updates our minimum support for other elements of the ecosystem.
Compatibility
Ember CSS Modules is now tested against the following as minimum supported versions:
- Ember 3.24
- Ember CLI 3.24
- Node 12
Older Ember and Node versions may incidentally work, but are no longer officially supported.
Removed
While ECM will still work for templates backed by Ember.Component classes, all special handling for such components' implicit root element has been removed, in line with the broader ecosystem shift to template-only and @glimmer/component components. This includes the following removals:
- the
@localClassNamesand@localClassNamedecorators - support for
localClassNamesandlocalClassNameBindingsproperties - the
patchClassicComponentconfiguration flag
Special support for Ember.Component was deprecated in v1.5.0 of ember-css-modules; see the changelog for that release for further advice on migrating to newer Octane-based component APIs.
v1.6.0
Added
- You can now pass
patchClassicComponent: falsein your ECM config to opt out of the deprecated monkeypatching ofEmber.Componentthat will be removed entirely in 2.0 (thanks @SergeAstapov!)
Fixed
- Modules whose path includes the name of the package they're in no longer cause issues when resolving
@valueandcomposes:directives (thanks @Eric162 and @maxfierke!)