Skip to content

Update all dependencies (major)#69

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all
Open

Update all dependencies (major)#69
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-all

Conversation

@renovate

@renovate renovate Bot commented Jan 1, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action major v3v7 age adoption passing confidence
concurrently dependencies major 7.6.010.0.3 age adoption passing confidence
node stage major 1926 age adoption passing confidence
postcss-cli dependencies major 10.1.011.0.1 age adoption passing confidence
prettier (source) dependencies major 2.8.13.9.1 age adoption passing confidence
stylelint (source) dependencies major 14.16.117.14.0 age adoption passing confidence
stylelint-config-recommended-scss dependencies major 8.0.017.0.1 age adoption passing confidence
stylelint-order dependencies major 5.0.08.1.1 age adoption passing confidence
stylelint-prettier dependencies major 2.0.05.0.3 age adoption passing confidence
ubuntu final major jammyresolute age adoption passing confidence
ubuntu stage major jammyresolute age adoption passing confidence

Release Notes

actions/checkout (actions/checkout)

v7.0.0

Compare Source

v7

Compare Source

v6.0.3

Compare Source

v6.0.2

Compare Source

v6.0.1

Compare Source

v6.0.0

Compare Source

v6

Compare Source

v5.0.1

Compare Source

v5.0.0

Compare Source

v5

Compare Source

v4.3.1

Compare Source

v4.3.0

Compare Source

v4.2.2

Compare Source

v4.2.1

Compare Source

v4.2.0

Compare Source

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

v4.1.4

Compare Source

v4.1.3

Compare Source

v4.1.2

Compare Source

  • Fix: Disable sparse checkout whenever sparse-checkout option is not present @​dscho in #​1598

v4.1.1

Compare Source

v4.1.0

Compare Source

v4.0.0

Compare Source

v4

Compare Source

open-cli-tools/concurrently (concurrently)

v10.0.3

Compare Source

Republish of https://github.com/open-cli-tools/concurrently/releases/tag/v10.0.1 with Trusted Publishing enabled (see #​595)

Full Changelog: open-cli-tools/concurrently@v10.0.2...v10.0.3

v10.0.1

Compare Source

  • Ensure FlowController type is exported - #​594

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

v10.0.0

Compare Source

💥 Breaking Changes

  • Dropped support for Node.js <22.0.0.
    Older Node.js version have reached end-of-life, and certain features require new-ish JS APIs.
  • concurrently is now ESM-only.
    It's now possible to require(esm). See here for interoperability.
  • Prefix colors now default to automatic - #​581
    The colors used to default to reset (which does nothing). Concurrently now automatically selects a color, out of the box.
    The list of colors used is not jarring nor carries semantic meaning, and reads well in both dark and light terminal backgrounds.
  • Removed deprecated flags and options
    • CLI flag --name-separator: use commas instead.
    • API option killOthers: use killOthersOn instead.

✨ New Features

  • Support applying modifiers to hex prefix colors (e.g. #ff0000.bold) - #​450
  • Support chalk's color functions in prefixes (e.g. rgb(), hex(), bgRgb(), etc) - #​578
  • Set prefix background color via bg#RRGGBB - #​578
  • Allow shell override via --shell CLI flag/shell API option - #​288, #​589, #​556
    concurrently distinguishes between cmd.exe, powershell, and POSIX-based shells.
  • Manual prefix coloring in templates e.g. [{color}{name}{/color}] - #​583, #​587

🐛 Bug fixes

  • Scope quote normalization to CLI input - #​582, #​585
    It should now also be possible to run commands like "/some/command" foo bar"
  • Don't throw when color doesn't exist - #​580

🔐 Security

Other changes

  • Warn about running on Snap - #​584

New Contributors

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

v9.2.3

Compare Source

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

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

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

nodejs/node (node)

v26

Moved to doc/changelogs/CHANGELOG_V6.md#6.0.0.

v25

Moved to doc/changelogs/CHANGELOG_V012.md#0.12.8.

v24

Moved to doc/changelogs/CHANGELOG_IOJS.md#2.1.0.

v23

Moved to doc/changelogs/CHANGELOG_V6.md#6.1.0.

v22

Moved to doc/changelogs/CHANGELOG_V4.md#4.4.1.

v21

Moved to doc/changelogs/CHANGELOG_V4.md#4.2.6.

postcss/postcss-cli (postcss-cli)

v11.0.1

Compare Source

  • Update and minimize dependencies

v11.0.0

Compare Source

prettier/prettier (prettier)

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

v3.8.4

Compare Source

diff

Markdown: Fix blank lines between list items and nested sub-lists being removed in Markdown/MDX (#​17746 by @​byplayer)

Prettier was removing blank lines between list items and their nested sub-lists, converting loose lists into tight lists and changing their semantic meaning.

<!-- Input -->
- a

  - b

- c

  - d

<!-- Prettier 3.8.3 -->
- a
  - b
- c
  - d

<!-- Prettier 3.8.4 -->
- a

  - b

- c

  - d

v3.8.3

Compare Source

diff

SCSS: Prevent trailing comma in if() function (#​18471 by @​kovsu)
// Input
$value: if(sass(false): 1; else: -1);

// Prettier 3.8.2
$value: if(
  sass(false): 1; else: -1,
);

// Prettier 3.8.3
$value: if(sass(false): 1; else: -1);

v3.8.2

Compare Source

diff

Angular: Support Angular v21.2 (#​18722, #​19034 by @​fisker)

Exhaustive typechecking with @default never;

<!-- Input -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

<!-- Prettier 3.8.1 -->
SyntaxError: Incomplete block "default never". If you meant to write the @&#8203; character, you should use the "&#&#8203;64;" HTML entity instead. (3:3)

<!-- Prettier 3.8.2 -->
@&#8203;switch (foo) {
  @&#8203;case (1) {}
  @&#8203;default never;
}

arrow function and instanceof expressions.

<!-- Input -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.1 -->
@&#8203;let fn = (a) =>        a?    1:2;

{{ fn ( a         instanceof b)}}

<!-- Prettier 3.8.2 -->
@&#8203;let fn = (a) => (a ? 1 : 2);

{{ fn(a instanceof b) }}

v3.8.1

Compare Source

diff

Include available printers in plugin type declarations (#​18706 by @​porada)
// Input
import * as prettierPluginEstree from "prettier/plugins/estree";

// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any

// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

v3.8.0

Compare Source

diff

🔗 Release Notes

v3.7.4

[Compar

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "on the first day of january"
  • 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.

@webteam-app

Copy link
Copy Markdown

Demo starting at https://pythonoperatorframework-io-69.demos.haus

@codecov

codecov Bot commented Jan 1, 2024

Copy link
Copy Markdown

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 94.44%. Comparing base (4d2fec1) to head (e77aee0).
Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #69   +/-   ##
=======================================
  Coverage   94.44%   94.44%           
=======================================
  Files           2        2           
  Lines          18       18           
=======================================
  Hits           17       17           
  Misses          1        1           
Flag Coverage Δ
python 94.44% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate Bot force-pushed the renovate/major-all branch 6 times, most recently from 545b97b to 301ba7a Compare January 19, 2024 10:06
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 53e7b10 to e929963 Compare February 4, 2024 08:08
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from d7dada8 to 4cd4c7a Compare March 26, 2024 13:25
@renovate renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from fc8af85 to cf06835 Compare April 26, 2024 21:27
@renovate renovate Bot force-pushed the renovate/major-all branch from cf06835 to 0835b52 Compare May 2, 2024 10:20
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 0210f7a to 691167a Compare May 28, 2024 13:35
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from e889221 to c301a96 Compare June 5, 2024 11:59
@renovate renovate Bot force-pushed the renovate/major-all branch from c301a96 to 281c869 Compare June 11, 2024 10:31
@renovate renovate Bot force-pushed the renovate/major-all branch 4 times, most recently from b1f4601 to e77aee0 Compare July 14, 2024 02:35
@renovate renovate Bot force-pushed the renovate/major-all branch from e77aee0 to bbee39d Compare July 17, 2024 06:09
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from d0f13ae to 5bcfc8d Compare July 30, 2024 10:26
@renovate renovate Bot force-pushed the renovate/major-all branch from 5bcfc8d to e46217b Compare August 15, 2024 15:49
@renovate renovate Bot force-pushed the renovate/major-all branch from e46217b to e1f55b8 Compare August 28, 2024 06:08
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 5b045a9 to 7e33592 Compare January 14, 2025 22:54
@renovate renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from d71960f to 7a31927 Compare January 27, 2025 19:43
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 13388fe to 62e4057 Compare February 13, 2025 14:05
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from abbc05a to be376c8 Compare February 28, 2025 16:47
@renovate renovate Bot force-pushed the renovate/major-all branch from be376c8 to e5a8383 Compare March 3, 2025 04:56
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 910444f to d17740b Compare March 14, 2025 16:43
@renovate renovate Bot force-pushed the renovate/major-all branch from d17740b to 7111ccf Compare March 26, 2025 14:55
@renovate renovate Bot force-pushed the renovate/major-all branch from 7111ccf to aebea65 Compare April 6, 2025 12:34
@renovate renovate Bot force-pushed the renovate/major-all branch 3 times, most recently from 70bf423 to a6af005 Compare April 25, 2025 16:35
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 37d575d to aa885e8 Compare May 8, 2025 21:20
@renovate renovate Bot force-pushed the renovate/major-all branch from aa885e8 to 5c72621 Compare May 18, 2025 12:40
@renovate renovate Bot force-pushed the renovate/major-all branch from 5c72621 to 06f3c49 Compare May 29, 2025 16:10
@renovate renovate Bot force-pushed the renovate/major-all branch 4 times, most recently from df6d80f to e35fe27 Compare June 25, 2025 10:03
@renovate renovate Bot force-pushed the renovate/major-all branch 2 times, most recently from 0021675 to 01827e7 Compare July 3, 2025 09:14
@renovate renovate Bot force-pushed the renovate/major-all branch from 01827e7 to 3de3921 Compare July 18, 2025 18:02
@renovate renovate Bot force-pushed the renovate/major-all branch from 3de3921 to dc97a89 Compare July 28, 2025 15:08
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.

1 participant