chore(deps): update all minore and patch dependencies #179
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:
^0.5.0
->^0.6.0
^20.0.0
->^20.16.10
^9.0.0
->^9.1.6
^15.0.0
->^15.2.2
^3.0.0
->^3.3.3
^2.0.0
->^2.1.1
v1.0.3
->v1.0.4
^8.0.0
->^8.0.2
Release Notes
total-typescript/ts-reset (@total-typescript/ts-reset)
v0.6.1
Patch Changes
757be40
: Fixed a bug where creating an empty map would no longer infer types correctly.v0.6.0
Minor Changes
6574858
: Added a rule,/map-constructor
, to defaultMap
toMap<unknown, unknown>
when no arguments are passed to the constructor.Before, you'd get
any
for both key and value types. Now, the result ofMap.get
isunknown
instead ofany
:This now is part of the recommended rules.
5bf3a15
: Added a rule,/promise-catch
, to change thecatch
method to takeunknown
instead ofany
as an argument.Patch Changes
53cee4f
: author: @none23Fixed a bug where running .filter on a union of arrays would not work.
typicode/husky (husky)
v9.1.6
Compare Source
v9.1.5
Compare Source
v9.1.4
Compare Source
v9.1.3
Compare Source
PATH
v9.1.2
Compare Source
v9.1.1
Compare Source
v9.1.0
Compare Source
Super saiyan
goddog! 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 🐺⚡️
A new recipe has been added to the docs. Lint staged files without external dependencies (inspired by Prettier docs). Feel free to modify it.
For more advanced use cases, see lint-staged.
Fixes
bunx husky init
commandDeprecations
#!/usr/bin/env sh
and. "$(dirname -- "$0")/_/husky.sh"
from your hooks~/.huskyrc
to.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 😉
lint-staged/lint-staged (lint-staged)
v15.2.10
Compare Source
Patch Changes
e3f283b
Thanks @iiroj! - Update minor dependencies, includingmicromatch@~4.0.8
.v15.2.9
Compare Source
Patch Changes
b69ce2d
Thanks @iiroj! - Set the maximum number of event listeners to the number of tasks. This should silence the console warningMaxListenersExceededWarning: Possible EventEmitter memory leak detected
.v15.2.8
Compare Source
Patch Changes
f0480f0
Thanks @iiroj! - In the previous version the nativegit rev-parse --show-toplevel
command was taken into use for resolving the current git repo root. This version switched the--show-toplevel
flag with--show-cdup
, because on Git installed via MSYS2 the former was returning absolute paths that do not work with Node.jschild_process
. The new flag returns a path relative to the working directory, avoiding the issue.The GitHub Actions workflow has been updated to install Git via MSYS2, to ensure better future compatibility; using the default Git binary in the GitHub Actions runner was working correctly even with MSYS2.
v15.2.7
Compare Source
Patch Changes
a51be80
Thanks @iiroj! - In the previous version the nativegit rev-parse --show-toplevel
command was taken into use for resolving the current git repo root. This version drops the--path-format=absolute
option to support earlier git versions since it's also the default behavior. If you are still having trouble, please try upgradinggit
to the latest version.v15.2.6
Compare Source
Patch Changes
119adb2
Thanks @iiroj! - Use native "git rev-parse" commands to determine git repo root directory and the .git config directory, instead of using custom logic. This hopefully makes path resolution more robust on non-POSIX systems.v15.2.5
Compare Source
Patch Changes
#1424
31a1f95
Thanks @iiroj! - Allow approximately equivalent versions of direct dependencies by using the "~" character in the version ranges. This means a more recent patch version of a dependency is allowed if available.#1423
91abea0
Thanks @iiroj! - Improve error logging when failing to read or parse a configuration file#1424
ee43f15
Thanks @iiroj! - Upgrade micromatch@4.0.7v15.2.4
Compare Source
Patch Changes
4f4537a
Thanks @iiroj! - Fix release issue with previous version; update dependenciesprettier/prettier (prettier)
v3.3.3
Compare Source
diff
Add parentheses for nullish coalescing in ternary (#16391 by @cdignam-segment)
This change adds clarity to operator precedence.
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.
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: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.
v3.3.2
Compare Source
diff
Fix handlebars path expressions starts with
@
(#16358 by @Princeyadav05)v3.3.1
Compare Source
diff
Preserve empty lines in front matter (#16347 by @fisker)
Preserve explicit language in front matter (#16348 by @fisker)
Avoid line breaks in import attributes (#16349 by @fisker)
v3.3.0
Compare Source
diff
🔗 Release Notes
vitest-dev/vitest (vitest)
v2.1.2
Compare Source
🐞 Bug Fixes
Vitest.setServer
to postconfigureServer
hook to enable import analysis for workspace config loading - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6584 (e7f35)BenchmarkResult.samples
array to reduce memory usage - by @hi-ogawa and @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6541 (a6407)data:
protocol on preview provider file upload - by @userquin in https://github.com/vitest-dev/vitest/issues/6501 (e9821)*.astro
by default - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6565 (f8ff7)cleanOnRerun: false
to invalidate previous results - by @AriPerkkio in https://github.com/vitest-dev/vitest/issues/6592 (88bde)toBeDefined
withexpect.poll
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6562 (f7da6)beforeAll
failed - by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6524 (fb797)onTestFinished
andonTestFailed
duringretry
andrepeats
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6609 (c5e29)--standalone
- by @hi-ogawa in https://github.com/vitest-dev/vitest/issues/6577 (d0bf8)View changes on GitHub
ysk8hori/delta-typescript-graph-action (ysk8hori/delta-typescript-graph-action)
v1.0.4
Compare Source
What's Changed
1d96c77
by @renovate in https://github.com/ysk8hori/delta-typescript-graph-action/pull/77Full Changelog: ysk8hori/delta-typescript-graph-action@v1.0.3...v1.0.4
google/zx (zx)
v8.1.8
Compare Source
TeplateStringArray
detection #904, #905PromiseProcess
got lazy getters to optimize mem usage #903v8.1.7
Compare Source
Step by step on the road to improvements
Fixes
Finally, we've fixed the issue with piped process rejection #640 #899:
Enhancements
Added
cmd
display toProcessPromise
#891:and
duration
field toProcessOutput
#892:Enabled zurk-like pipe string literals #900:
v8.1.6
Compare Source
Improvements & Fixes
$.preferLocal
option now also accepts a directory #886, #887.Why not just
$.env['PATH'] = 'extra:' + '$.env['PATH']
?Well, the API internally does the same, but also handles the win paths peculiarities.
$.killSignal
option for the symmetry with the$.timeoutSignal
. You can override the default termination flow #885:$
opt presets became chainable #883:Duration
parser #884:v8.1.5
Compare Source
We've rolled out a new release!
Fixes
API. #870 #879
Chores
cd()
,within()
andsyncProcessCwd()
interactions. #878cwd
option in the documentation. #868v8.1.4
Compare Source
We continue optimizing bundles and CI/CD pipelines.
zx/core
entry size. #856defaults
. #864Which gives us: 897 kB → 829 kB (-7.58%)
v8.1.3
Compare Source
Nothing special today. We just keep improving the implementation.
Features
#824, #827, #828
zx/cli
exports its inners to allow more advanced usage.Imagine, your own CLI tool that uses
zx
as a base:#828
#650, #849
ps
:#840
Chore
$.log
acceptskind: 'custom'
#834$.verbose
and$.quiet
modes internals #835quotePowerShell
in docs #851async_hooks.createHook
warning on bun #848v8.1.2
Compare Source
Every new zx version is better than previous one. What have we here?
Features
ProcessPromise.verbose()
to enhance debugging experience.#820, #710
ProcessPromise.isSmth()
API:#823
Bug Fixes
main
entrypoint #827Chore
v8.1.1
Compare Source
This release brings a pinch of sugar and minor fixes.
Features
$.preferLocal
option to prefernode_modules/.bin
located binaries over globally system installed ones.#798
ProcessPromise
:#764, #811, #815
ProcessPromise
now exposes itssignal
reference.#816
Fixes
--quiet
is mapped to$.quiet
option. #813ProcessPromise
if it's missing. #810v8.1.0
Compare Source
This new release is a big deal. It brings significant improvements in reliability and compatibility.
New features
Added
usePwsh()
helper to switch to PowerShell v7+ #790timeout
is now configurable$
opts #796