[Snyk] Upgrade: chalk, change-case, commander, fs-extra, glob, json5, jsonc-parser, tinycolor2 #162
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.
Snyk has created this PR to upgrade multiple dependencies.
👯♂ The following dependencies are linked and will therefore be updated together.ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.
chalk
⚠️ This is a major version upgrade, and may be a breaking change | a year ago
⚠️ This is a major version upgrade, and may be a breaking change | 5 months ago
⚠️ This is a major version upgrade, and may be a breaking change | 4 months ago
⚠️ This is a major version upgrade, and may be a breaking change | 9 months ago
⚠️ This is a major version upgrade, and may be a breaking change | 2 months ago
from 4.1.2 to 5.3.0 | 7 versions ahead of your current version
on 2023-06-29
change-case
from 4.1.2 to 5.4.4 | 13 versions ahead of your current version
on 2024-04-03
commander
from 8.3.0 to 12.1.0 | 17 versions ahead of your current version
on 2024-05-18
fs-extra
from 10.0.0 to 11.2.0 | 6 versions ahead of your current version
on 2023-11-28
glob
from 7.2.0 to 11.0.0 | 54 versions ahead of your current version
on 2024-07-08
json5
from 2.2.2 to 2.2.3 | 1 version ahead of your current version | 2 years ago
on 2022-12-31
jsonc-parser
from 3.0.0 to 3.3.1 | 5 versions ahead of your current version | 3 months ago
on 2024-06-24
tinycolor2
from 1.4.2 to 1.6.0 | 13 versions ahead of your current version | 2 years ago
on 2023-02-03
Issues fixed by the recommended upgrade:
SNYK-JS-INFLIGHT-6095116
Release notes
Package name: chalk
sideEffects
field to package.json 5aafc0av5.2.0...v5.3.0
v5.1.2...v5.2.0
v5.1.1...v5.1.2
v5.1.0...v5.1.1
v5.0.1...v5.1.0
main
field to package.json for backwards compatibility with some developer tools 85f7e96v5.0.0...v5.0.1
Breaking
chalk.Instance
→Chalk
chalk.supportsColor
→supportsColor
chalk.stderr
→chalkStderr
chalk.stderr.supportsColor
→supportsColorStderr
.keyword()
,.hsl()
,.hsv()
,.hwb()
, and.ansi()
coloring methods (#433) 4cf2e40color-convert
package.chalk-template
(#524) c987c61+import chalkTemplate from 'chalk-template';
-chalk
2 + 3 = {bold ${2 + 3}}
;+chalkTemplate
2 + 3 = {bold ${2 + 3}}
;Improvements
overline
style (#433) 4cf2e40v4.1.0...v5.0.0
Package name: change-case
Fixed
change-case/keys
types by @ marcingajda in #337Full Changelog: https://github.com/blakeembrey/change-case/compare/change-case@5.4.3...change-case@5.4.4
Fixed
change-case/keys
- previously options were ignored after the first level #334 by @ QuicksaverFixed
Added
split
option to thechange-case
transform functions to allow for customization on how words are extracted from inputChanged
default
instead ofimport
to fix some tooling that doesn't work properly withimport
split
utility no longer accepts a second options argumentAdded
suffixCharacters
option to retain characters during case conversion. Useful for retaining something like the_
intype_
. Closes #322.Added
delimiter
option for customizing join character in any change case methodmergeAmbiguousCharacters
for camel and pascal case to avoid prefixing_
before numberschange-case@5.1.1
Package name: commander
Added
node --eval
andnode --print
when call.parse()
with no arguments (#2164)Changed
node:
(#2170)Removed
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:
Added
.addHelpOption()
as another way of configuring built-in help option (#2006).helpCommand()
for configuring built-in help command (#2087)Changed
.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)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)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:
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)Fixed
Changed
Added
Fixed
Option.optionFlags
property from TypeScript definition (#1844)Changed
.implies()
(#1854)Added
Changed
Added
.getOptionValueSourceWithGlobals()
(#1832)showGlobalOptions
for.configureHelp{}
andHelp
(#1828)Fixed
.setOptionValue()
now also clears option source (#1795)implied
toOptionValueSource
for option values set by using.implies()
(#1794)undefined
to return type of.getOptionValueSource()
(#1794)Changed
Package name: fs-extra
11.2.0
11.1.1
11.1.0
11.0.0
10.1.0
10.0.1
10.0.0
Package name: glob
11.0.0
10.4.4
10.4.3
10.4.2
10.4.1
10.4.0
10.3.16
10.3.15
10.3.14
10.3.13
Package name: json5
__proto__
are added to objects and arrays.(#199) This also fixes a prototype pollution vulnerability reported by
Jonathan Gregson! (#295).
Package name: jsonc-parser
Changes:
This list of changes was auto generated.
Changes:
Feature Requests:
Bugs:
undefined
on empty string inputOthers:
See More