Skip to content

fix(deps): update major dependencies (major) #2

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

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 23, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@ember/render-modifiers ^2.0.5 -> ^3.0.0 age adoption passing confidence
@ember/string ^3.0.1 -> ^4.0.1 age adoption passing confidence
@ember/test-helpers ^2.9.3 -> ^5.2.2 age adoption passing confidence
concurrently ^7.6.0 -> ^9.1.2 age adoption passing confidence
ember-cli-babel ^7.26.11 -> ^8.2.0 age adoption passing confidence
ember-cli-code-coverage (source) ^2.0.0 -> ^3.1.0 age adoption passing confidence
ember-load-initializers ^2.1.2 -> ^3.0.1 age adoption passing confidence
ember-page-title (source) ^7.0.0 -> ^9.0.1 age adoption passing confidence
ember-qunit ^6.2.0 -> ^9.0.2 age adoption passing confidence
ember-resolver ^10.0.0 -> ^13.1.0 age adoption passing confidence
ember-source (source) ^3.28.0 || ^4.0.0 -> ^3.28.0 || ^4.0.0 || ^6.0.0 age adoption passing confidence
ember-source (source) ~4.11.0 -> ~6.4.0 age adoption passing confidence
ember-template-lint ^5.6.0 -> ^7.6.0 age adoption passing confidence
ember-truth-helpers ^3.1.1 -> ^4.0.3 age adoption passing confidence
ember-try ^2.0.0 -> ^4.0.0 age adoption passing confidence
eslint-config-prettier ^8.6.0 -> ^10.1.5 age adoption passing confidence
eslint-plugin-ember ^11.4.7 -> ^12.5.0 age adoption passing confidence
eslint-plugin-n ^15.6.1 -> ^17.18.0 age adoption passing confidence
eslint-plugin-prettier ^4.2.1 -> ^5.4.0 age adoption passing confidence
eslint-plugin-qunit ^7.3.4 -> ^8.1.2 age adoption passing confidence
husky ^4.3.8 -> ^9.1.7 age adoption passing confidence
prettier (source) ^2.8.4 -> ^3.5.3 age adoption passing confidence
pretty-quick ^3.1.3 -> ^4.1.1 age adoption passing confidence
qunit-dom ^2.0.0 -> ^3.4.0 age adoption passing confidence
rimraf ^4.4.1 -> ^6.0.1 age adoption passing confidence
tracked-built-ins ^3.1.1 -> ^4.0.0 age adoption passing confidence

cc @tzellman


Release Notes

emberjs/ember-render-modifiers (@​ember/render-modifiers)

v3.0.0

Compare Source

💥 Breaking Change
🚀 Enhancement
📝 Documentation
🏠 Internal
Committers: 4

v2.1.0

Compare Source

🚀 Enhancement
🏠 Internal
Committers: 3
emberjs/ember-string (@​ember/string)

v3.1.1

Compare Source

🐛 Bug Fix
Committers: 1

v3.1.0

Compare Source

🚀 Enhancement
🏠 Internal
Committers: 1
emberjs/ember-test-helpers (@​ember/test-helpers)

v3.3.0

Compare Source

🚀 Enhancement
Committers: 1

v3.2.1

Compare Source

🐛 Bug Fix
Committers: 1

v3.2.0

Compare Source

🚀 Enhancement
Committers: 1

v3.1.0

Compare Source

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

v3.0.3

Compare Source

🐛 Bug Fix
🏠 Internal
Committers: 3

v3.0.2

Compare Source

🐛 Bug Fix
Committers: 1

v3.0.1

Compare Source

v3.0.0

Compare Source

💥 Breaking Change
🚀 Enhancement
🐛 Bug Fix
📝 Documentation
🏠 Internal
Committers: 16

v2.9.6: Release 2.9.6

Compare Source

Republish with built assets, as v2.9.5 did not have them.

v2.9.5: Release 2.9.5

Compare Source

🐛 Bug Fix
Committers: 1

v2.9.4: Release 2.9.4

Compare Source

🐛 Bug Fix
Committers: 1
open-cli-tools/concurrently (concurrently)

v9.1.2

Compare Source

What's Changed
New Contributors

Full Changelog: open-cli-tools/concurrently@v9.1.1...v9.1.2

v9.1.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.1.0...v9.1.1

v9.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0

v9.0.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v9.0.0...v9.0.1

v9.0.0

Compare Source

💥 Breaking Changes

  • Dropped support for Node.js < 18.0.0.
    Older Node.js version have reached end-of-life, and certain features require new-ish JS APIs.

  • Pending commands no longer run when --max-processes is set and an interruption/kill signal is sent - #​433, #​452, #​460
    Before v9.0.0, pressing Ctrl+C when --max-processes is set meant that only those commands would receive it. Once these stopped, the pending commands would start, which in turn meant that another Ctrl+C press would be necessary to stop them, and so on.
    Similar situation applied to combining --max-processes with --kill-others/--kill-others-on-fail.

    Starting with v9.0.0, this no longer happens, as these flags and/or key presses send a signal to stop the running commands in addition to preventing new commands from running.

  • The concurrently and default exports are now the same - #​399
    It's reasonable to expect that import { concurrently } from 'concurrently' would work the same as import concurrently from 'concurrently', however this has not been the case.
    The former used to be an unconfigured version of concurrently, lacking all features that you'd get from the CLI, which was seen as a "footgun". Both are now the same function.

    If you'd like to access the unconfigured function, use import { createConcurrently } from 'concurrently' instead.

✨ New Features

  • Exponential back-off support for process restarting - #​265, #​462
    Use --restart-after exponential. Restarts happen at 2^N seconds.
  • Add prefix padding via new --pad-prefix flag - #​166, #​417, #​495
  • Specify teardown commands via new --teardown flag - #​472, #​500
  • Expand node:<script> commands to node --run <script> - #​475
  • [API only] Inter-Process Communication (ipc) - #​498
  • [API only] Make it possible to use no colors at all - #​466
  • [API only] Add a state field to Command - #​455

🐛 Bug Fixes

Other Changes

New Contributors

Full Changelog: open-cli-tools/concurrently@v8.2.2...v9.0.0

v8.2.2

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v8.2.1...v8.2.2

v8.2.1

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v8.2.0...v8.2.1

v8.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v8.1.0...v8.2.0

v8.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v8.0.1...v8.1.0

v8.0.1

Compare Source

What's Changed

Full Changelog: open-cli-tools/concurrently@v8.0.0...v8.0.1

v8.0.0

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v7.6.0...v8.0.0


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 added the deps label Apr 23, 2021
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch from b9082db to 11722f5 Compare May 13, 2021 19:54
@renovate renovate bot changed the title chore(deps): update dependency husky to v6 chore(deps): update major dependencies (major) May 13, 2021
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch from 11722f5 to d360b62 Compare May 24, 2021 17:14
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 2 times, most recently from eb19dbb to 7a569ce Compare July 1, 2021 06:45
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch from 7a569ce to 22a9bbc Compare July 6, 2021 10:56
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 2 times, most recently from 0e0787d to 826367c Compare August 16, 2021 11:08
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 4 times, most recently from 5298c37 to 5220081 Compare August 31, 2021 21:15
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 2 times, most recently from 2f2f1e2 to 5388c55 Compare September 13, 2021 15:28
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch from 5388c55 to df4b6ab Compare September 22, 2021 23:10
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 5 times, most recently from c620650 to e0849bd Compare October 11, 2021 14:33
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 4 times, most recently from befcb5c to d867ee2 Compare October 21, 2021 02:19
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 4 times, most recently from c814504 to 5c6e02f Compare October 28, 2021 04:55
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch from 5c6e02f to d9a449b Compare October 28, 2021 11:01
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch from 2f0c39d to 84bc0a3 Compare March 9, 2025 22:38
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 2 times, most recently from c0cb57b to dff5c8c Compare March 26, 2025 02:10
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 5 times, most recently from 0d9e688 to bb7ed86 Compare April 2, 2025 14:45
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 4 times, most recently from ac2c44e to 6cb41db Compare April 6, 2025 22:15
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 5 times, most recently from 78ae33f to a79d3c9 Compare April 18, 2025 13:35
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 3 times, most recently from 5c1211d to d9265d0 Compare April 30, 2025 20:12
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch 8 times, most recently from affb880 to 1bdb98c Compare May 11, 2025 05:57
@renovate renovate bot force-pushed the renovate/major-major-dependencies branch from 1bdb98c to b1c2836 Compare May 12, 2025 02:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants