Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update embroider monorepo (major) #440

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 23, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@embroider/compat (source) 1.9.0 -> 3.6.5 age adoption passing confidence
@embroider/core (source) 1.9.0 -> 3.4.19 age adoption passing confidence
@embroider/webpack (source) 1.9.0 -> 4.0.8 age adoption passing confidence

Release Notes

embroider-build/embroider (@​embroider/compat)

v3.0.0

  • 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:

      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

  • BUGFIX: Support ember-cli-babel >= 8 1334
  • INTERNAL: Upgrade resolver tests 1321

v2.1.0

  • BUGFIX: Support ember-cli-babel >= 8 1334
  • INTERNAL: Upgrade resolver tests 1321

v2.0.2

  • BUGFIX: hash current env into the temp workspace dir path 1318
  • BUGFIX: add .hbs.js to the list of resolvable extensions by webpack 1307
  • BUGFIX: Resolver transform fixes 1308
  • BUGFIX: handle special case where rootURL is empty string 1285
  • BUGFIX: tmpdir handling for @​glimmer/tracking compat adapter 1302

v2.0.1

  • BUGFIX: detect ember-template-compliation plugin correctly when other plugins are preventing parallelization 1299

v2.0.0

  • BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms 1294, 1295
embroider-build/embroider (@​embroider/core)

v3.0.0

  • 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:

      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

  • BUGFIX: Support ember-cli-babel >= 8 1334
  • INTERNAL: Upgrade resolver tests 1321

v2.1.0

  • BUGFIX: Support ember-cli-babel >= 8 1334
  • INTERNAL: Upgrade resolver tests 1321

v2.0.2

  • BUGFIX: hash current env into the temp workspace dir path 1318
  • BUGFIX: add .hbs.js to the list of resolvable extensions by webpack 1307
  • BUGFIX: Resolver transform fixes 1308
  • BUGFIX: handle special case where rootURL is empty string 1285
  • BUGFIX: tmpdir handling for @​glimmer/tracking compat adapter 1302

v2.0.1

  • BUGFIX: detect ember-template-compliation plugin correctly when other plugins are preventing parallelization 1299

v2.0.0

  • BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms 1294, 1295
embroider-build/embroider (@​embroider/webpack)

v3.0.0

  • 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:

      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

  • BUGFIX: Support ember-cli-babel >= 8 1334
  • INTERNAL: Upgrade resolver tests 1321

v2.1.0

  • BUGFIX: Support ember-cli-babel >= 8 1334
  • INTERNAL: Upgrade resolver tests 1321

v2.0.2

  • BUGFIX: hash current env into the temp workspace dir path 1318
  • BUGFIX: add .hbs.js to the list of resolvable extensions by webpack 1307
  • BUGFIX: Resolver transform fixes 1308
  • BUGFIX: handle special case where rootURL is empty string 1285
  • BUGFIX: tmpdir handling for @​glimmer/tracking compat adapter 1302

v2.0.1

  • BUGFIX: detect ember-template-compliation plugin correctly when other plugins are preventing parallelization 1299

v2.0.0

  • BUGFIX: 2.0.0 broke template-only components in addons with custom AST transforms 1294, 1295

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.


  • If you want to rebase/retry this PR, check this box

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

@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 8dceff2 to fafdf66 Compare November 30, 2022 16:23
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from fafdf66 to cdf2b57 Compare February 21, 2023 12:39
@renovate renovate bot changed the title Update embroider monorepo to v2 (major) Update embroider monorepo to v3 (major) May 28, 2023
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from cdf2b57 to 5fe2470 Compare May 28, 2023 11:31
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 5fe2470 to 42b0217 Compare June 6, 2023 16:29
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 42b0217 to 43cd122 Compare June 13, 2023 20:23
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 4 times, most recently from 385aaff to 89a9b5b Compare July 1, 2023 05:28
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 89a9b5b to 9894ea8 Compare July 13, 2023 03:50
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 9894ea8 to e4e2505 Compare July 21, 2023 17:05
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from e4e2505 to 060b03f Compare August 2, 2023 10:46
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 6c4ddc2 to 6d9b9ab Compare October 6, 2023 16:34
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from fb1a480 to b1ad422 Compare November 17, 2023 09:21
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from b1ad422 to 79005eb Compare November 28, 2023 21:56
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from d91e2b3 to eb50b54 Compare December 13, 2023 22:19
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from eb50b54 to d9f7fa6 Compare December 23, 2023 19:30
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from d9f7fa6 to 9afd06c Compare February 1, 2024 22:04
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 9afd06c to 7f1f06f Compare February 28, 2024 16:16
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 7f1f06f to 3b620d5 Compare March 7, 2024 20:09
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 3b620d5 to 101f997 Compare April 10, 2024 16:36
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 101f997 to 0b9c4bf Compare April 18, 2024 14:32
@renovate renovate bot changed the title Update embroider monorepo to v3 (major) Update embroider monorepo (major) Apr 18, 2024
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 0b9c4bf to 40bc0ac Compare April 30, 2024 14:04
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 40bc0ac to 596a984 Compare May 8, 2024 04:02
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 596a984 to f341c5a Compare May 29, 2024 04:00
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from 45d644d to 9b56047 Compare June 13, 2024 16:53
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 5c9250a to b668762 Compare June 25, 2024 16:36
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from b668762 to 45c9521 Compare July 3, 2024 13:00
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from d2a3f35 to 32c2298 Compare July 18, 2024 14:30
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 32c2298 to 189c841 Compare August 30, 2024 16:10
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 189c841 to b09cbca Compare September 21, 2024 01:08
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from b09cbca to 878b2b2 Compare October 1, 2024 16:47
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 53d9eb4 to 8ed4ac6 Compare October 9, 2024 10:51
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 8ed4ac6 to 3310c43 Compare October 10, 2024 08:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants