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

fix(deps): update tools & commanders (major) #524

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 15, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
chalk 4.1.2 -> 5.3.0 age adoption passing confidence
commander 11.0.0 -> 12.1.0 age adoption passing confidence
cron 2.3.1 -> 3.1.7 age adoption passing confidence
pify 5.0.0 -> 6.1.0 age adoption passing confidence
uuid 9.0.0 -> 10.0.0 age adoption passing confidence

Release Notes

chalk/chalk (chalk)

v5.3.0

Compare Source

v5.2.0

Compare Source

v5.1.2

Compare Source

v5.1.1

Compare Source

  • Improved the names of exports introduced in 5.1.0 (#​567) 6e0df05
    • We of course preserved the old names.

v5.1.0

Compare Source

v5.0.1

Compare Source

  • Add main field to package.json for backwards compatibility with some developer tools 85f7e96

v5.0.0

Compare Source

Breaking
  • This package is now pure ESM. Please read this.
    • If you use TypeScript, you need to use TypeScript 4.7 or later. Why.
    • If you use a bundler, make sure it supports ESM and that you have correctly configured it for ESM.
    • The Chalk issue tracker is not a support channel for your favorite build/bundler tool.
    • It's totally fine to stay on Chalk v4. It's been stable for years.
  • Require Node.js 12.20 fa16f4e
  • Move some properties off the default export to individual named exports:
    • chalk.InstanceChalk
    • chalk.supportsColorsupportsColor
    • chalk.stderrchalkStderr
    • chalk.stderr.supportsColorsupportsColorStderr
  • Remove .keyword(), .hsl(), .hsv(), .hwb(), and .ansi() coloring methods (#​433) 4cf2e40
    • These were not commonly used and added a lot of bloat to Chalk. You can achieve the same by using the color-convert package.
  • The tagged template literal support moved into a separate package: chalk-template (#​524) c987c61
-import chalk from 'chalk';
+import chalkTemplate from 'chalk-template';

-chalk`2 + 3 = {bold ${2 + 3}}`;
+chalkTemplate`2 + 3 = {bold ${2 + 3}}`;
Improvements
tj/commander.js (commander)

v12.1.0

Compare Source

Added

v12.0.0

Compare Source

Added
  • .addHelpOption() as another way of configuring built-in help option ([#​2006])
  • .helpCommand() for configuring built-in help command ([#​2087])
Fixed
  • Breaking: use non-zero exit code when spawned executable subcommand terminates due to a signal ([#​2023])
  • Breaking: check passThroughOptions constraints when using .addCommand and throw if parent command does not have .enablePositionalOptions() enabled ([#​1937])
Changed
  • Breaking: Commander 12 requires Node.js v18 or higher ([#​2027])
  • Breaking: throw an error if add an option with a flag which is already in use ([#​2055])
  • Breaking: throw an error if add a command with name or alias which is already in use ([#​2059])
  • Breaking: throw error when calling .storeOptionsAsProperties() after setting an option value ([#​1928])
  • replace non-standard JSDoc of @api private with documented @private ([#​1949])
  • .addHelpCommand() now takes a Command (passing string or boolean still works as before but deprecated) ([#​2087])
  • refactor internal implementation of built-in help option ([#​2006])
  • refactor internal implementation of built-in help command ([#​2087])
Deprecated
  • .addHelpCommand() passing string or boolean (use .helpCommand() or pass a Command) ([#​2087])
Removed
  • Breaking: removed default export of a global Command instance from CommonJS (use the named program export instead) ([#​2017])
Migration Tips

global program

If you are using the deprecated default import of the global Command object, you need to switch to using a named import (or create a new Command).

// const program = require('commander');
const { program } = require('commander');

option and command clashes

A couple of configuration problems now throw an error, which will pick up issues in existing programs:

  • adding an option which uses the same flag as a previous option
  • adding a command which uses the same name or alias as a previous command

v11.1.0

Compare Source

Fixed
  • TypeScript: update OptionValueSource to allow any string, to match supported use of custom sources ([#​1983])
  • TypeScript: add that Command.version() can also be used as getter ([#​1982])
  • TypeScript: add null return type to Commands.executableDir(), for when not configured ([#​1965])
  • subcommands with an executable handler and only a short help flag are now handled correctly by the parent's help command ([#​1930])
Added
  • registeredArguments property on Command with the array of defined Argument (like Command.options for Option) ([#​2010])
  • TypeScript declarations for Option properties: envVar, presetArg ([#​2019])
  • TypeScript declarations for Argument properties: argChoices, defaultValue, defaultValueDescription ([#​2019])
  • example file which shows how to configure help to display any custom usage in the list of subcommands ([#​1896])
Changed
  • (developer) refactor TypeScript configs for multiple use-cases, and enable checks in JavaScript files in supporting editors ([#​1969])
Deprecated
  • Command._args was private anyway, but now available as registeredArguments ([#​2010])
kelektiv/node-cron (cron)

v3.1.7

Compare Source

🛠 Builds
⚙️ Continuous Integrations
  • action: prevent duplicate checks on Renovate PRs (#​784) (6b56a36)
  • action: update actions/setup-node digest to 60edb5d (#​821) (f05b75e)
  • action: update actions/upload-artifact action to v4 (#​856) (46d6660)
  • action: update amannn/action-semantic-pull-request digest to e9fabac (#​849) (d96457c)
  • action: update github/codeql-action action to v2.22.6 (#​783) [skip ci] (687fd43)
  • action: update github/codeql-action action to v2.22.7 (#​787) (a0204d8)
  • action: update github/codeql-action action to v2.22.8 (#​797) (323f48c)
  • action: update github/codeql-action action to v3 (#​817) (69d2695)
  • action: update insurgent-lab/is-in-pr-action action to v0.1.4 (#​790) (8e85b13)
  • action: update insurgent-lab/is-in-pr-action action to v0.1.5 (#​798) (76751d2)
  • action: update insurgent-lab/is-in-pr-action action to v0.2.0 (#​853) (cc3fcbd)
  • action: update marocchino/sticky-pull-request-comment digest to 331f8f5 (#​850) (a477f08)
  • action: update step-security/harden-runner action to v2.6.1 (#​788) [skip ci] (2e5ca52)
  • action: update step-security/harden-runner action to v2.7.0 (#​846) (f1a8486)
  • fix renovate skipping checks (#​796) (3b00555)
♻️ Chores

v3.1.6

Compare Source

🐛 Bug Fixes
⚙️ Continuous Integrations
  • action: update actions/checkout action to v4 (#​755) (d0d70c6)
  • action: update github/codeql-action action to v2.22.4 (#​752) (04454c3)
  • action: update github/codeql-action action to v2.22.5 (#​758) (2dff183)
  • action: update ossf/scorecard-action action to v2.3.1 (#​754) (41d21f1)
♻️ Chores

v3.1.5

Compare Source

🐛 Bug Fixes
📚 Documentation
⚙️ Continuous Integrations
♻️ Chores

v3.1.4

Compare Source

🐛 Bug Fixes
⚙️ Continuous Integrations
♻️ Chores

v3.1.3

Compare Source

🐛 Bug Fixes
⚙️ Continuous Integrations

v3.1.2

Compare Source

🛠 Builds
♻️ Chores

v3.1.1

Compare Source

🐛 Bug Fixes
  • fix lastDate() value for intervals > 25 days (#​711) (141aa00)
  • fix object constructor typings & make OC generic type optional (#​712) (6536084)
📚 Documentation

v3.1.0

Compare Source

✨ Features
🚨 Tests
  • check at runtime that all tests call expect (#​706) [skip ci] (cc4e62f)
♻️ Chores

v3.0.0

Compare Source

⚠ Breaking changes
  • utcOffset parameter no longer accepts a string
  • utcOffset values between -60 and 60 are no longer
    treated as hours
  • providing both timeZone and utcOffset parameters
    now throws an error
  • removed cron.job() method in favor of new CronJob(...args) /
    CronJob.from(argsObject)
  • removed cron.time() method in favor of new CronTime()
  • CronJob: constructor no longer accepts an object as its first and
    only params. Use CronJob.from(argsObject) instead.
  • CronJob: callbacks are now called in the order they were registered
  • return empty array from nextDates when called without argument (#​519)
  • UNIX standard alignments (#​667)
✨ Features
🐛 Bug Fixes
  • return empty array from nextDates when called without argument (#​519) (c2891ba)
📦 Code Refactoring
📚 Documentation
🚨 Tests
  • update new test for cron standard alignments (4a406c1)
♻️ Chores
💎 Styles

v2.4.4

Compare Source

🐛 Bug Fixes

v2.4.3

Compare Source

🐛 Bug Fixes
🚨 Tests

v2.4.2

Compare Source

🐛 Bug Fixes

v2.4.1

Compare Source

🐛 Bug Fixes
⚙️ Continuous Integrations

v2.4.0

Compare Source

✨ Features
🐛 Bug Fixes
  • don't start job in setTime if it wasn't running (7e26c23)
🛠 Builds
  • npm: ship type definitions with releases (0b663a8)
🚨 Tests
⚙️ Continuous Integrations
♻️ Chores
sindresorhus/pify (pify)

v6.1.0

Compare Source

v6.0.0

Compare Source

Breaking
uuidjs/uuid (uuid)

v10.0.0

Compare Source

⚠ BREAKING CHANGES
  • update node support (drop node@12, node@14, add node@20) (#​750)
Features
Bug Fixes

v9.0.1

Compare Source

build
  • Fix CI to work with Node.js 20.x

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 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 force-pushed the renovate/major-tools-and-commanders branch 3 times, most recently from 0416618 to 77d79ad Compare November 18, 2022 16:32
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 6 times, most recently from 88b65b8 to 4c420d6 Compare November 24, 2022 13:43
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 3 times, most recently from 6706d6e to 557ff3c Compare December 11, 2022 12:04
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch from 557ff3c to 8c67e8b Compare December 17, 2022 07:34
@renovate renovate bot changed the title fix(deps): update tools & commanders (major) Update Tools & Commanders (major) Dec 17, 2022
@renovate renovate bot changed the title Update Tools & Commanders (major) fix(deps): update tools & commanders (major) Dec 17, 2022
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 6 times, most recently from 9aee72a to 7368bf0 Compare January 21, 2023 01:17
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch from 7368bf0 to 80c0321 Compare January 21, 2023 02:44
@renovate renovate bot changed the title fix(deps): update tools & commanders (major) fix(deps): update tools & commanders (major) - autoclosed Feb 26, 2023
@renovate renovate bot closed this Feb 26, 2023
@renovate renovate bot deleted the renovate/major-tools-and-commanders branch February 26, 2023 16:49
@renovate renovate bot changed the title fix(deps): update tools & commanders (major) - autoclosed fix(deps): update tools & commanders (major) Feb 26, 2023
@renovate renovate bot reopened this Feb 26, 2023
@renovate renovate bot restored the renovate/major-tools-and-commanders branch February 26, 2023 22:17
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 2 times, most recently from 31c9b54 to 31f51f9 Compare April 12, 2023 12:52
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 5 times, most recently from 231403b to 94bf993 Compare July 9, 2023 11:06
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 2 times, most recently from 00648a3 to 1000e8a Compare September 2, 2023 03:41
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 2 times, most recently from 9cbb10b to f53b4e9 Compare September 18, 2023 03:01
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch from f53b4e9 to ab90474 Compare September 30, 2023 01:01
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 2 times, most recently from 379b9b7 to 819f151 Compare October 12, 2023 23:21
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 3 times, most recently from 7091681 to 23eb325 Compare October 24, 2023 00:36
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 3 times, most recently from 66c1a28 to 1b73631 Compare October 29, 2023 19:50
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch 7 times, most recently from ab77e27 to 3548bff Compare November 16, 2023 11:35
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch from 3548bff to 748f54e Compare February 3, 2024 13:19
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch from 748f54e to f81d008 Compare April 9, 2024 08:05
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch from f81d008 to 4154be4 Compare May 18, 2024 20:34
@renovate renovate bot force-pushed the renovate/major-tools-and-commanders branch from 4154be4 to 48184ee Compare June 9, 2024 15:07
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

0 participants