Skip to content
This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 1, 2023

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action major v2 -> v5 age adoption passing confidence
actions/checkout action major v4 -> v5 age adoption passing confidence
babel-loader dependencies major 8.3.0 -> 10.0.0 age adoption passing confidence
codecov/codecov-action action major v3 -> v5 age adoption passing confidence
concurrently dependencies major 5.3.0 -> 9.2.1 age adoption passing confidence
eslint (source) devDependencies major 7.32.0 -> 9.34.0 age adoption passing confidence
eslint-config-airbnb-base devDependencies major 14.2.1 -> 15.0.0 age adoption passing confidence
eslint-config-prettier devDependencies major 7.2.0 -> 10.1.8 age adoption passing confidence
jest (source) devDependencies major 26.6.3 -> 30.1.1 age adoption passing confidence
minimatch resolutions major ^3.0.2 -> ^10.0.0 age adoption passing confidence
node stage major 22 -> 24 age adoption passing confidence
ops (changelog) major ~= 2.17 -> ~=3.2 age adoption passing confidence
postcss-cli dependencies major 8.3.1 -> 11.0.1 age adoption passing confidence
prettier (source) devDependencies major 2.8.3 -> 3.6.2 age adoption passing confidence
stylelint (source) devDependencies major 13.13.1 -> 16.23.1 age adoption passing confidence
stylelint-config-prettier devDependencies major 8.0.2 -> 9.0.5 age adoption passing confidence
stylelint-config-standard devDependencies major 20.0.0 -> 39.0.0 age adoption passing confidence
stylelint-order devDependencies major 4.1.0 -> 7.0.0 age adoption passing confidence
ubuntu github-runner major 22.04 -> 24.04 age adoption passing confidence
ubuntu final major jammy -> noble age adoption passing confidence
ubuntu stage major jammy -> noble age adoption passing confidence
webpack-cli (source) dependencies major 4.10.0 -> 6.0.1 age adoption passing confidence

Release Notes

actions/checkout (actions/checkout)

v5

Compare Source

v4

Compare Source

v3

Compare Source

babel/babel-loader (babel-loader)

v10.0.0

Compare Source

What's Changed

Breaking Changes
  • bump node requirement to ^18.20.0 || ^20.10.0 || >=22.0.0 and webpack requirement to >= 5.61.0 by @​JLHwung in #​1026
  • breaking: use output.hashFunction as loader cache hasher by @​JLHwung in #​1027
New Features
Bug Fixes
Docs
Dependencies
Internal

New Contributors

Full Changelog: babel/babel-loader@v9.1.3...v10.0.0

v9.2.1

Compare Source

What's Changed

Full Changelog: babel/babel-loader@v9.2.0...v9.2.1

v9.2.0

Compare Source

What's Changed

Full Changelog: babel/babel-loader@v9.1.3...v9.2.0

v9.1.3

Compare Source

Security dependency updates

New Contributors

Full Changelog: babel/babel-loader@v9.1.2...v9.1.3

v9.1.2

Compare Source

9.1.1 was a broken release, it didn't include all the commits.

Dependencies updates

Misc

New Contributors

Full Changelog: babel/babel-loader@v9.1.0...v9.1.2

v9.1.1

Compare Source

v9.1.0

Compare Source

New features

Full Changelog: babel/babel-loader@v9.0.1...v9.1.0

v9.0.1

Compare Source

Bug Fixes

Full Changelog: babel/babel-loader@v9.0.0...v9.0.1

v9.0.0

Compare Source

What's Changed

  • update hash method mechanism so it doesn't fail on a fips enabled machine by @​darmbrust in #​939
  • Require babel ^7.12.0 and Node.js >= 14.15.0 versions by @​JLHwung in #​956
  • Remove dependency on loader-utils and drop webpack 4 support by @​nied in #​942

New Contributors

Full Changelog: babel/babel-loader@v8.2.5...v9.0.0

v8.4.1

Compare Source

What's Changed

Full Changelog: babel/babel-loader@v8.4.0...v8.4.1

v8.4.0

Compare Source

What's Changed

New Contributors

Full Changelog: babel/babel-loader@v8.3.0...v8.4.0

codecov/codecov-action (codecov/codecov-action)

v5

Compare Source

What's Changed

Full Changelog: https://github.com/codecov/codecov-action/compare/v5.4.3..v5.5.0

v4

Compare Source

What's Changed
open-cli-tools/concurrently (concurrently)

v9.2.1

Compare Source

What's Changed

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

v9.2.0

Compare Source

What's Changed

New Contributors

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

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


Configuration

📅 Schedule: Branch creation - "on the first day of january" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.

@webteam-app
Copy link
Collaborator

Demo starting at https://jaas-ai-715.demos.haus

@renovate renovate bot force-pushed the renovate/major-all branch 6 times, most recently from 4958909 to be0a523 Compare January 6, 2023 20:57
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from c901059 to 22c1f95 Compare January 17, 2023 15:34
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from db1af86 to cdfd2ca Compare January 24, 2023 17:37
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from 31d3e4c to ba6540e Compare February 2, 2023 16:14
@renovate renovate bot force-pushed the renovate/major-all branch 7 times, most recently from 8cd11f7 to 2643b9b Compare February 11, 2023 14:01
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from ed6e780 to 1cd6b82 Compare February 15, 2023 14:28
@renovate renovate bot force-pushed the renovate/major-all branch 8 times, most recently from a3f2127 to f287fac Compare July 3, 2025 10:12
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from bfaefee to 3f3fd1b Compare July 18, 2025 17:39
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from cff4b9a to 66af7fa Compare July 25, 2025 18:09
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from 005c8fc to ac10511 Compare July 30, 2025 04:10
@renovate renovate bot force-pushed the renovate/major-all branch 5 times, most recently from e220423 to bfb6dd6 Compare August 12, 2025 12:34
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from ce4a7be to 3e1cae9 Compare August 25, 2025 11:46
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 7e0ca9a to 1700dbe Compare August 27, 2025 18:53
@renovate renovate bot force-pushed the renovate/major-all branch from 1700dbe to 4981f95 Compare August 27, 2025 23:54
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant