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

build(deps): bump micromatch and nuxt in /examples/ssr/nuxt #138

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Aug 25, 2024

Bumps micromatch to 4.0.8 and updates ancestor dependency nuxt. These dependencies need to be updated together.

Updates micromatch from 3.1.10 to 4.0.8

Release notes

Sourced from micromatch's releases.

4.0.4

  • fix: Update picomatch to fix regression #179 (8becb55)

4.0.3

  • Enforce newer version of picomatch with bugfixes
Changelog

Sourced from micromatch's changelog.

[4.0.8] - 2024-08-22

[4.0.7] - 2024-05-22

  • this is basically v4.0.5, with some README updates
  • it is vulnerable to CVE-2024-4067
  • Updated braces to v3.0.3 to avoid CVE-2024-4068
  • does NOT break API compatibility

[4.0.6] - 2024-05-21

  • Added hasBraces to check if a pattern contains braces.
  • Fixes CVE-2024-4067
  • BREAKS API COMPATIBILITY
  • Should be labeled as a major release, but it's not.

[4.0.1 - 4.0.5]

[4.0.0] - 2019-03-20

Added

  • Adds support for options.onMatch. See the readme for details
  • Adds support for options.onIgnore. See the readme for details
  • Adds support for options.onResult. See the readme for details

