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 devdependencies (major) #255

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 18, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@ember/test-helpers ^2.6.0 -> ^4.0.0 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.0.0 -> ^3.0.0 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
@glimmer/component ^1.1.2 -> ^2.0.0 age adoption passing confidence
@nullvoxpopuli/eslint-configs ^2.2.20 -> ^4.0.0 age adoption passing confidence
@tsconfig/ember (source) ^2.0.0 -> ^3.0.0 age adoption passing confidence
@​types/ember-qunit ^5.0.0 -> ^6.0.0 age adoption passing confidence
@​types/ember-resolver ^5.0.11 -> ^9.0.0 age adoption passing confidence
concurrently ^7.2.1 -> ^9.0.0 age adoption passing confidence
ember-cli (source) ~4.11.0 -> ~6.1.0 age adoption passing confidence
ember-cli-app-version ^6.0.0 -> ^7.0.0 age adoption passing confidence
ember-cli-babel ^7.26.11 -> ^8.0.0 age adoption passing confidence
ember-load-initializers ^2.1.2 -> ^3.0.0 age adoption passing confidence
ember-modifier ^3.2.7 -> ^4.0.0 age adoption passing confidence
ember-qunit ^6.0.0 -> ^9.0.0 age adoption passing confidence
ember-resolver ^8.0.3 -> ^13.0.0 age adoption passing confidence
ember-source (source) ~4.11.0 -> ~6.1.0 age adoption passing confidence
ember-template-lint ^5.0.0 -> ^6.0.0 age adoption passing confidence
ember-try ^2.0.0 -> ^3.0.0 age adoption passing confidence
eslint (source) ^8.0.0 -> ^9.0.0 age adoption passing confidence
eslint-config-prettier ^8.3.0 -> ^9.0.0 age adoption passing confidence
eslint-plugin-decorator-position ^5.0.0 -> ^6.0.0 age adoption passing confidence
eslint-plugin-ember ^11.0.0 -> ^12.0.0 age adoption passing confidence
eslint-plugin-json ^3.1.0 -> ^4.0.0 age adoption passing confidence
eslint-plugin-prettier ^4.0.0 -> ^5.0.0 age adoption passing confidence
eslint-plugin-qunit ^7.2.0 -> ^8.0.0 age adoption passing confidence
eslint-plugin-simple-import-sort ^10.0.0 -> ^12.0.0 age adoption passing confidence
prettier (source) ^2.5.1 -> ^3.0.0 age adoption passing confidence
prettier (source) ^2.0.0 -> ^3.0.0 age adoption passing confidence
qunit-dom ^2.0.0 -> ^3.0.0 age adoption passing confidence
rollup-plugin-ts ^2.0.7 -> ^3.0.0 age adoption passing confidence
typescript (source) ^4.7.2 -> ^5.0.0 age adoption passing confidence
typescript (source) ^4.5.5 -> ^5.0.0 age adoption passing confidence

Release Notes

emberjs/ember-test-helpers (@​ember/test-helpers)

v3.3.0

Compare Source

🚀 Enhancement
Committers: 1

v3.2.1: Release 3.2.1

Compare Source

🐛 Bug Fix
Committers: 1

v3.2.0: Release 3.2.0

Compare Source

🚀 Enhancement
Committers: 1

v3.1.0: Release 3.1.0

Compare Source

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

v3.0.3: Release 3.0.3

Compare Source

🐛 Bug Fix
🏠 Internal
Committers: 3

v3.0.2: Release 3.0.2

Compare Source

🐛 Bug Fix
Committers: 1

v3.0.1: Release 3.0.1

Compare Source

This is a patch release that tries to fix release v3.0.0, which was missing some items due to undocumented pre-publish steps.

v3.0.0: Release 3.0.0

Compare Source

💥 Breaking Change
🚀 Enhancement
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 16
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.

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

emberjs/ember.js (@​glimmer/component)

v2.0.0

Compare Source

  • #​11213 [BREAKING] Remove chaining in Observable.set
  • #​12036 Cleanup CP Set and Volatile
  • #​11993 [CLEANUP] Remove Ember.TrackedArray and Ember.SubArray.
  • #​11550 [BUGFIX] Ensure that specifying an observer in a child class only observes changes to the childs dependent keys.
  • #​10259 [BUGFIX] Make Ember.computed.or return the last falsey value (similar to ||).
  • #​11957 [BUGFIX] Enable Ember.DefaultResolver to properly normalize hyphens (-).
  • #​11969 / #​11959 [DEPRECATE] Deprecate usage of Ember.String.fmt.
  • #​11990 [PERF] @each should remain a stable node for chains.
  • #​11964 [BUGFIX] Update htmlbars to v0.14.2.
  • #​11965 [CLEANUP] Remove Ember.HTMLBars.makeViewHelper.
  • #​11965 [CLEANUP] Remove Ember.HTMLBars._registerHelper.
  • #​11965 [CLEANUP] Remove Ember.Handlebars.registerHelper.
  • #​11965 [CLEANUP] Remove Ember.Handlebars.makeBoundHelper.
  • #​11965 [CLEANUP] Remove Ember.Handlebars.makeViewHelper.
  • #​11965 [CLEANUP] Remove Ember.Handlebars.helper.
  • #​11965 [CLEANUP] Remove Ember.Handlebars.registerBoundHelper.
  • #​12024 [CLEANUP] Remove ComponentTemplateDeprecation mixin.
  • #​12001 [CLEANUP] Remove {{with}} keyword's controller option.
  • #​12027 [CLEANUP] Remove deprecated template access in Ember.Component.
  • #​12019 [DOC] Add helpful assertion when using @​each as a leaf in DK.
  • #​12020 [CLEANUP] Remove specifying .render method to views and components.
  • #​12027 [CLEANUP] Remove positionalParams specified to Ember.Component at extend time.
  • #​12027 [CLEANUP] Remove support for specifying template in a component.
  • #​12027 [CLEANUP] Remove deprecated template access in Ember.Component.
  • #​12028 [CLEANUP] Store actions in actions not _actions.
  • #​11854 [CLEANUP] Remove length from OrderedSet and Map.
  • #​11854 [CLEANUP] Remove OrderedSet.prototype.length.
  • [#​11854](https://redirect.github.c

Configuration

📅 Schedule: Branch creation - "after 9pm on sunday" (UTC), 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.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 18, 2024
Copy link

stackblitz bot commented Feb 18, 2024

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 655df94 to 1ee297b Compare March 10, 2024 22:56
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 1ee297b to 6f48b3a Compare March 24, 2024 21:27
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 6f48b3a to e74e101 Compare March 31, 2024 22:18
@renovate renovate bot force-pushed the renovate/major-devdependencies branch 2 times, most recently from 30f34df to af56716 Compare April 14, 2024 21:30
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from af56716 to f3c4970 Compare April 21, 2024 21:45
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from f3c4970 to 8ed65f2 Compare May 19, 2024 22:47
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 8ed65f2 to 4e26656 Compare June 2, 2024 22:08
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 4e26656 to dc079fc Compare June 9, 2024 22:21
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from dc079fc to cfec0fd Compare June 16, 2024 22:37
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from cfec0fd to f150f69 Compare June 30, 2024 21:17
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from f150f69 to d0d9110 Compare July 14, 2024 22:34
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from d0d9110 to 24f3f83 Compare August 25, 2024 23:51
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 24f3f83 to e03170b Compare September 15, 2024 22:59
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from e03170b to 9b42729 Compare September 29, 2024 21:08
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 9b42729 to b1250fb Compare October 6, 2024 21:27
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from b1250fb to 067f209 Compare November 3, 2024 23:06
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 067f209 to 34cc1a7 Compare November 17, 2024 22:01
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 34cc1a7 to 6b70b51 Compare December 22, 2024 21:24
@renovate renovate bot force-pushed the renovate/major-devdependencies branch from 6b70b51 to 5b6281a Compare December 29, 2024 21:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants