-
Notifications
You must be signed in to change notification settings - Fork 0
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 dependencies (major) #364
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/major-dependencies
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
March 16, 2023 16:59
af9dc1d
to
036aee1
Compare
renovate
bot
changed the title
fix(deps): update dependency commander to v10
fix(deps): update dependencies (major)
Mar 16, 2023
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
March 30, 2023 23:24
036aee1
to
8a5a114
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
April 7, 2023 19:46
8a5a114
to
b74fb4a
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
April 15, 2023 07:10
b74fb4a
to
7b7ab11
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
June 1, 2023 18:28
7b7ab11
to
e27d7ac
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
June 16, 2023 01:06
e27d7ac
to
7d5aeec
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
2 times, most recently
from
June 29, 2023 00:01
1f85250
to
cf91681
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
August 24, 2023 20:22
cf91681
to
277d6eb
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
October 13, 2023 01:50
277d6eb
to
7e18b01
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
November 20, 2023 18:36
7e18b01
to
54b19a3
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
December 6, 2023 23:17
54b19a3
to
3b1cd2d
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
February 3, 2024 10:49
3b1cd2d
to
9dd23a2
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
March 6, 2024 19:28
9dd23a2
to
9f806f7
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
March 20, 2024 20:10
9f806f7
to
df5486f
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
2 times, most recently
from
April 10, 2024 14:39
45d3bc2
to
39fbd8d
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
May 18, 2024 15:52
39fbd8d
to
4feb480
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
June 20, 2024 18:49
4feb480
to
7d9c27c
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
July 1, 2024 20:13
7d9c27c
to
6d8752f
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
July 23, 2024 02:25
6d8752f
to
82bc711
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
September 9, 2024 19:22
82bc711
to
413cd3f
Compare
renovate
bot
force-pushed
the
renovate/major-dependencies
branch
from
October 9, 2024 01:14
413cd3f
to
761fac3
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
9.4.1
->12.1.0
4.8.4
->5.6.3
Release Notes
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
passThroughOptions
constraints when using.addCommand
and throw if parent command does not have.enablePositionalOptions()
enabled ([#1937])Changed
.storeOptionsAsProperties()
after setting an option value ([#1928])@api private
with documented@private
([#1949]).addHelpCommand()
now takes a Command (passing string or boolean still works as before but deprecated) ([#2087])Deprecated
.addHelpCommand()
passing string or boolean (use.helpCommand()
or pass a Command) ([#2087])Removed
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
).option and command clashes
A couple of configuration problems now throw an error, which will pick up issues in existing programs:
v11.1.0
Compare Source
Fixed
OptionValueSource
to allow any string, to match supported use of custom sources ([#1983])Command.version()
can also be used as getter ([#1982])Commands.executableDir()
, for when not configured ([#1965])Added
registeredArguments
property onCommand
with the array of definedArgument
(likeCommand.options
forOption
) ([#2010])envVar
,presetArg
([#2019])argChoices
,defaultValue
,defaultValueDescription
([#2019])Changed
Deprecated
Command._args
was private anyway, but now available asregisteredArguments
([#2010])v11.0.0
Compare Source
Fixed
Changed
v10.0.1
Compare Source
Added
Fixed
Option.optionFlags
property from TypeScript definition ([#1844])Changed
.implies()
([#1854])v10.0.0
Compare Source
Added
Changed
v9.5.0
Compare Source
Added
.getOptionValueSourceWithGlobals()
([#1832])showGlobalOptions
for.configureHelp{}
andHelp
([#1828])microsoft/TypeScript (typescript)
v5.6.3
Compare Source
v5.6.2
Compare Source
v5.5.4
: TypeScript 5.5.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.5.3
: TypeScript 5.5.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.5.2
: TypeScript 5.5Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.5
: TypeScript 5.4.5Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.4
: TypeScript 5.4.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.3
: TypeScript 5.4.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.4.2
: TypeScript 5.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.3.3
: TypeScript 5.3.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.3.2
: TypeScript 5.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.2.2
: TypeScript 5.2Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.1.6
: TypeScript 5.1.6Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on npm
v5.1.5
: TypeScript 5.1.5Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.1.3
: TypeScript 5.1.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.0.4
: TypeScript 5.0.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.0.3
: TypeScript 5.0.3Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v5.0.2
: TypeScript 5.0Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
v4.9.5
: TypeScript 4.9.5Compare Source
For release notes, check out the release announcement.
Downloads are available on:
Changes:
69e88ef
Port ignore deprecations to 4.9 (#52419)daf4e81
Port timestamp fix to 4.9 (#52426)v4.9.4
: TypeScript 4.9.4Compare Source
For release notes, check out the release announcement.
For the complete list of fixed issues, check out the
Downloads are available on:
Changes:
e286821
Bump version to 4.9.4 and LKG.eb5419f
Cherry-pick #51704 to release 4.9 (#51712)b4d382b
Cherry-pick changes for narrowing to tagged literal types.e7a02f4
Port of #51626 and #51689 to release-4.9 (#51627)1727912
Cherry-pick fix aroundvisitEachChild
to release-4.9. (#51544)This list of changes was auto generated.
v4.9.3
: TypeScript 4.9Compare Source
For release notes, check out the release announcement.
Downloads are available on:
Changes:
93bd577
Bump version to 4.9.3 and LKG.107f832
Update LKG.31bee56
Cherry-pick PR #50977 into release-4.9 (#51363) [ #50872 ]1e2fa7a
Update version to 4.9.2-rc and LKG.7ab89e5
Merge remote-tracking branch 'origin/main' into release-4.9e5cd686
Update package-lock.json8d40dc1
Update package-lock.json5cfb3a2
Only call return() for an abrupt completion in user code (#51297)a7a9d15
Fix for broken baseline in yieldInForInInDownlevelGenerator (#51345)7f8426f
fix for-in enumeration containing yield in generator (#51295)See More
3d2b401
Fix assertion functions accessed via wildcard imports (#51324)64d0d5a
fix(51301): Fixing an unused import at the end of a line removes the newline (#51320)754eeb2
Update CodeQL workflow and configuration, fix found bugs (#51263)d8aad26
Update package-lock.jsond4f26c8
fix(51245): Class with parameter decorator in arrow function causes "convert to default export" refactoring failure (#51256)16faf45
Update package-lock.json8b1ecdb
fix(50654): "Move to a new file" breaks the declaration of referenced variable (#50681)170a17f
Dom update 2022-10-25 (#51300)9c4e14d
Remove "No type information for this code" from baseline (#51311)88d25b4
fix(50068): Refactors trigger debug failure when JSX text has a ' and a tag on the same line. (#51299)8bee69a
Update package-lock.json702de1e
Fix early call to return/throw on generator (#51294)2c12b14
Add a GH Action to file a new issue if we go a week without seeing a typescript-error-deltas issue (#51271)6af270d
Update package-lock.json2cc4c16
Update package-lock.json6093491
Fix apparent typo in getStringMappingType (#51248)61c2609
Update package-lock.jsonef69116
Generate shortestrootDirs
module specifier instead of first possible (#51244)bbb42f4
Fix typo in canWatchDirectoryOrFile found by CodeQL (#51262)a56b254
Include 'this' type parameter in isRelatedTo fast path (#51230)3abd351
Fix super property transform in async arrow in method (#51240)eed0511
Update package-lock.json2625c1f
Make the init config category order predictable (#51247)1ca99b3
fix(50551): Destructuring assignment with var bypasses "variable is used before being assigned" check (2454) (#50560)3f28fa1
Update package-lock.json906ebe4
Revert structuredTypeRelatedTo change and fix isUnitLikeType (#51076)8ac4652
change type (#51231)245a02c
fix(51222): Go-to-definition on return statements should jump to the containing function declaration (#51227)2dff34e
markAliasReferenced should include ExportValue as well (#51219)5ef2634
Update package-lock.jsond0f0e35
Remove old tslint comments (#51220)85d405a
Fixed a false positive "await has no effect on the type" diagnostic with mixed generic union (#50833)1f8959f
fix: avoid downleveled dynamic import closing over specifier expression (#49663)11066b2
Rename internal functions tonarrowTypeBySwitchOnTypeOf
andnarrowTypeByInKeyword
(#51215)4c9afe8
Update package-lock.jsonf25bcb7
fix(49196): add jsdoc snippet for interface member functions (#51135)7406ee9
fix(51170): Completing an unimplemented property overwrites rest of line (#51175)a1d82fc
Remove some unnecessary code discovered by rollup (#51204)0481773
LEGO: Merge pull request 5120098c19cb
LEGO: Merge pull request 5119013c9b05
Update package-lock.json673475e
Update package-lock.jsonf6cf510
Add more tracing to node16/nodenext resolution (#51168)83c5581
Update package-lock.jsonbe5f0fe
Add an extra regression test for awaited unresolvable recursive union (#51167)2cb7e77
fix(50416): correctly names disabled export refactors (#50663) [ #50416 ]2bcfed0
feat(37440): Provide a quick-fix for non-exported types (#51038)a24201c
Remove VSDevMode.ps1 and createPlaygroundBuild (#51166)2da62a7
fix(51112): omit parameter names that precede the type (#51142)cf1b6b7
feat(51163): show QF to fill in the missing properties for the mapped type. (#51165)bdcc240
Remove bug-causing carve-out in conditional type instantiation that hopefully is no longer required (#51151)37317a2
Check nested weak types in intersections on target side of relation (#51140)9f49f9c
Update package-lock.json4f54e7e
Fix isExhaustiveSwitchStatement to better handle circularities (#51095)503604c
Overloads shouldn't gain @deprecated tags of other overloads in quick info (#50904)e14a229
Update package-lock.json67256e5
Remove unused declarations array in extractSymbol's TargetRange (#51091)9c87ded
fix(51100): ensure tsserver shuts down when parent process is killed (#51107)c01ae01
Fix nightly publish oops in Gulpfile (#51131)a7d10f1
Update package-lock.jsond0bfd8c
fix(51072): ts.preProcessFile finds import in template string after conditional expression with template strings (#51082)ad56b5c
Convert scripts/Gulpfile to checked mjs/cjs so they can run without compilation (#50988)dbeae5d
fix(51017): Make lineText in the references response opt-out (#51081)d06a592
Properly defer resolution of mapped types with genericas
clauses (#51050)42b1049
Update package-lock.json5f3e6cc
Plugin probe location is higher priority than peer node_modules (#51079) [ #34616 ]2648f6a
Plugins in project were adding up after every config file reload (#51087)c18791c
Fix incorrect options type to WatchOptions (#51064)b0795e9
Update package-lock.json43c6fd4
Covert some of the config testing to baselines for easy validation (#51063)fc5e72b
Remove unused defaultWatchFileKind method since useFsEvents is default for tsserver and tsc (#51044)8af9a93
Use typescript.d.ts in APISample tests (#51061)4953316
Remove configureLanguageServiceBuild, instrumenter (#51048)9dfffd0
Update GitHub Actions (#51045)4635a5c
Update package-lock.json33a34e5
Adding a JSDoc comment to the es5 type declarations to describe the functionality of Date.now() (#50630)299745c
Fix crash in goto-def on@override
(#51016)7dcf11f
fix(50750): Object type literal with string literal property in contextual typing position causes language service error on all literal type references (#50757)5cd49f6
Update package-lock.json8a1b858
Update package-lock.json96894db
Include type parameter defaults in contextual typing (#50994) [ #51002 ]0d0a793
Allow Unicode extended escapes in ES5 and earlier (#50918)58bae8d
Update package-lock.json0ce72ef
Add option to OrganizeImports for removal only (#50931)42f9143
feat: codefix forfor await of
(#50623)ecf50e8
Properly computeSymbolFlags.Optional
for intersected properties (#50958)d1586de
Fully resolve aliases when checking symbol flags (#50853)45148dd
Update LKG to 4.8.4 (#50987)9a83f25
Update package-lock.json865848f
Fix<=
and>
comparisons when compared against prerelease versions (#50915)fbfe934
Fix comparability between type parameters related by a union constraint (#50978)b09e93d
Merge pull request #50041 from microsoft/fix/479690ac12bb
Update package-lock.json8192d55
Pick correct compilerOptions when checking if we can share emitSignatures (#50910) [ #50902 ]16faef1
During uptodate ness check with buildInfo, check if there are errors explicitly with noEmit (#50974) [ #50959 ]63791f5
Update package-lock.json09368bc
Handle if project for open file will get recollected because of pending cleanup from closed script info (#50908) [ #50868 ]c81bf4d
fix(49594): Typescript 4.7.3 bracketed class property compilation error strictPropertyInitialization:true (#49619)bc9cbbe
Merge pull request #49912 from microsoft/fix/475085a10f46
](https://redirect.github.com/microsoft/TypeScript/commit/5Configuration
📅 Schedule: Branch creation - "after 10pm on monday,before 5am on monday" in timezone Asia/Tokyo, 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.
This PR was generated by Mend Renovate. View the repository job log.