Breaking changes

  • Require Node.js >= 8.6
  • Removed support for passing an array of brace patterns to micromatch.braces().
  • To strictly enforce closing brackets (for {, [, and (), you must now use strictBrackets=true instead of strictErrors.
  • cache - caching and all related options and methods have been removed
  • options.unixify was renamed to options.windows
  • options.nodupes Was removed. Duplicates are always removed by default. You can override this with custom behavior by using the onMatch, onResult and onIgnore functions.
  • options.snapdragon was removed, as snapdragon is no longer used.
  • options.sourcemap was removed, as snapdragon is no longer used, which provided sourcemap support.

[3.0.0] - 2017-04-11

Complete overhaul, with 36,000+ new unit tests validated against actual output generated by Bash and minimatch. More specifically, 35,000+ of the tests:

  • micromatch results are directly compared to bash results
  • in rare cases, when micromatch and bash disagree, micromatch's results are compared to minimatch's results
  • micromatch is much more accurate than minimatch, so there were cases where I had to make assumptions. I'll try to document these.

This refactor introduces a parser and compiler that are supersets of more granular parsers and compilers from other sub-modules. Each of these sub-modules has a singular responsibility and focuses on a certain type of matching that aligns with a specific part of the Bash "expansion" API.

These sub-modules work like plugins to seamlessly create the micromatch parser/compiler, so that strings are parsed in one pass, an AST is created, then a new string is generated by the compiler.

... (truncated)

Commits

Updates nuxt from 1.4.1 to 3.13.0

Release notes

Sourced from nuxt's releases.

v3.13.0

👀 Highlights

I'm pretty excited about this release - we've ported some features we had planned for Nuxt v4 back to v3, as well as a raft of bug fixes and performance improvements - as usual.

Here are a few of things I'm most excited about.

🏘️ Route Groups

We now support naming directories with parentheses/brackets to organise your routes without affecting the path.

For example:

-| pages/
---| index.vue
---| (marketing)/
-----| about.vue
-----| contact.vue

This will produce /, /about and /contact pages in your app. The marketing group is ignored for purposes of your URL structure.

Read more in the original PR.

🏝️ Islands and Head Metadata

It's now possible for server component islands to manipulate the head, such as by adding SEO metadata when rendering.

Read more in #27987.

🪝 Custom Prefetch Triggers

We now support custom prefetch triggers for NuxtLink (#27846).

For example:

\<template>
  <div>
    <NuxtLink prefetch-on="interaction">
      This will prefetch when hovered or when it gains focus
    </NuxtLink>
    <!-- note that you probably don't want both enabled! -->
    <NuxtLink :prefetch-on="{ visibility: true, interaction: true }">
      This will prefetch when hovered/focus - or when it becomes visible
    </NuxtLink>
  </div>
</template>

... (truncated)

Commits
  • 74ef96d v3.13.0
  • a012471 fix(nuxt): revert back to object syntax for island head (#28656)
  • 3f1db54 feat(nuxt): allow server islands to manipulate head (#27987)
  • 68f451a chore(deps): update devdependency @​nuxt/scripts to v0.7.1 (3.x) (#28646)
  • ad63154 chore(deps): update all non-major dependencies (3.x) (#28637)
  • 4dfbec8 fix(nuxt): do not provide default prefetchOn prop (#28630)
  • fb7c2f7 fix(nuxt): allow customising status code in validate method (#28612)
  • eed8730 fix(nuxt): extract route rules/page meta in 2+ script blocks (#28625)
  • 81774f3 chore(deps): update all non-major dependencies (3.x) (#28614)
  • 1eb9b0a feat(nuxt): namespace __NUXT__ when using multi-app (#27263)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by danielroe, a new releaser for nuxt since your current version.


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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [micromatch](https://github.com/micromatch/micromatch) to 4.0.8 and updates ancestor dependency [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt). These dependencies need to be updated together.


Updates `micromatch` from 3.1.10 to 4.0.8
- [Release notes](https://github.com/micromatch/micromatch/releases)
- [Changelog](https://github.com/micromatch/micromatch/blob/4.0.8/CHANGELOG.md)
- [Commits](micromatch/micromatch@3.1.10...4.0.8)

Updates `nuxt` from 1.4.1 to 3.13.0
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v3.13.0/packages/nuxt)

---
updated-dependencies:
- dependency-name: micromatch
  dependency-type: indirect
- dependency-name: nuxt
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@ibcheckmarx
Copy link

Logo
Checkmarx One – Scan Summary & Details21846274-56b6-4ad8-8128-71c894c7b5e2

New Issues

Severity Issue Source File / Package Checkmarx Insight
HIGH CVE-2022-37611 Npm-gh-pages-1.1.0 Vulnerable Package
HIGH CVE-2022-37620 Npm-html-minifier-3.5.5 Vulnerable Package
HIGH CVE-2022-37620 Npm-html-minifier-3.5.8 Vulnerable Package
HIGH CVE-2022-37620 Npm-html-minifier-3.5.21 Vulnerable Package
HIGH CVE-2024-27088 Npm-es5-ext-0.10.30 Vulnerable Package
HIGH CVE-2024-27088 Npm-es5-ext-0.10.38 Vulnerable Package
HIGH CVE-2024-27088 Npm-es5-ext-0.10.49 Vulnerable Package
HIGH CVE-2024-29180 Npm-webpack-dev-middleware-1.12.0 Vulnerable Package
HIGH CVE-2024-29180 Npm-webpack-dev-middleware-3.6.2 Vulnerable Package
HIGH CVE-2024-29180 Npm-webpack-dev-middleware-3.6.0 Vulnerable Package
HIGH CVE-2024-29180 Npm-webpack-dev-middleware-2.0.5 Vulnerable Package
HIGH CVE-2024-29180 Npm-webpack-dev-middleware-3.4.0 Vulnerable Package
HIGH CVE-2024-29180 Npm-webpack-dev-middleware-1.12.2 Vulnerable Package
HIGH CVE-2024-29180 Npm-webpack-dev-middleware-2.0.6 Vulnerable Package
HIGH CVE-2024-29180 Npm-webpack-dev-middleware-1.10.1 Vulnerable Package
HIGH CVE-2024-29415 Npm-ip-1.0.1 Vulnerable Package
HIGH CVE-2024-29415 Npm-ip-1.1.9 Vulnerable Package
HIGH CVE-2024-29415 Npm-ip-1.1.5 Vulnerable Package
HIGH CVE-2024-33883 Npm-ejs-2.6.1 Vulnerable Package
HIGH CVE-2024-33883 Npm-ejs-2.5.7 Vulnerable Package
HIGH CVE-2024-37890 Npm-ws-3.2.0 Vulnerable Package
HIGH CVE-2024-37890 Npm-ws-4.1.0 Vulnerable Package
HIGH CVE-2024-37890 Npm-ws-4.0.0 Vulnerable Package
HIGH CVE-2024-37890 Npm-ws-6.1.3 Vulnerable Package
HIGH CVE-2024-37890 Npm-ws-3.3.3 Vulnerable Package
HIGH CVE-2024-37890 Npm-ws-2.3.1 Vulnerable Package
HIGH CVE-2024-38355 Npm-socket.io-2.1.1 Vulnerable Package
HIGH CVE-2024-4068 Npm-braces-0.1.5 Vulnerable Package
HIGH CVE-2024-4068 Npm-braces-2.3.0 Vulnerable Package
HIGH CVE-2024-4068 Npm-braces-2.3.2 Vulnerable Package
HIGH CVE-2024-4068 Npm-braces-1.8.5 Vulnerable Package
MEDIUM CVE-2019-18799 Npm-node-sass-4.5.3 Vulnerable Package
MEDIUM CVE-2024-28849 Npm-follow-redirects-1.7.0 Vulnerable Package
MEDIUM CVE-2024-28849 Npm-follow-redirects-1.6.1 Vulnerable Package
MEDIUM CVE-2024-28863 Npm-tar-4.4.8 Vulnerable Package
MEDIUM CVE-2024-28863 Npm-tar-4.3.3 Vulnerable Package
MEDIUM CVE-2024-28863 Npm-tar-2.2.1 Vulnerable Package
MEDIUM CVE-2024-29041 Npm-express-4.14.1 Vulnerable Package
MEDIUM CVE-2024-29041 Npm-express-4.15.4 Vulnerable Package
MEDIUM CVE-2024-29041 Npm-express-4.16.4 Vulnerable Package
MEDIUM CVE-2024-29041 Npm-express-4.15.2 Vulnerable Package
MEDIUM CVE-2024-29041 Npm-express-4.16.2 Vulnerable Package
MEDIUM CVE-2024-4067 Npm-micromatch-3.1.5 Vulnerable Package
MEDIUM CVE-2024-4067 Npm-micromatch-3.1.10 Vulnerable Package
MEDIUM CVE-2024-4067 Npm-micromatch-2.3.11 Vulnerable Package
MEDIUM CVE-2024-4067 Npm-micromatch-4.0.8 Vulnerable Package
MEDIUM CVE-2024-42459 Npm-elliptic-6.4.1 Vulnerable Package
MEDIUM CVE-2024-42459 Npm-elliptic-6.4.0 Vulnerable Package
MEDIUM CVE-2024-42460 Npm-elliptic-6.4.0 Vulnerable Package
MEDIUM CVE-2024-42460 Npm-elliptic-6.4.1 Vulnerable Package
MEDIUM CVE-2024-42461 Npm-elliptic-6.4.1 Vulnerable Package
MEDIUM CVE-2024-42461 Npm-elliptic-6.4.0 Vulnerable Package
MEDIUM CVE-2024-6783 Npm-vue-template-compiler-2.1.10 Vulnerable Package
MEDIUM CVE-2024-6783 Npm-vue-template-compiler-2.6.6 Vulnerable Package
MEDIUM CVE-2024-6783 Npm-vue-template-compiler-2.5.13 Vulnerable Package
MEDIUM CVE-2024-6783 Npm-vue-template-compiler-2.7.16 Vulnerable Package
MEDIUM CVE-2024-6783 Npm-vue-template-compiler-2.4.4 Vulnerable Package
MEDIUM CVE-2024-6783 Npm-vue-template-compiler-2.6.10 Vulnerable Package
MEDIUM CVE-2024-6783 Npm-vue-template-compiler-2.2.4 Vulnerable Package
MEDIUM Cxaae6553e-ade4 Npm-es5-ext-0.10.64 Vulnerable Package

Fixed Issues

Severity Issue Source File / Package
HIGH Cxab55612e-3a56 Npm-braces-3.0.2
HIGH Cxab55612e-3a56 Npm-braces-1.8.5
HIGH Cxab55612e-3a56 Npm-braces-0.1.5
HIGH Cxab55612e-3a56 Npm-braces-2.3.0
HIGH Cxab55612e-3a56 Npm-braces-2.3.2
HIGH Cxca84a1c2-1f12 Npm-micromatch-3.1.10
HIGH Cxca84a1c2-1f12 Npm-micromatch-3.1.5
HIGH Cxca84a1c2-1f12 Npm-micromatch-2.3.11

@ibotta-devops-deploy
Copy link

@dependabot rebase

Copy link
Author

dependabot bot commented on behalf of github Nov 4, 2024

Sorry, only users with push access can use that command.

@ibotta-devops-deploy
Copy link

@dependabot rebase

Copy link
Author

dependabot bot commented on behalf of github Nov 4, 2024

Sorry, only users with push access can use that command.

@ibotta-devops-deploy
Copy link

@dependabot rebase

Copy link
Author

dependabot bot commented on behalf of github Nov 4, 2024

Sorry, only users with push access can use that command.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants