-
-
Notifications
You must be signed in to change notification settings - Fork 920
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
chore(deps): update devdependencies #1616
Merged
Merged
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
added
the
c: dependencies
Pull requests that adds/updates a dependency
label
Nov 28, 2022
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## next #1616 +/- ##
=======================================
Coverage 99.64% 99.64%
=======================================
Files 2221 2221
Lines 239065 239065
Branches 1045 1045
=======================================
Hits 238209 238209
Misses 835 835
Partials 21 21 |
Shinigami92
previously approved these changes
Nov 28, 2022
import-brain
previously approved these changes
Nov 28, 2022
renovate
bot
dismissed stale reviews from import-brain and Shinigami92
via
November 28, 2022 12:30
203d81d
renovate
bot
force-pushed
the
renovate/devdependencies
branch
from
November 28, 2022 12:30
0a0604a
to
203d81d
Compare
Shinigami92
previously approved these changes
Nov 28, 2022
renovate
bot
force-pushed
the
renovate/devdependencies
branch
from
November 28, 2022 14:01
203d81d
to
f3c69ba
Compare
import-brain
previously approved these changes
Nov 28, 2022
Shinigami92
previously approved these changes
Nov 28, 2022
renovate
bot
dismissed stale reviews from Shinigami92 and import-brain
via
November 28, 2022 17:44
f26897a
renovate
bot
force-pushed
the
renovate/devdependencies
branch
from
November 28, 2022 17:44
f3c69ba
to
f26897a
Compare
Shinigami92
approved these changes
Nov 28, 2022
ST-DDT
approved these changes
Nov 28, 2022
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.5.0
->~9.6.0
~11.1.0
->~11.2.0
~0.15.15
->~0.15.16
~39.6.2
->~39.6.4
~13.0.3
->~13.0.4
~3.2.0
->~3.2.1
Release Notes
vueuse/vueuse
v9.6.0
Compare Source
🐞 Bug Fixes
click
event is fired by a keypress - by @sibbng in https://github.com/vueuse/vueuse/issues/2426 (ff96d)View changes on GitHub
cypress-io/cypress
v11.2.0
Compare Source
Changelog: https://docs.cypress.io/guides/references/changelog#​11-2-0
evanw/esbuild
v0.15.16
Compare Source
Add a package alias feature (#2191)
With this release, you can now easily substitute one package for another at build time with the new
alias
feature. For example,--alias:oldpkg=newpkg
replaces all imports ofoldpkg
withnewpkg
. One use case for this is easily replacing a node-only package with a browser-friendly package in 3rd-party code that you don't control. These new substitutions happen first before all of esbuild's existing path resolution logic.Note that when an import path is substituted using an alias, the resulting import path is resolved in the working directory instead of in the directory containing the source file with the import path. If needed, the working directory can be set with the
cd
command when using the CLI or with theabsWorkingDir
setting when using the JS or Go APIs.Fix crash when pretty-printing minified JSX with object spread of object literal with computed property (#2697)
JSX elements are translated to JavaScript function calls and JSX element attributes are translated to properties on a JavaScript object literal. These properties are always either strings (e.g. in
<x y />
,y
is a string) or an object spread (e.g. in<x {...y} />
,y
is an object spread) because JSX doesn't provide syntax for directly passing a computed property as a JSX attribute. However, esbuild's minifier has a rule that tries to inline object spread with an inline object literal in JavaScript. For example,x = { ...{ y } }
is minified tox={y}
when minification is enabled. This means that there is a way to generate a non-string non-spread JSX attribute in esbuild's internal representation. One example is with<x {...{ [y]: z }} />
. When minification is enabled, esbuild's internal representation of this is something like<x [y]={z} />
due to object spread inlining, which is not valid JSX syntax. If this internal representation is then pretty-printed as JSX using--minify --jsx=preserve
, esbuild previously crashed when trying to print this invalid syntax. With this release, esbuild will now print<x {...{[y]:z}}/>
in this scenario instead of crashing.gajus/eslint-plugin-jsdoc
v39.6.4
Compare Source
Bug Fixes
require-return-checks
: check return statements prior to last line; fixes #935 (65e927b)v39.6.3
Compare Source
Bug Fixes
okonet/lint-staged
v13.0.4
Compare Source
Bug Fixes
simonhaenisch/prettier-plugin-organize-imports
v3.2.1
Compare Source
This version fixes the implementation of the language service host's
getCurrentDirectory
method to return the directory containing the tsconfig, rather than usingts.sys.getCurrentDirectory
(which returnsprocess.cwd()
). This should prevent issues with resolving compiler plugins with Volar (which is used for Vue support).Hopefully it doesn't break anything else 🤞 I don't think the tsconfig location is always the project root because of nested/extended tsconfigs, but it should be good enough for module resolution. If someone knows a better way of finding a project's root via the TypeScript API please let me know 🙏
Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.