lecture-security_engineering
lecture-security_engineering copied to clipboard
chore(deps): bump the prod-dependency group across 1 directory with 2 updates
Bumps the prod-dependency group with 2 updates in the /sample-06 directory: @babel/runtime and commander.
Updates @babel/runtime from 7.23.9 to 7.24.5
Release notes
Sourced from @babel/runtime's releases.
v7.24.5 (2024-04-29)
Thanks
@romgrkand@sossostfor your first PRs!:bug: Bug Fix
babel-plugin-transform-classes,babel-traverse
- #16377 fix: TypeScript annotation affects output (
@liuxingbaoyu)babel-helpers,babel-plugin-proposal-explicit-resource-management,babel-runtime-corejs3:nail_care: Polish
:house: Internal
- Other
- #16414 Relax ESLint peerDependency constraint to allow v9 (
@liuxingbaoyu)babel-parser
- #16425 Improve
@babel/parserAST types (@nicolo-ribaudo)- #16417 Always pass type argument to
.startNode(@nicolo-ribaudo)babel-helper-create-class-features-plugin,babel-helper-member-expression-to-functions,babel-helper-module-transforms,babel-helper-split-export-declaration,babel-helper-wrap-function,babel-helpers,babel-plugin-bugfix-firefox-class-in-computed-class-key,babel-plugin-proposal-explicit-resource-management,babel-plugin-transform-block-scoping,babel-plugin-transform-destructuring,babel-plugin-transform-object-rest-spread,babel-plugin-transform-optional-chaining,babel-plugin-transform-parameters,babel-plugin-transform-private-property-in-object,babel-plugin-transform-react-jsx-self,babel-plugin-transform-typeof-symbol,babel-plugin-transform-typescript,babel-traverse
- #16439 Make
NodePath<T | U>distributive (@nicolo-ribaudo)babel-plugin-proposal-partial-application,babel-types
- #16421 Remove
JSXNamespacedNamefrom validCallExpressionargs (@nicolo-ribaudo)babel-plugin-transform-class-properties,babel-preset-env
- #16406 Do not load unnecessary Babel 7 syntax plugins in Babel 8 (
@nicolo-ribaudo):running_woman: Performance
babel-helpers,babel-preset-env,babel-runtime-corejs3Committers: 6
- Babel Bot (
@babel-bot)- Huáng Jùnliàng (
@JLHwung)- Nicolò Ribaudo (
@nicolo-ribaudo)- Rom Grk (
@romgrk)@liuxingbaoyu- ynnsuis (
@sossost)v7.24.4 (2024-04-03)
Thanks
@Dunqing,@luiscubal, and@samualtnormanfor your first PRs!:eyeglasses: Spec Compliance
... (truncated)
Changelog
Sourced from @babel/runtime's changelog.
v7.24.5 (2024-04-29)
:bug: Bug Fix
babel-plugin-transform-classes,babel-traverse
- #16377 fix: TypeScript annotation affects output (
@liuxingbaoyu)babel-helpers,babel-plugin-proposal-explicit-resource-management,babel-runtime-corejs3:nail_care: Polish
:house: Internal
- Other
- #16414 Relax ESLint peerDependency constraint to allow v9 (
@liuxingbaoyu)babel-parser
- #16425 Improve
@babel/parserAST types (@nicolo-ribaudo)- #16417 Always pass type argument to
.startNode(@nicolo-ribaudo)babel-helper-create-class-features-plugin,babel-helper-member-expression-to-functions,babel-helper-module-transforms,babel-helper-split-export-declaration,babel-helper-wrap-function,babel-helpers,babel-plugin-bugfix-firefox-class-in-computed-class-key,babel-plugin-proposal-explicit-resource-management,babel-plugin-transform-block-scoping,babel-plugin-transform-destructuring,babel-plugin-transform-object-rest-spread,babel-plugin-transform-optional-chaining,babel-plugin-transform-parameters,babel-plugin-transform-private-property-in-object,babel-plugin-transform-react-jsx-self,babel-plugin-transform-typeof-symbol,babel-plugin-transform-typescript,babel-traverse
- #16439 Make
NodePath<T | U>distributive (@nicolo-ribaudo)babel-plugin-proposal-partial-application,babel-types
- #16421 Remove
JSXNamespacedNamefrom validCallExpressionargs (@nicolo-ribaudo)babel-plugin-transform-class-properties,babel-preset-env
- #16406 Do not load unnecessary Babel 7 syntax plugins in Babel 8 (
@nicolo-ribaudo):running_woman: Performance
babel-helpers,babel-preset-env,babel-runtime-corejs3v7.24.4 (2024-04-03)
:eyeglasses: Spec Compliance
babel-parserbabel-helpers,babel-plugin-proposal-decorators,babel-runtime-corejs3:bug: Bug Fix
babel-generator
- #16402 fix: Correctly prints
{ [key in Bar]? }(@liuxingbaoyu)- #16394 fix: Correctly generate
TSMappedType(@liuxingbaoyu)babel-compat-data,babel-plugin-bugfix-firefox-class-in-computed-class-key,babel-preset-env
- #16390 Create bugfix plugin for classes in computed keys in Firefox (
@nicolo-ribaudo)babel-helper-create-class-features-plugin,babel-plugin-proposal-decorators
- #16387 fix: support mutated outer decorated class binding (
@JLHwung)- #16385 fix: Decorators when
super()exists andprotoInitis not needed (@liuxingbaoyu)babel-plugin-transform-block-scoping
- #16384 fix: Transform scoping for
for Xin loop (@liuxingbaoyu)- #16368 fix: Capture
letwhen theforbody is not a block (@liuxingbaoyu)babel-core,babel-plugin-transform-block-scoped-functions,babel-plugin-transform-block-scoping
... (truncated)
Commits
Updates commander from 11.1.0 to 12.1.0
Release notes
Sourced from commander's releases.
v12.1.0
Added
- auto-detect special node flags
node --evalandnode --printwhen call.parse()with no arguments (#2164)Changed
- prefix require of Node.js core modules with
node:(#2170)- format source files with Prettier (#2180)
- switch from StandardJS to directly calling ESLint for linting (#2153)
- extend security support for previous major version of Commander (#2150)
Removed
- removed unimplemented Option.fullDescription from TypeScript definition (#2191)
v12.0.0
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
passThroughOptionsconstraints when using.addCommandand 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 privatewith 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
programexport instead) (#2017)Migration Tips
global program
... (truncated)
Changelog
Sourced from commander's changelog.
[12.1.0] (2024-05-18)
Added
- auto-detect special node flags
node --evalandnode --printwhen call.parse()with no arguments (#2164)Changed
- prefix require of Node.js core modules with
node:(#2170)- format source files with Prettier (#2180)
- switch from StandardJS to directly calling ESLint for linting (#2153)
- extend security support for previous major version of Commander (#2150)
Removed
- removed unimplemented Option.fullDescription from TypeScript definition (#2191)
[12.0.0] (2024-02-03)
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
passThroughOptionsconstraints when using.addCommandand 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 privatewith 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
programexport instead) (#2017)Migration Tips
... (truncated)
Commits
970ecae12.1.04a9b211Prepare CHANGELOG for 12.1.0 (#2193)0e083f8ci: add 22.x to node-version (#2192)d3b48f7Remove unimplemented fullDescription from TypeScript (#2191)c749eb8Bump tsd from 0.30.4 to 0.31.0 (#2172)f09d0b2Bump@typescript-eslint/parserfrom 6.14.0 to 6.21.0 (#2179)4484e79Bump@types/nodefrom 20.8.9 to 20.12.7 (#2187)6c740e9Bump eslint-plugin-jest from 27.9.0 to 28.3.0 (#2188)27b1349Bump typescript from 5.2.2 to 5.4.5 (#2189)b95ea44Fix some JSDoc lint issues (#2181)- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions