phpdoc-parser
phpdoc-parser copied to clipboard
chore(deps): update devdependencies
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| @babel/core (source) | 7.24.7 -> 7.25.2 |
||||
| @babel/preset-env (source) | 7.24.7 -> 7.25.3 |
||||
| @commitlint/cli (source) | 19.3.0 -> 19.4.0 |
||||
| @commitlint/cz-commitlint (source) | 19.2.0 -> 19.4.0 |
||||
| @types/lodash (source) | 4.17.5 -> 4.17.7 |
||||
| beachball (source) | 2.43.1 -> 2.44.0 |
||||
| husky | 9.0.11 -> 9.1.5 |
||||
| inquirer (source) | 9.2.23 -> 9.3.6 |
||||
| prettier (source) | 3.3.2 -> 3.3.3 |
Release Notes
babel/babel (@babel/core)
v7.25.2
:bug: Bug Fix
babel-core,babel-traverse- #16695 Ensure that
requeueComputedKeyAndDecoratorsis available (@nicolo-ribaudo)
- #16695 Ensure that
v7.24.9
:bug: Bug Fix
babel-core,babel-standalone- #16639 Avoid
require()call in@babel/standalonebundle (@nicolo-ribaudo)
- #16639 Avoid
babel-types
:nail_care: Polish
babel-generator,babel-plugin-transform-optional-chaining- #16617 Avoid extra parens in TS
as/satisfies(@nicolo-ribaudo)
- #16617 Avoid extra parens in TS
:house: Internal
babel-helper-module-transforms- #16629 Lazy top-level initializations for module transforms (@guybedford)
v7.24.8
:eyeglasses: Spec Compliance
babel-parser- #16567 Do not use strict mode in TS
declare(@liuxingbaoyu)
- #16567 Do not use strict mode in TS
:bug: Bug Fix
babel-generator- #16630 Correctly print parens around
ininforheads (@nicolo-ribaudo) - #16626 Fix printing of comments in
await using(@nicolo-ribaudo) - #16591 fix typescript code generation for yield expression inside type expre… (@SreeXD)
- #16630 Correctly print parens around
babel-parser- #16613 Disallow destructuring assignment in
usingdeclarations (@H0onnn) - #16490 fix: do not add
.value: undefinedto regexp literals (@liuxingbaoyu)
- #16613 Disallow destructuring assignment in
babel-types- #16615 Remove boolean props from
ObjectTypeInternalSlotvisitor keys (@nicolo-ribaudo)
- #16615 Remove boolean props from
babel-plugin-transform-typescript- #16566 fix: Correctly handle
export import x =(@liuxingbaoyu)
- #16566 fix: Correctly handle
:nail_care: Polish
babel-generator- #16625 Avoid unnecessary parens around
asyncinfor await(@nicolo-ribaudo)
- #16625 Avoid unnecessary parens around
babel-traverse- #16619 Avoid checking
Scope.globalsmultiple times (@liuxingbaoyu)
- #16619 Avoid checking
conventional-changelog/commitlint (@commitlint/cz-commitlint)
v19.4.0
Note: Version bump only for package @commitlint/cz-commitlint
microsoft/beachball (beachball)
v2.44.0
Wed, 21 Aug 2024 22:56:03 GMT
Minor changes
- Add
changeDirCLI option (2684369[email protected])
typicode/husky (husky)
v9.1.5
v9.1.4
v9.1.3
- fix: better handle space in
PATH
v9.1.2
v9.1.1
v9.1.0
Super saiyan ~~god~~ dog! It's over 9.0.0!
There's a bug with this release which prevents the deprecation notice to appear and requires to remove #!/usr/bin/env sh and . "$(dirname -- "$0")/_/husky.sh" (which are deprecated by the way). I'll publish a new version to fix that. Sorry about any inconvenience.
What's new
You can now run package commands directly, no need for npx or equivalents.
It makes writing hooks more intuitive and is also slightly faster 🐺⚡️
### .husky/pre-commit
- npx jest
+ jest # ~0.2s faster
A new recipe has been added to the docs. Lint staged files without external dependencies (inspired by Prettier docs). Feel free to modify it.
### .husky/pre-commit
prettier $(git diff --cached --name-only --diff-filter=ACMR | sed 's| |\\ |g') --write --ignore-unknown
git update-index --again
For more advanced use cases, see lint-staged.
Fixes
bunx husky initcommand- Workaround for some hooks implementation on Windows 🤷
Deprecations
- Remove
#!/usr/bin/env shand. "$(dirname -- "$0")/_/husky.sh"from your hooks - Move your code from
~/.huskyrcto.config/husky/init.sh
Support for these will be removed in v10, notices have been added.
Friendly reminder
If Git hooks don't fit your workflow, you can disable Husky globally. Just add export HUSKY=0 to .config/husky/init.sh.
I've seen some confusion about this on X, so just a heads-up!
Sponsoring
Husky is downloaded over 45M times per month and used by ~1.5M projects. If your company wants to sponsor, you can do so here: GitHub Sponsors.
Have a nice summer ☀️ I'm open to new opportunities/consulting so feel free to drop me a message 😉
SBoudrias/Inquirer.js (inquirer)
v9.3.6
v9.3.5
- Fix issue with plugins relying on internal
inquirerpackages file structure.
v9.3.4
v9.3.3
v9.3.2
v9.3.1
- Fix risk of prototype injection.
v9.3.0
- Replace
chalkwithpicolors. - Drop many dependencies in favour of native functions when possible.
No impact expected, but it's a large changes in dependencies. Let us know if you run into any issues upgrading!
prettier/prettier (prettier)
v3.3.3
Add parentheses for nullish coalescing in ternary (#16391 by @cdignam-segment)
This change adds clarity to operator precedence.
// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#16458 by @y-schneider)
Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.
// Input
@​(foo`tagged template`)
class X {}
// Prettier 3.3.2
@​foo`tagged template`
class X {}
// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#16474 by @sosukesuzuki)
Adds support for Angular v18 @let declaration syntax.
Please see the following code example. The @let declaration allows you to define local variables within the template:
@​let name = 'Frodo';
<h1>Dashboard for {{name}}</h1>
Hello, {{name}}
For more details, please refer to the excellent blog post by the Angular Team: Introducing @let in Angular.
We also appreciate the Angular Team for kindly answering our questions to implement this feature.
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 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.