Skip to content
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 #2499

Merged
merged 2 commits into from
Oct 23, 2023
Merged

chore(deps): update devdependencies #2499

merged 2 commits into from
Oct 23, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 23, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/markdown-it (source) ~13.0.2 -> ~13.0.4 age adoption passing confidence
@types/node (source) ~20.8.6 -> ~20.8.7 age adoption passing confidence
@types/sanitize-html (source) ~2.9.2 -> ~2.9.3 age adoption passing confidence
@types/semver (source) ~7.5.3 -> ~7.5.4 age adoption passing confidence
@types/validator (source) ~13.11.3 -> ~13.11.5 age adoption passing confidence
cypress ~13.3.1 -> ~13.3.2 age adoption passing confidence
esbuild ~0.19.4 -> ~0.19.5 age adoption passing confidence
eslint (source) ~8.51.0 -> ~8.52.0 age adoption passing confidence
eslint-plugin-vitest ~0.3.2 -> ~0.3.8 age adoption passing confidence
tsx ~3.13.0 -> ~3.14.0 age adoption passing confidence
vite (source) ~4.4.11 -> ~4.5.0 age adoption passing confidence
vue (source) ~3.3.4 -> ~3.3.6 age adoption passing confidence

Release Notes

cypress-io/cypress (cypress)

v13.3.2

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-3-2

evanw/esbuild (esbuild)

v0.19.5

Compare Source

  • Fix a regression in 0.19.0 regarding paths in tsconfig.json (#​3354)

    The fix in esbuild version 0.19.0 to process tsconfig.json aliases before the --packages=external setting unintentionally broke an edge case in esbuild's handling of certain tsconfig.json aliases where there are multiple files with the same name in different directories. This release adjusts esbuild's behavior for this edge case so that it passes while still processing aliases before --packages=external. Please read the linked issue for more details.

  • Fix a CSS font property minification bug (#​3452)

    This release fixes a bug where esbuild's CSS minifier didn't insert a space between the font size and the font family in the font CSS shorthand property in the edge case where the original source code didn't already have a space and the leading string token was shortened to an identifier:

    /* Original code */
    .foo { font: 16px"Menlo"; }
    
    /* Old output (with --minify) */
    .foo{font:16pxMenlo}
    
    /* New output (with --minify) */
    .foo{font:16px Menlo}
  • Fix bundling CSS with asset names containing spaces (#​3410)

    Assets referenced via CSS url() tokens may cause esbuild to generate invalid output when bundling if the file name contains spaces (e.g. url(image 2.png)). With this release, esbuild will now quote all bundled asset references in url() tokens to avoid this problem. This only affects assets loaded using the file and copy loaders.

  • Fix invalid CSS url() tokens in @import rules (#​3426)

    In the future, CSS url() tokens may contain additional stuff after the URL. This is irrelevant today as no CSS specification does this. But esbuild previously had a bug where using these tokens in an @import rule resulted in malformed output. This bug has been fixed.

  • Fix browser + false + type: module in package.json (#​3367)

    The browser field in package.json allows you to map a file to false to have it be treated as an empty file when bundling for the browser. However, if package.json contains "type": "module" then all .js files will be considered ESM, not CommonJS. Importing a named import from an empty CommonJS file gives you undefined, but importing a named export from an empty ESM file is a build error. This release changes esbuild's interpretation of these files mapped to false in this situation from ESM to CommonJS to avoid generating build errors for named imports.

  • Fix a bug in top-level await error reporting (#​3400)

    Using require() on a file that contains top-level await is not allowed because require() must return synchronously and top-level await makes that impossible. You will get a build error if you try to bundle code that does this with esbuild. This release fixes a bug in esbuild's error reporting code for complex cases of this situation involving multiple levels of imports to get to the module containing the top-level await.

  • Update to Unicode 15.1.0

    The character tables that determine which characters form valid JavaScript identifiers have been updated from Unicode version 15.0.0 to the newly-released Unicode version 15.1.0. I'm not putting an example in the release notes because all of the new characters will likely just show up as little squares since fonts haven't been updated yet. But you can read https://www.unicode.org/versions/Unicode15.1.0/#Summary for more information about the changes.

    This upgrade was contributed by @​JLHwung.

eslint/eslint (eslint)

v8.52.0

Compare Source

Features

  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#​17611) (Yosuke Ota)

Bug Fixes

  • 5de9637 fix: Ensure shared references in rule configs are separated (#​17666) (Nicholas C. Zakas)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#​17649) (Francesco Trotta)

Documentation

  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#​17664) (Nicholas C. Zakas)
  • 660ed3a docs: Plugin flat config migration guide (#​17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#​17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#​17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#​17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#​17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#​17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#​17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#​17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#​17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#​17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

Chores

veritem/eslint-plugin-vitest (eslint-plugin-vitest)

v0.3.8

Compare Source

Features

v0.3.6

Compare Source

chore
  • valid-function-names: updated list of possible permutations of call chains (#​276) (5375f2e)

v0.3.3

Compare Source

Bug Fixes
Features
  • consistent-test-it: rewrite import statement as well (#​274) (014bd70)
esbuild-kit/tsx (tsx)

v3.14.0

Compare Source

Bug Fixes
Features
  • support Node v20.6.0 module.register() & --import flag (#​337) (23e4694)

This release is also available on:

vitejs/vite (vite)

v4.5.0

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/core (vue)

v3.3.6

Compare Source

Bug Fixes
Performance Improvements

v3.3.5

Compare Source

Bug Fixes
Performance Improvements
  • compiler-sfc: lazy require typescript (d2c3d8b)
  • custom-element: cancel MutationObserver listener when disconnected (#​8666) (24d98f0)
  • mark defineComponent as side-effects-free (#​8512) (438027c)

Configuration

📅 Schedule: Branch creation - "before 4am 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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot requested a review from a team as a code owner October 23, 2023 00:28
@renovate renovate bot added the c: dependencies Pull requests that adds/updates a dependency label Oct 23, 2023
@codecov
Copy link

codecov bot commented Oct 23, 2023

Codecov Report

Merging #2499 (502bca9) into next (e901641) will increase coverage by 0.00%.
The diff coverage is n/a.

Additional details and impacted files
@@           Coverage Diff           @@
##             next    #2499   +/-   ##
=======================================
  Coverage   99.58%   99.59%           
=======================================
  Files        2823     2823           
  Lines      255520   255520           
  Branches     1102     1103    +1     
=======================================
+ Hits       254464   254473    +9     
+ Misses       1028     1019    -9     
  Partials       28       28           

see 2 files with indirect coverage changes

@renovate renovate bot force-pushed the renovate/devdependencies branch 2 times, most recently from 06a3f5f to a76d69c Compare October 23, 2023 06:53
@renovate
Copy link
Contributor Author

renovate bot commented Oct 23, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@ST-DDT ST-DDT added this to the vAnytime milestone Oct 23, 2023
@ST-DDT ST-DDT self-assigned this Oct 23, 2023
@ST-DDT ST-DDT requested review from a team October 23, 2023 09:44
@ST-DDT ST-DDT merged commit c591880 into next Oct 23, 2023
20 checks passed
@ST-DDT ST-DDT deleted the renovate/devdependencies branch October 23, 2023 10:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c: dependencies Pull requests that adds/updates a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants