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

Open
wants to merge 1 commit into
base: main
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/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

  • 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

v1.9.0

  • FEATURE: Make ensureSafeComponent usable with Glint 1301

v1.8.3

Compare Source

  • BUGFIX: Add missing dependency 1282

v1.8.2

Compare Source

🐛 Bug Fix
  • compat, shared-internals
Committers: 1

v1.8.1

Compare Source

🐛 Bug Fix
📝 Documentation
Committers: 4
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

v1.9.0

  • FEATURE: Make ensureSafeComponent usable with Glint 1301

v1.8.3

Compare Source

  • BUGFIX: Add missing dependency 1282

v1.8.2

Compare Source

🐛 Bug Fix
  • compat, shared-internals
Committers: 1

v1.8.1

Compare Source

🐛 Bug Fix
📝 Documentation
Committers: 4
embroider-build/embroider (@​embroider/router)

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

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

v1.9.0

  • FEATURE: Make ensureSafeComponent usable with Glint 1301

v1.8.3

Compare Source

  • BUGFIX: Add missing dependency 1282

v1.8.2

Compare Source

🐛 Bug Fix
  • compat, shared-internals
Committers: 1

v1.8.1

Compare Source

🐛 Bug Fix
📝 Documentation
Committers: 4
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

v1.8.3

Compare Source

  • BUGFIX: Add missing dependency 1282

v1.8.2

Compare Source

🐛 Bug Fix
  • compat, shared-internals
Committers: 1

v1.8.1

Compare Source

🐛 Bug Fix
📝 Documentation
Committers: 4

v1.8.0

Compare Source

🚀 Enhancement
  • addon-dev, core, shared-internals
🐛 Bug Fix
Committers: 4
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

v1.9.0

  • FEATURE: Make ensureSafeComponent usable with Glint 1301

v1.8.3

Compare Source

  • BUGFIX: Add missing dependency 1282

v1.8.2

Compare Source

🐛 Bug Fix
  • compat, shared-internals
Committers: 1

v1.8.1

Compare Source

🐛 Bug Fix
📝 Documentation
Committers: 4

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 from 50d039d to b3f808a Compare May 28, 2023 09:03
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from b3f808a to 9617e4e Compare August 2, 2023 11:13
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 9617e4e to c367124 Compare April 18, 2024 15:23
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from c367124 to f17e711 Compare June 27, 2024 12:36
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from f17e711 to 13b2147 Compare October 1, 2024 19:01
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 13b2147 to 4aa7438 Compare November 11, 2024 17:18
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