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) #131

Merged
merged 1 commit into from
Aug 28, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 27, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@embroider/addon-dev ^2.0.0 -> ^4.0.0 age adoption passing confidence
@embroider/compat ^1.9.0 -> ^3.0.0 age adoption passing confidence
@embroider/core ^1.9.0 -> ^3.0.0 age adoption passing confidence
@embroider/test-setup ^1.8.3 -> ^3.0.0 age adoption passing confidence
@embroider/webpack ^1.9.0 -> ^3.0.0 age adoption passing confidence

Release Notes

embroider-build/embroider (@​embroider/addon-dev)

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/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/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.

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 - "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.


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

This PR has been generated by Mend Renovate. View repository job log here.

@changeset-bot
Copy link

changeset-bot bot commented Aug 27, 2023

⚠️ No Changeset found

Latest commit: 170fd67

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 from e4c8581 to 42c5a10 Compare August 28, 2023 01:36
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 42c5a10 to 170fd67 Compare August 28, 2023 03:50
@renovate renovate bot merged commit 34ebe87 into main Aug 28, 2023
18 checks passed
@renovate renovate bot deleted the renovate/major-embroider-monorepo branch August 28, 2023 07:36
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