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 typescript dependencies (major) #423

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

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Nov 28, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@cloudflare/workers-types 3.18.0 -> 4.20241112.0 age adoption passing confidence
@types/dompurify (source) 2.4.0 -> 3.0.5 age adoption passing confidence
@types/jasmine (source) 4.3.1 -> 5.1.4 age adoption passing confidence
@types/jsdom (source) 20.0.1 -> 21.1.7 age adoption passing confidence
@types/node (source) 17.0.18 -> 22.9.0 age adoption passing confidence
@types/node (source) 16.18.11 -> 22.9.0 age adoption passing confidence
commander 9.4.1 -> 12.1.0 age adoption passing confidence
fastify (source) 4.11.0 -> 5.1.0 age adoption passing confidence
glob 8.0.3 -> 11.0.0 age adoption passing confidence
gts 3.1.1 -> 6.0.2 age adoption passing confidence
jasmine-core (source) 4.5.0 -> 5.4.0 age adoption passing confidence
jsdom 20.0.3 -> 25.0.1 age adoption passing confidence
puppeteer (source) 17.1.3 -> 23.8.0 age adoption passing confidence
typescript (source) 4.9.4 -> 5.6.3 age adoption passing confidence

Release Notes

cloudflare/workerd (@​cloudflare/workers-types)

v4.20241112.0

Compare Source

v4.20241106.0

Compare Source

v4.20241022.0

Compare Source

v4.20241018.0

Compare Source

v4.20241011.0

Compare Source

v4.20241004.0

Compare Source

v4.20240925.0

Compare Source

v4.20240924.0

Compare Source

v4.20240919.0

Compare Source

v4.20240909.0

Compare Source

v4.20240903.0

Compare Source

v4.20240821.1

Compare Source

v4.20240815.0

Compare Source

v4.20240806.0

Compare Source

v4.20240729.0

Compare Source

v4.20240725.0

Compare Source

v4.20240722.0

Compare Source

v4.20240718.0

Compare Source

v4.20240712.0

Compare Source

v4.20240701.0

Compare Source

v4.20240620.0

Compare Source

v4.20240614.0

Compare Source

v4.20240605.0

Compare Source

v4.20240603.0

Compare Source

v4.20240529.0

Compare Source

v4.20240524.0

Compare Source

v4.20240512.0

Compare Source

v4.20240502.0

Compare Source

v4.20240423.0

Compare Source

v4.20240419.0

Compare Source

v4.20240405.0

Compare Source

v4.20240404.0

Compare Source

v4.20240403.0

Compare Source

v4.20240402.0

Compare Source

v4.20240329.0

Compare Source

v4.20240320.1

Compare Source

v4.20240314.0

Compare Source

v4.20240312.0

Compare Source

v4.20240222.0

Compare Source

v4.20240208.0

Compare Source

v4.20240129.0

Compare Source

v4.20240117.0

Compare Source

v4.20231218.0

Compare Source

v4.20231121.0

Compare Source

v4.20231025.0

Compare Source

v4.20231016.0

Compare Source

v4.20231010.0

Compare Source

v4.20231002.0

Compare Source

v4.20230922.0

Compare Source

v4.20230914.0

Compare Source

v4.20230904.0

Compare Source

v4.20230830.0

Compare Source

v4.20230821.0

Compare Source

v4.20230814.0

Compare Source

v4.20230807.0

Compare Source

v4.20230801.0

Compare Source

v4.20230724.0

Compare Source

v4.20230717.1

Compare Source

v4.20230717.0

Compare Source

v4.20230710.1

Compare Source

v4.20230710.0

Compare Source

v4.20230628.0

Compare Source

v4.20230518.0

Compare Source

v4.20230511.0

Compare Source

v4.20230419.0

Compare Source

v4.20230404.0

Compare Source

v4.20230321.0

Compare Source

v4.20230307.0

Compare Source

v4.20230228.0

Compare Source

v4.20230221.0

Compare Source

v4.20230215.0

Compare Source

v4.20230214.0

Compare Source

v4.20230115.0

Compare Source

v4.20221111.1

Compare Source

v4.20221111.0

Compare Source

v3.19.0

Compare Source

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])

v11.0.0

Compare Source

Fixed
  • help command works when help option is disabled ([#​1864])
Changed
  • leading and trailing spaces are now ignored by the .arguments() method ([#​1874])
  • refine "types" exports for ESM to follow TypeScript guidelines ([#​1886])
  • Breaking: Commander 11 requires Node.js v16 or higher

v10.0.1

Compare Source

Added
Fixed
  • remove unused Option.optionFlags property from TypeScript definition ([#​1844])
Changed
  • assume boolean option intended if caller passes string instead of hash to .implies() ([#​1854])

v10.0.0

Compare Source

Added
  • wrap command description in help ([#​1804])
Changed
  • Breaking: Commander 10 requires Node.js v14 or higher

v9.5.0

Compare Source

Added
  • .getOptionValueSourceWithGlobals() ([#​1832])
  • showGlobalOptions for .configureHelp{} and Help ([#​1828])
fastify/fastify (fastify)

v5.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: fastify/fastify@v5.0.0...v5.1.0

[v5.0.0](https://redirect


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 3 times, most recently from bd163a8 to 40aa45b Compare December 7, 2022 19:30
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 6 times, most recently from e85cd81 to 158c4a9 Compare December 13, 2022 21:35
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 3 times, most recently from 7e44913 to a28eb9e Compare December 17, 2022 21:18
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch from a28eb9e to a0ae8c9 Compare December 26, 2022 17:35
@renovate-bot renovate-bot changed the title Update TypeScript dependencies (major) chore(deps): update typescript dependencies (major) Jan 2, 2023
@renovate-bot renovate-bot changed the title chore(deps): update typescript dependencies (major) Update TypeScript dependencies (major) Jan 2, 2023
@renovate-bot renovate-bot changed the title Update TypeScript dependencies (major) chore(deps): update typescript dependencies (major) Jan 2, 2023
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 5 times, most recently from b1995a1 to 93a9d5c Compare January 12, 2023 08:30
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch from 93a9d5c to 8a52bac Compare January 14, 2023 02:13
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 5 times, most recently from 3f61734 to eea321c Compare January 27, 2023 23:21
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 3 times, most recently from 9712faa to f847eb7 Compare February 6, 2023 09:29
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 6 times, most recently from 7427aa7 to f97e028 Compare October 14, 2024 23:13
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 7 times, most recently from 213c16b to 90bb3fa Compare October 23, 2024 04:28
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 7 times, most recently from 4b8b9ac to 1471a21 Compare October 29, 2024 19:44
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 6 times, most recently from d5f07d9 to 1abed31 Compare November 7, 2024 00:12
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch 2 times, most recently from c0efb82 to f425994 Compare November 12, 2024 18:13
@renovate-bot renovate-bot force-pushed the renovate/major-typescript-dependencies branch from f425994 to 550b037 Compare November 13, 2024 17:45
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