evoactivity / ember-fast-marquee

A lightweight Ember component that uses CSS animations to create silky smooth marquees. Inspired by https://github.com/justin-chu/react-fast-marquee
MIT License
7 stars 0 forks source link

chore(deps): update embroider monorepo (major) #62

Open renovate[bot] opened 1 year ago

renovate[bot] commented 1 year ago

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@embroider/addon-dev (source) ^2.0.0 -> ^7.0.0 age adoption passing confidence
@embroider/compat (source) ^1.8.0 -> ^3.0.0 age adoption passing confidence
@embroider/core (source) ^1.8.0 -> ^3.0.0 age adoption passing confidence
@embroider/router (source) ^1.8.0 -> ^2.0.0 age adoption passing confidence
@embroider/test-setup (source) ^1.7.1 -> ^4.0.0 age adoption passing confidence
@embroider/webpack (source) ^1.8.0 -> ^4.0.0 age adoption passing confidence

Release Notes

embroider-build/embroider (@​embroider/addon-dev) ### [`v3.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-dev-200---300) - BREAKING: `@embroider/addon-template/template-transform-plugin` is removed because `babel-plugin-ember-template-compilation >= 2.0.0` now directly supports source-to-source transformation. This plugin was used to run any custom AST transformations on your templates before publishing. To replace it: 1. Add `babel-plugin-ember-template-compilation@^2.0.0` as a devDependency. 2. Make sure you also have a devDependency on `ember-source`, so we have a template compiler. 3. Update the babel config like: ```diff plugins: [ - [ - '@​embroider/addon-dev/template-transform-plugin', - { - astTransforms: [ - ...yourPluginsHere - ] - } - ], + [ + 'babel-plugin-ember-template-compilation', + { + compilerPath: 'ember-source/dist/ember-template-compiler', + targetFormat: 'hbs', + transforms: [ + ...yourPluginsHere + ] + } + ] ] ``` See https://github.com/emberjs/babel-plugin-ember-template-compilation for the complete docs on these options.
embroider-build/embroider (@​embroider/compat) ### [`v3.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-dev-200---300) - BREAKING: `@embroider/addon-template/template-transform-plugin` is removed because `babel-plugin-ember-template-compilation >= 2.0.0` now directly supports source-to-source transformation. This plugin was used to run any custom AST transformations on your templates before publishing. To replace it: 1. Add `babel-plugin-ember-template-compilation@^2.0.0` as a devDependency. 2. Make sure you also have a devDependency on `ember-source`, so we have a template compiler. 3. Update the babel config like: ```diff plugins: [ - [ - '@​embroider/addon-dev/template-transform-plugin', - { - astTransforms: [ - ...yourPluginsHere - ] - } - ], + [ + 'babel-plugin-ember-template-compilation', + { + compilerPath: 'ember-source/dist/ember-template-compiler', + targetFormat: 'hbs', + transforms: [ + ...yourPluginsHere + ] + } + ] ] ``` See https://github.com/emberjs/babel-plugin-ember-template-compilation for the complete docs on these options. ### [`v2.1.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.0.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-202---210) - BUGFIX: hash current env into the temp workspace dir path [1318](https://redirect.github.com/embroider-build/embroider/pull/1318) - BUGFIX: add .hbs.js to the list of resolvable extensions by webpack [1307](https://redirect.github.com/embroider-build/embroider/pull/1307) - BUGFIX: Resolver transform fixes [1308](https://redirect.github.com/embroider-build/embroider/pull/1308) - BUGFIX: handle special case where rootURL is empty string [1285](https://redirect.github.com/embroider-build/embroider/pull/1285) - BUGFIX: tmpdir handling for [@​glimmer/tracking](https://redirect.github.com/glimmer/tracking) compat adapter [1302](https://redirect.github.com/embroider-build/embroider/pull/1302) ### [`v2.0.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-201---202) - BUGFIX: detect ember-template-compliation plugin correctly when other plugins are preventing parallelization [1299](https://redirect.github.com/embroider-build/embroider/pull/1299) ### [`v2.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-200---201) - BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms [1294](https://redirect.github.com/embroider-build/embroider/pull/1294), [1295](https://redirect.github.com/embroider-build/embroider/pull/1295) ### [`v1.9.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroiderutil-190---1100) - FEATURE: Make ensureSafeComponent usable with Glint [1301](https://redirect.github.com/embroider-build/embroider/pull/1301) ### [`v1.8.3`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-shim-183---184) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.2...v1.8.3) - BUGFIX: Add missing dependency [1282](https://redirect.github.com/embroider-build/embroider/pull/1282) ### [`v1.8.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v182-2022-07-04) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.1...v1.8.2) ##### :bug: Bug Fix - `compat`, `shared-internals` - [#​1230](https://redirect.github.com/embroider-build/embroider/pull/1230) Detect addons with customized treeForMethod names ([@​ef4](https://redirect.github.com/ef4)) ##### Committers: 1 - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) ### [`v1.8.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v181-2022-07-01) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.0...v1.8.1) ##### :bug: Bug Fix - `addon-dev` - [#​1227](https://redirect.github.com/embroider-build/embroider/pull/1227) add-dev: HBS files were not watched for rebuilds ([@​ef4](https://redirect.github.com/ef4)) - `compat` - [#​1224](https://redirect.github.com/embroider-build/embroider/pull/1224) Don't apply the `ember-get-config` compat adapter when >= v2.1.0 ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - `macros` - [#​1213](https://redirect.github.com/embroider-build/embroider/pull/1213) Prevent redundant toTree wrapping for macros ([@​raycohen](https://redirect.github.com/raycohen)) ##### :memo: Documentation - [#​1225](https://redirect.github.com/embroider-build/embroider/pull/1225) docs: Add lazy loaded engines EmbroiderRouter details to README ([@​richgt](https://redirect.github.com/richgt)) ##### Committers: 4 - Bert De Block ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) - Ray Cohen ([@​raycohen](https://redirect.github.com/raycohen)) - Rich Glazerman ([@​richgt](https://redirect.github.com/richgt))
embroider-build/embroider (@​embroider/core) ### [`v3.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-dev-200---300) - BREAKING: `@embroider/addon-template/template-transform-plugin` is removed because `babel-plugin-ember-template-compilation >= 2.0.0` now directly supports source-to-source transformation. This plugin was used to run any custom AST transformations on your templates before publishing. To replace it: 1. Add `babel-plugin-ember-template-compilation@^2.0.0` as a devDependency. 2. Make sure you also have a devDependency on `ember-source`, so we have a template compiler. 3. Update the babel config like: ```diff plugins: [ - [ - '@​embroider/addon-dev/template-transform-plugin', - { - astTransforms: [ - ...yourPluginsHere - ] - } - ], + [ + 'babel-plugin-ember-template-compilation', + { + compilerPath: 'ember-source/dist/ember-template-compiler', + targetFormat: 'hbs', + transforms: [ + ...yourPluginsHere + ] + } + ] ] ``` See https://github.com/emberjs/babel-plugin-ember-template-compilation for the complete docs on these options. ### [`v2.1.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.0.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-202---210) - BUGFIX: hash current env into the temp workspace dir path [1318](https://redirect.github.com/embroider-build/embroider/pull/1318) - BUGFIX: add .hbs.js to the list of resolvable extensions by webpack [1307](https://redirect.github.com/embroider-build/embroider/pull/1307) - BUGFIX: Resolver transform fixes [1308](https://redirect.github.com/embroider-build/embroider/pull/1308) - BUGFIX: handle special case where rootURL is empty string [1285](https://redirect.github.com/embroider-build/embroider/pull/1285) - BUGFIX: tmpdir handling for [@​glimmer/tracking](https://redirect.github.com/glimmer/tracking) compat adapter [1302](https://redirect.github.com/embroider-build/embroider/pull/1302) ### [`v2.0.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-201---202) - BUGFIX: detect ember-template-compliation plugin correctly when other plugins are preventing parallelization [1299](https://redirect.github.com/embroider-build/embroider/pull/1299) ### [`v2.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-200---201) - BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms [1294](https://redirect.github.com/embroider-build/embroider/pull/1294), [1295](https://redirect.github.com/embroider-build/embroider/pull/1295) ### [`v1.9.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroiderutil-190---1100) - FEATURE: Make ensureSafeComponent usable with Glint [1301](https://redirect.github.com/embroider-build/embroider/pull/1301) ### [`v1.8.3`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-shim-183---184) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.2...v1.8.3) - BUGFIX: Add missing dependency [1282](https://redirect.github.com/embroider-build/embroider/pull/1282) ### [`v1.8.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v182-2022-07-04) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.1...v1.8.2) ##### :bug: Bug Fix - `compat`, `shared-internals` - [#​1230](https://redirect.github.com/embroider-build/embroider/pull/1230) Detect addons with customized treeForMethod names ([@​ef4](https://redirect.github.com/ef4)) ##### Committers: 1 - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) ### [`v1.8.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v181-2022-07-01) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.0...v1.8.1) ##### :bug: Bug Fix - `addon-dev` - [#​1227](https://redirect.github.com/embroider-build/embroider/pull/1227) add-dev: HBS files were not watched for rebuilds ([@​ef4](https://redirect.github.com/ef4)) - `compat` - [#​1224](https://redirect.github.com/embroider-build/embroider/pull/1224) Don't apply the `ember-get-config` compat adapter when >= v2.1.0 ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - `macros` - [#​1213](https://redirect.github.com/embroider-build/embroider/pull/1213) Prevent redundant toTree wrapping for macros ([@​raycohen](https://redirect.github.com/raycohen)) ##### :memo: Documentation - [#​1225](https://redirect.github.com/embroider-build/embroider/pull/1225) docs: Add lazy loaded engines EmbroiderRouter details to README ([@​richgt](https://redirect.github.com/richgt)) ##### Committers: 4 - Bert De Block ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) - Ray Cohen ([@​raycohen](https://redirect.github.com/raycohen)) - Rich Glazerman ([@​richgt](https://redirect.github.com/richgt))
embroider-build/embroider (@​embroider/router) ### [`v2.1.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-200---201) - BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms [1294](https://redirect.github.com/embroider-build/embroider/pull/1294), [1295](https://redirect.github.com/embroider-build/embroider/pull/1295) ### [`v1.9.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroiderutil-190---1100) - FEATURE: Make ensureSafeComponent usable with Glint [1301](https://redirect.github.com/embroider-build/embroider/pull/1301) ### [`v1.8.3`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-shim-183---184) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.2...v1.8.3) - BUGFIX: Add missing dependency [1282](https://redirect.github.com/embroider-build/embroider/pull/1282) ### [`v1.8.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v182-2022-07-04) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.1...v1.8.2) ##### :bug: Bug Fix - `compat`, `shared-internals` - [#​1230](https://redirect.github.com/embroider-build/embroider/pull/1230) Detect addons with customized treeForMethod names ([@​ef4](https://redirect.github.com/ef4)) ##### Committers: 1 - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) ### [`v1.8.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v181-2022-07-01) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.0...v1.8.1) ##### :bug: Bug Fix - `addon-dev` - [#​1227](https://redirect.github.com/embroider-build/embroider/pull/1227) add-dev: HBS files were not watched for rebuilds ([@​ef4](https://redirect.github.com/ef4)) - `compat` - [#​1224](https://redirect.github.com/embroider-build/embroider/pull/1224) Don't apply the `ember-get-config` compat adapter when >= v2.1.0 ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - `macros` - [#​1213](https://redirect.github.com/embroider-build/embroider/pull/1213) Prevent redundant toTree wrapping for macros ([@​raycohen](https://redirect.github.com/raycohen)) ##### :memo: Documentation - [#​1225](https://redirect.github.com/embroider-build/embroider/pull/1225) docs: Add lazy loaded engines EmbroiderRouter details to README ([@​richgt](https://redirect.github.com/richgt)) ##### Committers: 4 - Bert De Block ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) - Ray Cohen ([@​raycohen](https://redirect.github.com/raycohen)) - Rich Glazerman ([@​richgt](https://redirect.github.com/richgt))
embroider-build/embroider (@​embroider/test-setup) ### [`v3.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-dev-200---300) - BREAKING: `@embroider/addon-template/template-transform-plugin` is removed because `babel-plugin-ember-template-compilation >= 2.0.0` now directly supports source-to-source transformation. This plugin was used to run any custom AST transformations on your templates before publishing. To replace it: 1. Add `babel-plugin-ember-template-compilation@^2.0.0` as a devDependency. 2. Make sure you also have a devDependency on `ember-source`, so we have a template compiler. 3. Update the babel config like: ```diff plugins: [ - [ - '@​embroider/addon-dev/template-transform-plugin', - { - astTransforms: [ - ...yourPluginsHere - ] - } - ], + [ + 'babel-plugin-ember-template-compilation', + { + compilerPath: 'ember-source/dist/ember-template-compiler', + targetFormat: 'hbs', + transforms: [ + ...yourPluginsHere + ] + } + ] ] ``` See https://github.com/emberjs/babel-plugin-ember-template-compilation for the complete docs on these options. ### [`v2.1.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.0.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-202---210) - BUGFIX: hash current env into the temp workspace dir path [1318](https://redirect.github.com/embroider-build/embroider/pull/1318) - BUGFIX: add .hbs.js to the list of resolvable extensions by webpack [1307](https://redirect.github.com/embroider-build/embroider/pull/1307) - BUGFIX: Resolver transform fixes [1308](https://redirect.github.com/embroider-build/embroider/pull/1308) - BUGFIX: handle special case where rootURL is empty string [1285](https://redirect.github.com/embroider-build/embroider/pull/1285) - BUGFIX: tmpdir handling for [@​glimmer/tracking](https://redirect.github.com/glimmer/tracking) compat adapter [1302](https://redirect.github.com/embroider-build/embroider/pull/1302) ### [`v2.0.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-201---202) - BUGFIX: detect ember-template-compliation plugin correctly when other plugins are preventing parallelization [1299](https://redirect.github.com/embroider-build/embroider/pull/1299) ### [`v2.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-200---201) - BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms [1294](https://redirect.github.com/embroider-build/embroider/pull/1294), [1295](https://redirect.github.com/embroider-build/embroider/pull/1295) ### [`v1.8.3`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-shim-183---184) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.2...v1.8.3) - BUGFIX: Add missing dependency [1282](https://redirect.github.com/embroider-build/embroider/pull/1282) ### [`v1.8.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v182-2022-07-04) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.1...v1.8.2) ##### :bug: Bug Fix - `compat`, `shared-internals` - [#​1230](https://redirect.github.com/embroider-build/embroider/pull/1230) Detect addons with customized treeForMethod names ([@​ef4](https://redirect.github.com/ef4)) ##### Committers: 1 - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) ### [`v1.8.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v181-2022-07-01) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.0...v1.8.1) ##### :bug: Bug Fix - `addon-dev` - [#​1227](https://redirect.github.com/embroider-build/embroider/pull/1227) add-dev: HBS files were not watched for rebuilds ([@​ef4](https://redirect.github.com/ef4)) - `compat` - [#​1224](https://redirect.github.com/embroider-build/embroider/pull/1224) Don't apply the `ember-get-config` compat adapter when >= v2.1.0 ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - `macros` - [#​1213](https://redirect.github.com/embroider-build/embroider/pull/1213) Prevent redundant toTree wrapping for macros ([@​raycohen](https://redirect.github.com/raycohen)) ##### :memo: Documentation - [#​1225](https://redirect.github.com/embroider-build/embroider/pull/1225) docs: Add lazy loaded engines EmbroiderRouter details to README ([@​richgt](https://redirect.github.com/richgt)) ##### Committers: 4 - Bert De Block ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) - Ray Cohen ([@​raycohen](https://redirect.github.com/raycohen)) - Rich Glazerman ([@​richgt](https://redirect.github.com/richgt)) ### [`v1.8.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v180-2022-06-09) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.7.1...v1.8.0) ##### :rocket: Enhancement - `addon-dev`, `core`, `shared-internals` - [#​1199](https://redirect.github.com/embroider-build/embroider/pull/1199) Add babel plugin for preprocessing templates with ast transforms ([@​wondersloth](https://redirect.github.com/wondersloth)) ##### :bug: Bug Fix - `webpack` - [#​1191](https://redirect.github.com/embroider-build/embroider/pull/1191) Fix thread-load JOBS handling/documentation ([@​bendemboski](https://redirect.github.com/bendemboski)) - `addon-dev` - [#​1215](https://redirect.github.com/embroider-build/embroider/pull/1215) Strip extension from reexport of `rollup-app-reexports` ([@​simonihmig](https://redirect.github.com/simonihmig)) - `core` - [#​1219](https://redirect.github.com/embroider-build/embroider/pull/1219) Fix duplicate HTML content on rebuilds ([@​ef4](https://redirect.github.com/ef4)) - `compat` - [#​1205](https://redirect.github.com/embroider-build/embroider/pull/1205) Fix preprocessors tree by wrapping with moduleName ([@​wondersloth](https://redirect.github.com/wondersloth)) ##### Committers: 4 - Ben Demboski ([@​bendemboski](https://redirect.github.com/bendemboski)) - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) - Matt Edwards ([@​wondersloth](https://redirect.github.com/wondersloth)) - Simon Ihmig ([@​simonihmig](https://redirect.github.com/simonihmig))
embroider-build/embroider (@​embroider/webpack) ### [`v3.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-dev-200---300) - BREAKING: `@embroider/addon-template/template-transform-plugin` is removed because `babel-plugin-ember-template-compilation >= 2.0.0` now directly supports source-to-source transformation. This plugin was used to run any custom AST transformations on your templates before publishing. To replace it: 1. Add `babel-plugin-ember-template-compilation@^2.0.0` as a devDependency. 2. Make sure you also have a devDependency on `ember-source`, so we have a template compiler. 3. Update the babel config like: ```diff plugins: [ - [ - '@​embroider/addon-dev/template-transform-plugin', - { - astTransforms: [ - ...yourPluginsHere - ] - } - ], + [ + 'babel-plugin-ember-template-compilation', + { + compilerPath: 'ember-source/dist/ember-template-compiler', + targetFormat: 'hbs', + transforms: [ + ...yourPluginsHere + ] + } + ] ] ``` See https://github.com/emberjs/babel-plugin-ember-template-compilation for the complete docs on these options. ### [`v2.1.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://redirect.github.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://redirect.github.com/embroider-build/embroider/pull/1321) ### [`v2.0.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-202---210) - BUGFIX: hash current env into the temp workspace dir path [1318](https://redirect.github.com/embroider-build/embroider/pull/1318) - BUGFIX: add .hbs.js to the list of resolvable extensions by webpack [1307](https://redirect.github.com/embroider-build/embroider/pull/1307) - BUGFIX: Resolver transform fixes [1308](https://redirect.github.com/embroider-build/embroider/pull/1308) - BUGFIX: handle special case where rootURL is empty string [1285](https://redirect.github.com/embroider-build/embroider/pull/1285) - BUGFIX: tmpdir handling for [@​glimmer/tracking](https://redirect.github.com/glimmer/tracking) compat adapter [1302](https://redirect.github.com/embroider-build/embroider/pull/1302) ### [`v2.0.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-201---202) - BUGFIX: detect ember-template-compliation plugin correctly when other plugins are preventing parallelization [1299](https://redirect.github.com/embroider-build/embroider/pull/1299) ### [`v2.0.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-200---201) - BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms [1294](https://redirect.github.com/embroider-build/embroider/pull/1294), [1295](https://redirect.github.com/embroider-build/embroider/pull/1295) ### [`v1.9.0`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroiderutil-190---1100) - FEATURE: Make ensureSafeComponent usable with Glint [1301](https://redirect.github.com/embroider-build/embroider/pull/1301) ### [`v1.8.3`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroideraddon-shim-183---184) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.2...v1.8.3) - BUGFIX: Add missing dependency [1282](https://redirect.github.com/embroider-build/embroider/pull/1282) ### [`v1.8.2`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v182-2022-07-04) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.1...v1.8.2) ##### :bug: Bug Fix - `compat`, `shared-internals` - [#​1230](https://redirect.github.com/embroider-build/embroider/pull/1230) Detect addons with customized treeForMethod names ([@​ef4](https://redirect.github.com/ef4)) ##### Committers: 1 - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) ### [`v1.8.1`](https://redirect.github.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#v181-2022-07-01) [Compare Source](https://redirect.github.com/embroider-build/embroider/compare/v1.8.0...v1.8.1) ##### :bug: Bug Fix - `addon-dev` - [#​1227](https://redirect.github.com/embroider-build/embroider/pull/1227) add-dev: HBS files were not watched for rebuilds ([@​ef4](https://redirect.github.com/ef4)) - `compat` - [#​1224](https://redirect.github.com/embroider-build/embroider/pull/1224) Don't apply the `ember-get-config` compat adapter when >= v2.1.0 ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - `macros` - [#​1213](https://redirect.github.com/embroider-build/embroider/pull/1213) Prevent redundant toTree wrapping for macros ([@​raycohen](https://redirect.github.com/raycohen)) ##### :memo: Documentation - [#​1225](https://redirect.github.com/embroider-build/embroider/pull/1225) docs: Add lazy loaded engines EmbroiderRouter details to README ([@​richgt](https://redirect.github.com/richgt)) ##### Committers: 4 - Bert De Block ([@​bertdeblock](https://redirect.github.com/bertdeblock)) - Edward Faulkner ([@​ef4](https://redirect.github.com/ef4)) - Ray Cohen ([@​raycohen](https://redirect.github.com/raycohen)) - Rich Glazerman ([@​richgt](https://redirect.github.com/richgt))

Configuration

šŸ“… Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

šŸš¦ Automerge: Disabled by config. Please merge this manually once you are satisfied.

ā™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

šŸ‘» Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR was generated by Mend Renovate. View the repository job log.