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

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

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 2, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@embroider/addon-dev (source) ^3.0.0 -> ^7.0.0 age adoption passing confidence
@embroider/compat (source) ^2.0.0 -> ^3.0.0 age adoption passing confidence
@embroider/core (source) 2.1.1 -> 3.4.20 age adoption passing confidence
@embroider/test-setup (source) ^2.0.0 -> ^4.0.0 age adoption passing confidence
@embroider/webpack (source) ^2.0.0 -> ^4.0.0 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.

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.

embroider-build/embroider (@​embroider/test-setup)

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.

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.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@changeset-bot
Copy link

changeset-bot bot commented Aug 2, 2023

⚠️ No Changeset found

Latest commit: 74dbd42

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.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

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

@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 8 times, most recently from 1e1769e to f9cb420 Compare August 8, 2023 01:26
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 6 times, most recently from 717b798 to b848b7c Compare August 15, 2023 19:10
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from 91ab738 to cee1836 Compare August 21, 2023 02:16
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from 60aa3cb to 9a993b6 Compare August 31, 2023 21:09
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from 0dce847 to 92e44e1 Compare September 7, 2023 08:40
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from bfeefad to c76f313 Compare September 18, 2023 03:50
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from c76f313 to 010e02c Compare September 18, 2023 18:15
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 51e5751 to 5bd2976 Compare December 6, 2024 22:09
@renovate renovate bot changed the title chore(deps): update embroider monorepo (major) chore(deps): update embroider monorepo (major) - autoclosed Dec 8, 2024
@renovate renovate bot closed this Dec 8, 2024
@renovate renovate bot deleted the renovate/major-embroider-monorepo branch December 8, 2024 18:44
@renovate renovate bot changed the title chore(deps): update embroider monorepo (major) - autoclosed chore(deps): update embroider monorepo (major) Dec 9, 2024
@renovate renovate bot reopened this Dec 9, 2024
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 5 times, most recently from ee908f1 to 5b11d88 Compare December 16, 2024 00:17
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 8 times, most recently from 320a8f0 to 6e13167 Compare December 21, 2024 13:37
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 6 times, most recently from e06db87 to 1bbf731 Compare December 31, 2024 09:57
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 86b6d7a to 0029048 Compare January 6, 2025 05:22
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 0029048 to 74dbd42 Compare January 6, 2025 10:44
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