Closed renovate[bot] closed 1 year ago
Latest commit: 170fd67f9965bf2a93110752261daeec05ea81e4
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
This PR contains the following updates:
^2.0.0
->^4.0.0
^1.9.0
->^3.0.0
^1.9.0
->^3.0.0
^1.8.3
->^3.0.0
^1.9.0
->^3.0.0
Release Notes
embroider-build/embroider (@embroider/addon-dev)
### [`v3.0.0`](https://togithub.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://togithub.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://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://togithub.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://togithub.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://togithub.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://togithub.com/embroider-build/embroider/pull/1321) ### [`v2.0.2`](https://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-202---210) - BUGFIX: hash current env into the temp workspace dir path [1318](https://togithub.com/embroider-build/embroider/pull/1318) - BUGFIX: add .hbs.js to the list of resolvable extensions by webpack [1307](https://togithub.com/embroider-build/embroider/pull/1307) - BUGFIX: Resolver transform fixes [1308](https://togithub.com/embroider-build/embroider/pull/1308) - BUGFIX: handle special case where rootURL is empty string [1285](https://togithub.com/embroider-build/embroider/pull/1285) - BUGFIX: tmpdir handling for [@glimmer/tracking](https://togithub.com/glimmer/tracking) compat adapter [1302](https://togithub.com/embroider-build/embroider/pull/1302) ### [`v2.0.1`](https://togithub.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://togithub.com/embroider-build/embroider/pull/1299) ### [`v2.0.0`](https://togithub.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://togithub.com/embroider-build/embroider/pull/1294), [1295](https://togithub.com/embroider-build/embroider/pull/1295)embroider-build/embroider (@embroider/core)
### [`v3.0.0`](https://togithub.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://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://togithub.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://togithub.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://togithub.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://togithub.com/embroider-build/embroider/pull/1321) ### [`v2.0.2`](https://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-202---210) - BUGFIX: hash current env into the temp workspace dir path [1318](https://togithub.com/embroider-build/embroider/pull/1318) - BUGFIX: add .hbs.js to the list of resolvable extensions by webpack [1307](https://togithub.com/embroider-build/embroider/pull/1307) - BUGFIX: Resolver transform fixes [1308](https://togithub.com/embroider-build/embroider/pull/1308) - BUGFIX: handle special case where rootURL is empty string [1285](https://togithub.com/embroider-build/embroider/pull/1285) - BUGFIX: tmpdir handling for [@glimmer/tracking](https://togithub.com/glimmer/tracking) compat adapter [1302](https://togithub.com/embroider-build/embroider/pull/1302) ### [`v2.0.1`](https://togithub.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://togithub.com/embroider-build/embroider/pull/1299) ### [`v2.0.0`](https://togithub.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://togithub.com/embroider-build/embroider/pull/1294), [1295](https://togithub.com/embroider-build/embroider/pull/1295)embroider-build/embroider (@embroider/test-setup)
### [`v3.0.0`](https://togithub.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://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://togithub.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://togithub.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://togithub.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://togithub.com/embroider-build/embroider/pull/1321) ### [`v2.0.2`](https://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-202---210) - BUGFIX: hash current env into the temp workspace dir path [1318](https://togithub.com/embroider-build/embroider/pull/1318) - BUGFIX: add .hbs.js to the list of resolvable extensions by webpack [1307](https://togithub.com/embroider-build/embroider/pull/1307) - BUGFIX: Resolver transform fixes [1308](https://togithub.com/embroider-build/embroider/pull/1308) - BUGFIX: handle special case where rootURL is empty string [1285](https://togithub.com/embroider-build/embroider/pull/1285) - BUGFIX: tmpdir handling for [@glimmer/tracking](https://togithub.com/glimmer/tracking) compat adapter [1302](https://togithub.com/embroider-build/embroider/pull/1302) ### [`v2.0.1`](https://togithub.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://togithub.com/embroider-build/embroider/pull/1299) ### [`v2.0.0`](https://togithub.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://togithub.com/embroider-build/embroider/pull/1294), [1295](https://togithub.com/embroider-build/embroider/pull/1295)embroider-build/embroider (@embroider/webpack)
### [`v3.0.0`](https://togithub.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://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://togithub.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://togithub.com/embroider-build/embroider/pull/1321) ### [`v2.1.0`](https://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-embroidercore-embroidertest-setup-embroiderwebpack-210---211) - BUGFIX: Support ember-cli-babel >= 8 [1334](https://togithub.com/embroider-build/embroider/pull/1334) - INTERNAL: Upgrade resolver tests [1321](https://togithub.com/embroider-build/embroider/pull/1321) ### [`v2.0.2`](https://togithub.com/embroider-build/embroider/blob/HEAD/CHANGELOG.md#embroidercompat-202---210) - BUGFIX: hash current env into the temp workspace dir path [1318](https://togithub.com/embroider-build/embroider/pull/1318) - BUGFIX: add .hbs.js to the list of resolvable extensions by webpack [1307](https://togithub.com/embroider-build/embroider/pull/1307) - BUGFIX: Resolver transform fixes [1308](https://togithub.com/embroider-build/embroider/pull/1308) - BUGFIX: handle special case where rootURL is empty string [1285](https://togithub.com/embroider-build/embroider/pull/1285) - BUGFIX: tmpdir handling for [@glimmer/tracking](https://togithub.com/glimmer/tracking) compat adapter [1302](https://togithub.com/embroider-build/embroider/pull/1302) ### [`v2.0.1`](https://togithub.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://togithub.com/embroider-build/embroider/pull/1299) ### [`v2.0.0`](https://togithub.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://togithub.com/embroider-build/embroider/pull/1294), [1295](https://togithub.com/embroider-build/embroider/pull/1295)Configuration
š Schedule: Branch creation - "after 9pm on sunday" (UTC), Automerge - At any time (no schedule defined).
š¦ Automerge: Enabled.
ā» 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 has been generated by Mend Renovate. View repository job log here.