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

Merged
merged 1 commit into from
Oct 7, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 19, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@embroider/compat 0.48.1 -> 3.2.3 age adoption passing confidence
@embroider/core 0.48.1 -> 3.3.0 age adoption passing confidence
@embroider/macros 0.48.1 -> 1.13.2 age adoption passing confidence
@embroider/webpack 0.48.1 -> 3.2.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.

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

v1.8.0

Compare Source

🚀 Enhancement
  • addon-dev, core, shared-internals
🐛 Bug Fix
Committers: 4

v1.7.1

Compare Source

🐛 Bug Fix
Committers: 1

v1.7.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 6

v1.6.0

Compare Source

🚀 Enhancement
  • addon-dev, compat, core, hbs-loader, shared-internals, webpack
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 5

v1.5.0

Compare Source

🚀 Enhancement
  • util
🐛 Bug Fix
Committers: 2

v1.4.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Committers: 2

v1.3.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 10

v1.2.0

Compare Source

🚀 Enhancement
  • compat
  • macros
    • #​1119 Reuse the loc of the macroMaybeAttrs hashes for the created attributes (@​Windvis)
📝 Documentation
🏠 Internal
Committers: 3

v1.1.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 9

v1.0.0

Compare Source

Declaring this as 1.0 to signifiy general level of stability and to give us more flexibility to distinguish minor and patch releases.

:internal: Internal
  • Renamed default branch from master to main.
🐛 Bug Fix
Committers: 1

v0.50.2

Compare Source

🐛 Bug Fix
Committers: 1

v0.50.1

Compare Source

🐛 Bug Fix
  • core
    • #​1074 Ensure babelFilter config comes from fully qualified @embroider/core path in Stage 2 (@​krisselden)
  • compat, core, macros, shared-internals
    • #​1070 Ensure dependencySatisfies only considers actual dependencies (includes a fix for invalid results within monorepo scenarios) (@​NullVoxPopuli)
Committers: 2

v0.50.0

Compare Source

🚀 Enhancement
  • addon-shim, core, shared-internals
🐛 Bug Fix
  • compat
Committers: 1

v0.49.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
🏠 Internal
Committers: 6
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

v1.8.0

Compare Source

🚀 Enhancement
  • addon-dev, core, shared-internals
🐛 Bug Fix
Committers: 4

v1.7.1

Compare Source

🐛 Bug Fix
Committers: 1

v1.7.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 6

v1.6.0

Compare Source

🚀 Enhancement
  • addon-dev, compat, core, hbs-loader, shared-internals, webpack
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 5

v1.5.0

Compare Source

🚀 Enhancement
  • util
🐛 Bug Fix
Committers: 2

v1.4.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Committers: 2

v1.3.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 10

v1.2.0

Compare Source

🚀 Enhancement
  • compat
  • macros
    • #​1119 Reuse the loc of the macroMaybeAttrs hashes for the created attributes (@​Windvis)
📝 Documentation
🏠 Internal
Committers: 3

v1.1.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 9

v1.0.0

Compare Source

Declaring this as 1.0 to signifiy general level of stability and to give us more flexibility to distinguish minor and patch releases.

:internal: Internal
  • Renamed default branch from master to main.
🐛 Bug Fix
Committers: 1

v0.50.2

Compare Source

🐛 Bug Fix
Committers: 1

v0.50.1

Compare Source

🐛 Bug Fix
  • core
    • #​1074 Ensure babelFilter config comes from fully qualified @embroider/core path in Stage 2 (@​krisselden)
  • compat, core, macros, shared-internals
    • #​1070 Ensure dependencySatisfies only considers actual dependencies (includes a fix for invalid results within monorepo scenarios) (@​NullVoxPopuli)
Committers: 2

v0.50.0

Compare Source

🚀 Enhancement
  • addon-shim, core, shared-internals
🐛 Bug Fix
  • compat
Committers: 1

v0.49.0

Compare Source

🚀 Enhancement

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 4ef8c8a to 31e71fa Compare January 19, 2022 18:04
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 5 times, most recently from f5ef8d3 to 7a1addf Compare January 31, 2022 20:13
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from 4eb7128 to 8a08940 Compare February 10, 2022 16:01
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 4 times, most recently from 6141c71 to af0c214 Compare February 21, 2022 03:51
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 685d160 to 8df8c1a Compare February 28, 2022 03:15
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 5 times, most recently from b88d8b4 to 176f4fc Compare March 8, 2022 05:06
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 176f4fc to 69d33d3 Compare March 14, 2022 03:52
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from dcc0cfe to 5976afb Compare March 28, 2022 03:30
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 5 times, most recently from fdfcca9 to 31ede52 Compare April 7, 2022 22:09
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 11ca7e8 to 8396c31 Compare April 11, 2022 04:15
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from aad9bf8 to f5f90a6 Compare July 10, 2023 05:07
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from 1adc347 to 940b326 Compare July 18, 2023 04:32
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from c525ebb to 50a0151 Compare July 24, 2023 03:17
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 618f246 to 93716bb Compare August 2, 2023 11:37
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from c1f9dc2 to b5e7faa Compare August 8, 2023 18:42
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 88d4f32 to a799268 Compare August 21, 2023 05:08
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from a799268 to 1af8b38 Compare August 28, 2023 03:17
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 31700c7 to 1ddea3d Compare September 11, 2023 04:01
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 0e0990c to c322af6 Compare September 18, 2023 04:12
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 9b61fd8 to 55a562e Compare September 29, 2023 16:12
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 3 times, most recently from dc1318b to b7d0d9b Compare October 6, 2023 17:14
@renovate renovate bot changed the title Update embroider monorepo (major) chore(deps): update embroider monorepo (major) Oct 6, 2023
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch 2 times, most recently from 18758db to 7aafae7 Compare October 6, 2023 23:47
@renovate renovate bot force-pushed the renovate/major-embroider-monorepo branch from 7aafae7 to 126be5e Compare October 7, 2023 01:40
@BobrImperator BobrImperator merged commit dbb1385 into master Oct 7, 2023
7 checks passed
@BobrImperator BobrImperator deleted the renovate/major-embroider-monorepo branch October 7, 2023 20:24
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.

None yet

3 participants