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 the npm_and_yarn group across 15 directories with 28 updates #3

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Dec 8, 2024

Bumps the npm_and_yarn group with 1 update in the /examples/astro/static directory: astro.
Bumps the npm_and_yarn group with 6 updates in the /examples/nestjs directory:

Package From To
cookie 0.6.0 0.7.1
@nestjs/platform-express 10.3.9 10.4.13
cross-spawn 7.0.3 7.0.6
micromatch 4.0.7 4.0.8
webpack 5.91.0 5.96.1
@nestjs/cli 10.3.2 10.4.8

Bumps the npm_and_yarn group with 4 updates in the /examples/nextjs/prisma directory: braces, cross-spawn, micromatch and next.
Bumps the npm_and_yarn group with 4 updates in the /examples/nextjs/spa directory: braces, cross-spawn, micromatch and next.
Bumps the npm_and_yarn group with 4 updates in the /examples/nextjs/spa-with-image-optimization directory: braces, cross-spawn, micromatch and next.
Bumps the npm_and_yarn group with 4 updates in the /examples/nextjs/ssr directory: braces, cross-spawn, micromatch and next.
Bumps the npm_and_yarn group with 1 update in the /examples/nuxt/nitro directory: cross-spawn.
Bumps the npm_and_yarn group with 10 updates in the /examples/nuxt/server directory:

Package From To
braces 3.0.2 3.0.3
cross-spawn 7.0.3 7.0.6
micromatch 4.0.5 4.0.8
rollup 4.12.0 4.28.1
vite 5.1.4 5.4.11
send 0.18.0 0.19.0
serve-static 1.15.0 1.16.2
tar 6.2.0 6.2.1
undici 5.28.3 5.28.4
nuxt 3.10.3 3.12.4

Bumps the npm_and_yarn group with 10 updates in the /examples/nuxt/static directory:

Package From To
braces 3.0.2 3.0.3
cross-spawn 7.0.3 7.0.6
micromatch 4.0.5 4.0.8
rollup 4.12.0 4.28.1
vite 5.1.4 5.4.11
send 0.18.0 0.19.0
serve-static 1.15.0 1.16.2
tar 6.2.0 6.2.1
undici 5.28.3 5.28.4
nuxt 3.10.3 3.12.4

Bumps the npm_and_yarn group with 11 updates in the /examples/strapi directory:

Package From To
cross-spawn 7.0.3 7.0.6
path-to-regexp 1.8.0 1.9.0
rollup 4.20.0 4.28.1
webpack 5.93.0 5.97.1
ws 7.5.10 8.18.0
@strapi/strapi 4.25.6 4.25.17
axios 1.6.0 1.7.4
@strapi/plugin-users-permissions 4.25.6 4.25.17
@strapi/plugin-i18n 4.25.6 4.25.13
@strapi/plugin-cloud 4.25.6 4.25.17
elliptic 6.5.6 6.6.1

Bumps the npm_and_yarn group with 1 update in the /examples/turbo-nextjs directory: next.
Bumps the npm_and_yarn group with 2 updates in the /examples/vite/vanilla-ts directory: rollup and vite.
Bumps the npm_and_yarn group with 4 updates in the /examples/vue/spa directory: cross-spawn, micromatch, rollup and vite.
Bumps the npm_and_yarn group with 4 updates in the /examples/vue/spa-router directory: cross-spawn, micromatch, rollup and vite.
Bumps the npm_and_yarn group with 1 update in the /examples/vue/ssr directory: express.

Updates astro from 4.5.3 to 4.16.1

Release notes

Sourced from astro's releases.

[email protected]

Patch Changes

  • #12177 a4ffbfa Thanks @​matthewp! - Ensure we target scripts for execution in the router

    Using document.scripts is unsafe because if the application has a name="scripts" this will shadow the built-in document.scripts. Fix is to use getElementsByTagName to ensure we're only grabbing real scripts.

  • #12173 2d10de5 Thanks @​ematipico! - Fixes a bug where Astro Actions couldn't redirect to the correct pathname when there was a rewrite involved.

[email protected]

Minor Changes

  • #12039 710a1a1 Thanks @​ematipico! - Adds a markdown.shikiConfig.langAlias option that allows aliasing a non-supported code language to a known language. This is useful when the language of your code samples is not a built-in Shiki language, but you want your Markdown source to contain an accurate language while also displaying syntax highlighting.

    The following example configures Shiki to highlight cjs code blocks using the javascript syntax highlighter:

    import { defineConfig } from 'astro/config';
    export default defineConfig({
    markdown: {
    shikiConfig: {
    langAlias: {
    cjs: 'javascript',
    },
    },
    },
    });

    Then in your Markdown, you can use the alias as the language for a code block for syntax highlighting:

    ```cjs
    'use strict';
    function commonJs() {
    return 'I am a commonjs file';
    }
    </code></pre>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/11984">#11984</a> <a href="https://github.com/withastro/astro/commit/3ac2263ff6070136bec9cffb863c38bcc31ccdfe"><code>3ac2263</code></a> Thanks <a href="https://github.com/chaegumi"><code>@​chaegumi</code></a>! - Adds a new <code>build.concurreny</code> configuration option to specify the number of pages to build in parallel</p>
    <p><strong>In most cases, you should not change the default value of <code>1</code>.</strong></p>
    <p>Use this option only when other attempts to reduce the overall rendering time (e.g. batch or cache long running tasks like fetch calls or data access) are not possible or are insufficient.</p>
    <p>Use this option only if the refactors are not possible. If the number is set too high, the page rendering may slow down due to insufficient memory resources and because JS is single-threaded.</p>
    </li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md&quot;&gt;astro's changelog</a>.</em></p>
    <blockquote>
    <h2>4.16.16</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12542&quot;&gt;#12542&lt;/a> <a href="https://github.com/withastro/astro/commit/65e50eb7b6d7b10a193bba7d292804ac0e55be18&quot;&gt;&lt;code&gt;65e50eb&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/kadykov&quot;&gt;&lt;code&gt;@​kadykov&lt;/code&gt;&lt;/a>! - Fix JPEG image size determination</p>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12525&quot;&gt;#12525&lt;/a> <a href="https://github.com/withastro/astro/commit/cf0d8b08a0f16bba7310d1a92c82b5a276682e8c&quot;&gt;&lt;code&gt;cf0d8b0&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/ematipico&quot;&gt;&lt;code&gt;@​ematipico&lt;/code&gt;&lt;/a>! - Fixes an issue where with <code>i18n</code> enabled, Astro couldn't render the <code>404.astro</code> component for non-existent routes.</p>
    </li>
    </ul>
    <h2>4.16.15</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a href="https://redirect.github.com/withastro/astro/pull/12498&quot;&gt;#12498&lt;/a> <a href="https://github.com/withastro/astro/commit/b140a3f6d821127f927b7cb938294549e41c5168&quot;&gt;&lt;code&gt;b140a3f&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/ematipico&quot;&gt;&lt;code&gt;@​ematipico&lt;/code&gt;&lt;/a>! - Fixes a regression where Astro was trying to access <code>Request.headers</code></li>
    </ul>
    <h2>4.16.14</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12480&quot;&gt;#12480&lt;/a> <a href="https://github.com/withastro/astro/commit/c3b7e7cfa13603c08eb923703f31a92d514e82db&quot;&gt;&lt;code&gt;c3b7e7c&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/matthewp&quot;&gt;&lt;code&gt;@​matthewp&lt;/code&gt;&lt;/a>! - Removes the default throw behavior in <code>astro:env</code></p>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12444&quot;&gt;#12444&lt;/a> <a href="https://github.com/withastro/astro/commit/28dd3ce5222a667fe113238254edf59318b3fa14&quot;&gt;&lt;code&gt;28dd3ce&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/ematipico&quot;&gt;&lt;code&gt;@​ematipico&lt;/code&gt;&lt;/a>! - Fixes an issue where a server island hydration script might fail case the island ID misses from the DOM.</p>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12476&quot;&gt;#12476&lt;/a> <a href="https://github.com/withastro/astro/commit/80a9a5299a9d51f2b09900d3200976d687feae8f&quot;&gt;&lt;code&gt;80a9a52&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/florian-lefebvre&quot;&gt;&lt;code&gt;@​florian-lefebvre&lt;/code&gt;&lt;/a>! - Fixes a case where the Content Layer <code>glob()</code> loader would not update when renaming or deleting an entry</p>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12418&quot;&gt;#12418&lt;/a> <a href="https://github.com/withastro/astro/commit/25baa4ed0c5f55fa85c2c7e2c15848937ed1dc9b&quot;&gt;&lt;code&gt;25baa4e&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/oliverlynch&quot;&gt;&lt;code&gt;@​oliverlynch&lt;/code&gt;&lt;/a>! - Fix cached image redownloading if it is the first asset</p>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12477&quot;&gt;#12477&lt;/a> <a href="https://github.com/withastro/astro/commit/46f6b386b3db6332f286d79958ef10261958cceb&quot;&gt;&lt;code&gt;46f6b38&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/ematipico&quot;&gt;&lt;code&gt;@​ematipico&lt;/code&gt;&lt;/a>! - Fixes an issue where the SSR build was emitting the <code>dist/server/entry.mjs</code> file with an incorrect import at the top of the file/</p>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12365&quot;&gt;#12365&lt;/a> <a href="https://github.com/withastro/astro/commit/a23985b02165c2ddce56d511b3f97b6815c452c9&quot;&gt;&lt;code&gt;a23985b&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/apatel369&quot;&gt;&lt;code&gt;@​apatel369&lt;/code&gt;&lt;/a>! - Fixes an issue where <code>Astro.currentLocale</code> was not correctly returning the locale for 404 and 500 pages.</p>
    </li>
    </ul>
    <h2>4.16.13</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12436&quot;&gt;#12436&lt;/a> <a href="https://github.com/withastro/astro/commit/453ec6b12f8c021e0bd0fd0ea9f71c8fc280f4b1&quot;&gt;&lt;code&gt;453ec6b&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/martrapp&quot;&gt;&lt;code&gt;@​martrapp&lt;/code&gt;&lt;/a>! - Fixes a potential null access in the clientside router</p>
    </li>
    <li>
    <p><a href="https://redirect.github.com/withastro/astro/pull/12392&quot;&gt;#12392&lt;/a> <a href="https://github.com/withastro/astro/commit/0462219612183b65867aaaef9fa538d89f201999&quot;&gt;&lt;code&gt;0462219&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/apatel369&quot;&gt;&lt;code&gt;@​apatel369&lt;/code&gt;&lt;/a>! - Fixes an issue where scripts were not correctly injected during the build. The issue was triggered when there were injected routes with the same <code>entrypoint</code> and different <code>pattern</code></p>
    </li>
    </ul>
    <h2>4.16.12</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a href="https://redirect.github.com/withastro/astro/pull/12420&quot;&gt;#12420&lt;/a> <a href="https://github.com/withastro/astro/commit/acac0af53466f8a381ccdac29ed2ad735d7b4e79&quot;&gt;&lt;code&gt;acac0af&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/ematipico&quot;&gt;&lt;code&gt;@​ematipico&lt;/code&gt;&lt;/a>! - Fixes an issue where the dev server returns a 404 status code when a user middleware returns a valid <code>Response</code>.</li>
    </ul>
    <h2>4.16.11</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a href="https://redirect.github.com/withastro/astro/pull/12305&quot;&gt;#12305&lt;/a> <a href="https://github.com/withastro/astro/commit/f5f71094ec74961b4cca2ee451798abd830c617a&quot;&gt;&lt;code&gt;f5f7109&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/florian-lefebvre&quot;&gt;&lt;code&gt;@​florian-lefebvre&lt;/code&gt;&lt;/a>! - Fixes a case where the error overlay would not escape the message</li>
    </ul>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a href="https://github.com/withastro/astro/commit/c73d65d7f76617cf5275203fd918887cbda01baf&quot;&gt;&lt;code&gt;c73d65d&lt;/code&gt;&lt;/a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12178&quot;&gt;#12178&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/650dd22a7bce084c66a9a0f96f2d4e4500807641&quot;&gt;&lt;code&gt;650dd22&lt;/code&gt;&lt;/a> Fix VT video test fail in firefox (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12188&quot;&gt;#12188&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/58e22bd042f9a67c2167605bc7ee45538f1b4921&quot;&gt;&lt;code&gt;58e22bd&lt;/code&gt;&lt;/a> [ci] format</li>
    <li><a href="https://github.com/withastro/astro/commit/2d10de5f212323e6e19c7ea379826dcc18fe739c&quot;&gt;&lt;code&gt;2d10de5&lt;/code&gt;&lt;/a> fix(routing): actions should redirect the original pathname (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12173&quot;&gt;#12173&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/a4ffbfaa5cb460c12bd486fd75e36147f51d3e5e&quot;&gt;&lt;code&gt;a4ffbfa&lt;/code&gt;&lt;/a> Ensure router only targets scripts for execution (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12177&quot;&gt;#12177&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/2f5b28e93851f39708d0d683832c70730b40afe9&quot;&gt;&lt;code&gt;2f5b28e&lt;/code&gt;&lt;/a> Use p-queue instead of fastq (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12189&quot;&gt;#12189&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/1f93fca1d36734bc0abc227214cf8d96eba513cd&quot;&gt;&lt;code&gt;1f93fca&lt;/code&gt;&lt;/a> Fix biome lint warning (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12187&quot;&gt;#12187&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/582f12e1f6f99b54865a0b24d804ee0924f4ef55&quot;&gt;&lt;code&gt;582f12e&lt;/code&gt;&lt;/a> [ci] release (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12148&quot;&gt;#12148&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/b9e8e96354019c21c8b73585bea74b84b9b092ee&quot;&gt;&lt;code&gt;b9e8e96&lt;/code&gt;&lt;/a> add info about content intellisense (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12164&quot;&gt;#12164&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/c6fd1df695d0f2a24bb49e6954064f92664ccf67&quot;&gt;&lt;code&gt;c6fd1df&lt;/code&gt;&lt;/a> Fix mts reloads (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12160&quot;&gt;#12160&lt;/a&gt;)&lt;/li>
    <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/[email protected]/packages/astro&quot;&gt;compare view</a></li>
    </ul>
    </details>
    <br />
    
    Updates braces from 3.0.2 to 3.0.3
    
    Commits
    
    74b2db2 3.0.3
    88f1429 update eslint. lint, fix unit tests.
    415d660 Snyk js braces 6838727 (#40)
    190510f fix tests, skip 1 test in test/braces.expand
    716eb9f readme bump
    a5851e5 Merge pull request #37 from coderaiser/fix/vulnerability
    2092bd1 feature: braces: add maxSymbols (https://github.com/micromatch/braces/issues/...
    9f5b4cf fix: vulnerability (https://security.snyk.io/vuln/SNYK-JS-BRACES-6838727)
    98414f9 remove funding file
    665ab5d update keepEscaping doc (#27)
    Additional commits viewable in compare view
    
    
    
    Updates cookie from 0.6.0 to 0.7.2
    
    Release notes
    Sourced from cookie's releases.
    
    0.7.1
    Fixed
    
    Allow leading dot for domain (#174)
    
    Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
    
    
    Add fast path for serialize without options, use obj.hasOwnProperty when parsing (#172)
    
    https://github.com/jshttp/cookie/compare/v0.7.0...v0.7.1
    0.7.0
    
    perf: parse cookies ~10% faster (#144 by @​kurtextrem and #170)
    fix: narrow the validation of cookies to match RFC6265 (#167 by @​bewinsnw)
    fix: add main to package.json for rspack (#166 by @​proudparrot2)
    
    https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.0
    
    
    
    Commits
    
    cf4658f 0.7.1
    6a8b8f5 Allow leading dot for domain (#174)
    58015c0 Remove more code and perf wins (#172)
    ab057d6 0.7.0
    5f02ca8 Migrate history to GitHub releases
    a5d591c Migrate history to GitHub releases
    51968f9 Skip isNaN
    9e7ca51 perf(parse): cache length, return early (#144)
    d6f39b0 Fix tests for old node
    6bb701f Remove failing scorecard
    Additional commits viewable in compare view
    
    
    
    Maintainer changes
    This version was pushed to npm by blakeembrey, a new releaser for cookie since your current version.
    
    
    Updates dset from 3.1.3 to 3.1.4
    
    Commits
    
    05b1ec0 3.1.4
    16d6154 fix: prevent proto assignment via implicit string
    See full diff in compare view
    
    
    
    Updates micromatch from 4.0.5 to 4.0.8
    
    Release notes
    Sourced from micromatch's releases.
    
    4.0.8
    Ultimate release that fixes both CVE-2024-4067 and CVE-2024-4068. We consider the issues low-priority, so even if you see automated scanners saying otherwise, don't be scared.
    
    
    
    Changelog
    Sourced from micromatch's changelog.
    
    [4.0.8] - 2024-08-22
    
    backported CVE-2024-4067 fix (from v4.0.6) over to 4.x branch
    
    
    
    
    Commits
    
    8bd704e 4.0.8
    a0e6841 run verb to generate README documentation
    4ec2884 Merge branch 'v4' into hauserkristof-feature/v4.0.8
    03aa805 Merge pull request #266 from hauserkristof/feature/v4.0.8
    814f5f7 lint
    67fcce6 fix: CHANGELOG about braces & CVE-2024-4068, v4.0.5
    113f2e3 fix: CVE numbers in CHANGELOG
    d9dbd9a feat: updated CHANGELOG
    2ab1315 fix: use actions/setup-node@v4
    1406ea3 feat: rework test to work on macos with node 10,12 and 14
    Additional commits viewable in compare view
    
    
    
    Updates rollup from 4.13.0 to 4.28.1
    
    Release notes
    Sourced from rollup's releases.
    
    v4.28.1
    4.28.1
    2024-12-06
    Bug Fixes
    
    Support running Rollup natively on LoongArch (#5749)
    Add optional debugId to SourceMap types (#5751)
    
    Pull Requests
    
    #5749: feat: add support for LoongArch (@​darkyzhou)
    #5751: feat: Add debugId to SourceMap types (@​timfish, @​lukastaegert)
    #5752: chore(deps): update dependency mocha to v11 (@​renovate[bot])
    #5753: chore(deps): update dependency vite to v6 (@​renovate[bot])
    #5754: fix(deps): update swc monorepo (major) (@​renovate[bot])
    #5755: chore(deps): lock file maintenance minor/patch updates (@​renovate[bot])
    #5756: Test if saving the Cargo cache can speed up FreeBSD (@​lukastaegert)
    
    v4.28.0
    4.28.0
    2024-11-30
    Features
    
    Allow to specify how to handle import attributes when transpiling Rollup config files (#5743)
    
    Pull Requests
    
    #5743: fix: supports modify the import attributes key in the config file (@​TrickyPi, @​lukastaegert)
    #5747: chore(deps): update codecov/codecov-action action to v5 (@​renovate[bot])
    #5748: chore(deps): lock file maintenance minor/patch updates (@​renovate[bot])
    
    v4.27.4
    4.27.4
    2024-11-23
    Bug Fixes
    
    Update bundled magic-string to support sourcemap debug ids (#5740)
    
    Pull Requests
    
    #5740: chore(deps): lock file maintenance minor/patch updates (@​renovate[bot])
    
    v4.27.3
    4.27.3
    
    
    ... (truncated)
    
    
    Changelog
    Sourced from rollup's changelog.
    
    4.28.1
    2024-12-06
    Bug Fixes
    
    Support running Rollup natively on LoongArch (#5749)
    Add optional debugId to SourceMap types (#5751)
    
    Pull Requests
    
    #5749: feat: add support for LoongArch (@​darkyzhou)
    #5751: feat: Add debugId to SourceMap types (@​timfish, @​lukastaegert)
    #5752: chore(deps): update dependency mocha to v11 (@​renovate[bot])
    #5753: chore(deps): update dependency vite to v6 (@​renovate[bot])
    #5754: fix(deps): update swc monorepo (major) (@​renovate[bot])
    #5755: chore(deps): lock file maintenance minor/patch updates (@​renovate[bot])
    #5756: Test if saving the Cargo cache can speed up FreeBSD (@​lukastaegert)
    
    4.28.0
    2024-11-30
    Features
    
    Allow to specify how to handle import attributes when transpiling Rollup config files (#5743)
    
    Pull Requests
    
    #5743: fix: supports modify the import attributes key in the config file (@​TrickyPi, @​lukastaegert)
    #5747: chore(deps): update codecov/codecov-action action to v5 (@​renovate[bot])
    #5748: chore(deps): lock file maintenance minor/patch updates (@​renovate[bot])
    
    4.27.4
    2024-11-23
    Bug Fixes
    
    Update bundled magic-string to support sourcemap debug ids (#5740)
    
    Pull Requests
    
    #5740: chore(deps): lock file maintenance minor/patch updates (@​renovate[bot])
    
    4.27.3
    2024-11-18
    Bug Fixes
    
    
    ... (truncated)
    
    
    Commits
    
    e60fb1c 4.28.1
    224247b chore(deps): lock file maintenance minor/patch updates (#5755)
    c3283cf Test if saving the Cargo cache can speed up FreeBSD (#5756)
    87a911c feat: Add debugId to SourceMap types (#5751)
    1b78f74 chore(deps): update dependency mocha to v11 (#5752)
    89e1c70 chore(deps): update dependency vite to v6 (#5753)
    4d6b077 feat: add support for LoongArch (#5749)
    d3464e4 fix(deps): update swc monorepo (major) (#5754)
    0595e43 4.28.0
    5053019 fix: supports modify the import attributes key in the config file (#5743)
    Additional commits viewable in compare view
    
    
    
    Updates vite from 5.1.6 to 5.4.11
    
    Release notes
    Sourced from vite's releases.
    
    v5.4.11
    Please refer to CHANGELOG.md for details.
    v5.4.10
    Please refer to CHANGELOG.md for details.
    v5.4.9
    Please refer to CHANGELOG.md for details.
    v5.4.8
    Please refer to CHANGELOG.md for details.
    v5.4.7
    Please refer to CHANGELOG.md for details.
    v5.4.6
    Please refer to CHANGELOG.md for details.
    v5.4.5
    Please refer to CHANGELOG.md for details.
    v5.4.4
    Please refer to CHANGELOG.md for details.
    v5.4.3
    Please refer to CHANGELOG.md for details.
    [email protected]
    Please refer to CHANGELOG.md for details.
    [email protected]
    Please refer to CHANGELOG.md for details.
    v5.4.2
    Please refer to CHANGELOG.md for details.
    [email protected]
    Please refer to CHANGELOG.md for details.
    v5.4.1
    Please refer to CHANGELOG.md for details.
    [email protected]
    Please refer to CHANGELOG.md for details.
    [email protected]
    Please refer to CHANGELOG.md for details.
    v5.4.0
    Please refer to CHANGELOG.md for details.
    
    
    ... (truncated)
    
    
    Changelog
    Sourced from vite's changelog.
    
    6.0.3 (2024-12-05)
    
    fix: handle postcss load unhandled rejections (#18886) (d5fb653), closes #18886
    fix: make handleInvoke interface compatible with invoke (#18876) (a1dd396), closes #18876
    fix: make result interfaces for ModuleRunnerTransport#invoke more explicit (#18851) (a75fc31), closes #18851
    fix: merge environments.ssr.resolve with root ssr config (#18857) (3104331), closes #18857
    fix: no permission to create vite config file (#18844) (ff47778), closes #18844
    fix: remove CSS import in CJS correctly in some cases (#18885) (690a36f), closes #18885
    fix(config): bundle files referenced with imports field (#18887) (2b5926a), closes #18887
    fix(config): make stacktrace path correct when sourcemap is enabled (#18833) (20fdf21), closes #18833
    fix(css): rewrite url when image-set and url exist at the same time (#18868) (d59efd8), closes #18868
    fix(deps): update all non-major dependencies (#18853) (5c02236), closes #18853
    fix(html): allow unexpected question mark in tag name (#18852) (1b54e50), closes #18852
    fix(module-runner): decode uri for file url passed to import (#18837) (88e49aa), closes #18837
    refactor: fix logic errors found by no-unnecessary-condition rule (#18891) (ea802f8), closes #18891
    chore: fix duplicate attributes issue number in comment (#18860) (ffee618), closes #18860
    
    6.0.2 (2024-12-02)
    
    chore: run typecheck in unit tests (#18858) (49f20bb), closes #18858
    chore: update broken links in changelog (#18802) (cb754f8), closes #18802
    chore: update broken links in changelog (#18804) (47ec49f), closes #18804
    fix: don't store temporary vite config file in node_modules if deno (#18823) (a20267b), closes #18823
    fix(css): referencing aliased svg asset with lightningcss enabled errored (#18819) (ae68958), closes #18819
    fix(manifest): use style.css as a key for the style file for cssCodesplit: false (#18820) (ec51115), closes #18820
    fix(optimizer): resolve all promises when cancelled (#18826) (d6e6194), closes #18826
    fix(resolve): don't set builtinModules to external by default (#18821) (2250ffa), closes #18821
    fix(ssr): set ssr.target: 'webworker' defaults as fallback (#18827) (b39e696), closes #18827
    feat(css): format lightningcss error (#18818) (dac7992), closes #18818
    refactor: make properties of ResolvedServerOptions and ResolvedPreviewOptions required (#18796) (51a5569), closes #18796
    
    6.0.1 (2024-11-27)
    
    fix: default empty server proxy prevents starting http2 server (#18788) (bbaf514), closes #18788
    fix(manifest): do not override existing js manifest entry  (#18776) (3b0837e), closes #18776
    fix(server): close _ssrCompatModuleRunner on server close (#18784) (9b4c410), closes #18784
    fix(server): skip hot channel client normalization for wsServer  (#18782) (cc7670a), closes #18782
    fix(worker): fix applyToEnvironment hooks on worker build (#18793) (0c6cdb0), closes #18793
    chore: flat v6 config file (#18777) (c7b3308), closes #18777
    chore: split changelog (#18787) (8542632), closes #18787
    chore: update changelog for v6 (#18773) (b254fac), closes #18773
    revert: update moduleResolution value casing (#18409) (#18774) (b0fc6e3), closes #18409 #18774
    
    6.0.0 (2024-11-26)
    
    
    ... (truncated)
    
    
    Commits
    
    c54c860 release: v5.4.11
    5f52bc8 release: v5.4.10
    7d1a3bc fix: backport #18367,augment hash for CSS files to prevent chromium erroring ...
    898d61f release: v5.4.9
    508d9ab fix: bump launch-editor-middleware to v2.9.1 (#18348)
    dc5434c fix(deps): bump tsconfck (#18322)
    851b258 fix(hmr): don't try to rewrite imports for direct CSS soft invalidation (#18252)
    96084d6 fix(data-uri): only match ids starting with data: (#18241)
    eae00b5 fix(css): fix lightningcss dep url resolution with custom root (#18125)
    c23558a chore: update all url references of vitejs.dev to vite.dev (#18276)
    Additional commits viewable in compare view
    
    
    
    Updates cookie from 0.6.0 to 0.7.1
    
    Release notes
    Sourced from cookie's releases.
    
    0.7.1
    Fixed
    
    Allow leading dot for domain (#174)
    
    Although not permitted in the spec, some users expect this to work and user agents ignore the leading dot according to spec
    
    
    Add fast path for serialize without options, use obj.hasOwnProperty when parsing (#172)
    
    https://github.com/jshttp/cookie/compare/v0.7.0...v0.7.1
    0.7.0
    
    perf: parse cookies ~10% faster (#144 by @​kurtextrem and #170)
    fix: narrow the validation of cookies to match RFC6265 (#167 by @​bewinsnw)
    fix: add main to package.json for rspack (#166 by @​proudparrot2)
    
    https://github.com/jshttp/cookie/compare/v0.6.0...v0.7.0
    
    
    
    Commits
    
    cf4658f 0.7.1
    6a8b8f5 Allow leading dot for domain (#174)
    58015c0 Remove more code and perf wins (#172)
    ab057d6 0.7.0
    5f02ca8 Migrate history to GitHub releases
    a5d591c Migrate history to GitHub releases
    51968f9 Skip isNaN
    9e7ca51 perf(parse): cache length, return early (#144)
    d6f39b0 Fix tests for old node
    6bb701f Remove failing scorecard
    Additional commits viewable in compare view
    
    
    
    Maintainer changes
    This version was pushed to npm by blakeembrey, a new releaser for cookie since your current version.
    
    
    Updates @nestjs/platform-express from 10.3.9 to 10.4.13
    
    Release notes
    Sourced from @​nestjs/platform-express's releases.
    
    v10.4.13 (2024-12-03)
    Bug fixes
    
    common
    
    #14256 chore(common): Add type declaration for RawBody decorator with pipes (@​sapenlei)
    
    
    
    Dependencies
    
    #14257 fix(deps): update dependency @​fastify/static to v7.0.4 (@​renovate[bot])
    #14258 fix(deps): update dependency @​nestjs/sequelize to v10.0.1 (@​renovate[bot])
    #14249 chore(deps): bump @​apollo/gateway from 2.4.8 to 2.8.5 in /sample/32-graphql-federation-schema-first/users-application (@​dependabot[bot])
    #14250 chore(deps): update jest monorepo (@​renovate[bot])
    #14245 chore(deps): update dependency mqtt to v5.10.3 (@​renovate[bot])
    #14247 fix(deps): update nest monorepo to v10.4.12 (@​renovate[bot])
    #14251 chore(deps-dev): bump graphql-tools from 9.0.3 to 9.0.5 (@​dependabot[bot])
    #14246 chore(deps): update nest monorepo (@​renovate[bot])
    
    Committers: 3
    
    Kamil Mysliwiec (@​kamilmysliwiec)
    Micael Levi L. Cavalcante (@​micalevisk)
    sapenlei (@​sapenlei)
    
    v10.4.12 (2024-11-29)
    Bug fixes
    
    common
    
    #14241 fix(common): enforce string type in validationpipe (@​LhonRafaat)
    
    
    
    Dependencies
    
    Other
    
    #14243 chore(deps): update dependency @​types/node to v20.17.9 (@​renovate[bot])
    #14240 chore(deps): update dependency @​types/multer to v1.4.12 (@​renovate[bot])
    #14239 chore(deps): update dependency @​types/chai to v4.3.20 (@​renovate[bot])
    #14237 chore(deps): update confluentinc/cp-zookeeper docker tag to v7.7.2 (Description has been truncated
    Summary by Sourcery
    Build:
    
    Bump npm_and_yarn dependencies across multiple directories, including updates to packages like astro, cookie, cross-spawn, micromatch, webpack, and others.

…8 updates

Bumps the npm_and_yarn group with 1 update in the /examples/astro/static directory: [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).
Bumps the npm_and_yarn group with 6 updates in the /examples/nestjs directory:

| Package | From | To |
| --- | --- | --- |
| [cookie](https://github.com/jshttp/cookie) | `0.6.0` | `0.7.1` |
| [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express) | `10.3.9` | `10.4.13` |
| [cross-spawn](https://github.com/moxystudio/node-cross-spawn) | `7.0.3` | `7.0.6` |
| [micromatch](https://github.com/micromatch/micromatch) | `4.0.7` | `4.0.8` |
| [webpack](https://github.com/webpack/webpack) | `5.91.0` | `5.96.1` |
| [@nestjs/cli](https://github.com/nestjs/nest-cli) | `10.3.2` | `10.4.8` |

Bumps the npm_and_yarn group with 4 updates in the /examples/nextjs/prisma directory: [braces](https://github.com/micromatch/braces), [cross-spawn](https://github.com/moxystudio/node-cross-spawn), [micromatch](https://github.com/micromatch/micromatch) and [next](https://github.com/vercel/next.js).
Bumps the npm_and_yarn group with 4 updates in the /examples/nextjs/spa directory: [braces](https://github.com/micromatch/braces), [cross-spawn](https://github.com/moxystudio/node-cross-spawn), [micromatch](https://github.com/micromatch/micromatch) and [next](https://github.com/vercel/next.js).
Bumps the npm_and_yarn group with 4 updates in the /examples/nextjs/spa-with-image-optimization directory: [braces](https://github.com/micromatch/braces), [cross-spawn](https://github.com/moxystudio/node-cross-spawn), [micromatch](https://github.com/micromatch/micromatch) and [next](https://github.com/vercel/next.js).
Bumps the npm_and_yarn group with 4 updates in the /examples/nextjs/ssr directory: [braces](https://github.com/micromatch/braces), [cross-spawn](https://github.com/moxystudio/node-cross-spawn), [micromatch](https://github.com/micromatch/micromatch) and [next](https://github.com/vercel/next.js).
Bumps the npm_and_yarn group with 1 update in the /examples/nuxt/nitro directory: [cross-spawn](https://github.com/moxystudio/node-cross-spawn).
Bumps the npm_and_yarn group with 10 updates in the /examples/nuxt/server directory:

| Package | From | To |
| --- | --- | --- |
| [braces](https://github.com/micromatch/braces) | `3.0.2` | `3.0.3` |
| [cross-spawn](https://github.com/moxystudio/node-cross-spawn) | `7.0.3` | `7.0.6` |
| [micromatch](https://github.com/micromatch/micromatch) | `4.0.5` | `4.0.8` |
| [rollup](https://github.com/rollup/rollup) | `4.12.0` | `4.28.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.1.4` | `5.4.11` |
| [send](https://github.com/pillarjs/send) | `0.18.0` | `0.19.0` |
| [serve-static](https://github.com/expressjs/serve-static) | `1.15.0` | `1.16.2` |
| [tar](https://github.com/isaacs/node-tar) | `6.2.0` | `6.2.1` |
| [undici](https://github.com/nodejs/undici) | `5.28.3` | `5.28.4` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `3.10.3` | `3.12.4` |

Bumps the npm_and_yarn group with 10 updates in the /examples/nuxt/static directory:

| Package | From | To |
| --- | --- | --- |
| [braces](https://github.com/micromatch/braces) | `3.0.2` | `3.0.3` |
| [cross-spawn](https://github.com/moxystudio/node-cross-spawn) | `7.0.3` | `7.0.6` |
| [micromatch](https://github.com/micromatch/micromatch) | `4.0.5` | `4.0.8` |
| [rollup](https://github.com/rollup/rollup) | `4.12.0` | `4.28.1` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.1.4` | `5.4.11` |
| [send](https://github.com/pillarjs/send) | `0.18.0` | `0.19.0` |
| [serve-static](https://github.com/expressjs/serve-static) | `1.15.0` | `1.16.2` |
| [tar](https://github.com/isaacs/node-tar) | `6.2.0` | `6.2.1` |
| [undici](https://github.com/nodejs/undici) | `5.28.3` | `5.28.4` |
| [nuxt](https://github.com/nuxt/nuxt/tree/HEAD/packages/nuxt) | `3.10.3` | `3.12.4` |

Bumps the npm_and_yarn group with 11 updates in the /examples/strapi directory:

| Package | From | To |
| --- | --- | --- |
| [cross-spawn](https://github.com/moxystudio/node-cross-spawn) | `7.0.3` | `7.0.6` |
| [path-to-regexp](https://github.com/pillarjs/path-to-regexp) | `1.8.0` | `1.9.0` |
| [rollup](https://github.com/rollup/rollup) | `4.20.0` | `4.28.1` |
| [webpack](https://github.com/webpack/webpack) | `5.93.0` | `5.97.1` |
| [ws](https://github.com/websockets/ws) | `7.5.10` | `8.18.0` |
| [@strapi/strapi](https://github.com/strapi/strapi) | `4.25.6` | `4.25.17` |
| [axios](https://github.com/axios/axios) | `1.6.0` | `1.7.4` |
| [@strapi/plugin-users-permissions](https://github.com/strapi/strapi) | `4.25.6` | `4.25.17` |
| [@strapi/plugin-i18n](https://github.com/strapi/strapi/tree/HEAD/packages/plugins/i18n) | `4.25.6` | `4.25.13` |
| @strapi/plugin-cloud | `4.25.6` | `4.25.17` |
| [elliptic](https://github.com/indutny/elliptic) | `6.5.6` | `6.6.1` |

Bumps the npm_and_yarn group with 1 update in the /examples/turbo-nextjs directory: [next](https://github.com/vercel/next.js).
Bumps the npm_and_yarn group with 2 updates in the /examples/vite/vanilla-ts directory: [rollup](https://github.com/rollup/rollup) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 4 updates in the /examples/vue/spa directory: [cross-spawn](https://github.com/moxystudio/node-cross-spawn), [micromatch](https://github.com/micromatch/micromatch), [rollup](https://github.com/rollup/rollup) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 4 updates in the /examples/vue/spa-router directory: [cross-spawn](https://github.com/moxystudio/node-cross-spawn), [micromatch](https://github.com/micromatch/micromatch), [rollup](https://github.com/rollup/rollup) and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).
Bumps the npm_and_yarn group with 1 update in the /examples/vue/ssr directory: [express](https://github.com/expressjs/express).


Updates `astro` from 4.5.3 to 4.16.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/[email protected]/packages/astro)

Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

Updates `cookie` from 0.6.0 to 0.7.2
- [Release notes](https://github.com/jshttp/cookie/releases)
- [Commits](jshttp/cookie@v0.6.0...v0.7.1)

Updates `dset` from 3.1.3 to 3.1.4
- [Release notes](https://github.com/lukeed/dset/releases)
- [Commits](lukeed/dset@v3.1.3...v3.1.4)

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

Updates `rollup` from 4.13.0 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.12.0...v4.28.1)

Updates `vite` from 5.1.6 to 5.4.11
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

Updates `cookie` from 0.6.0 to 0.7.1
- [Release notes](https://github.com/jshttp/cookie/releases)
- [Commits](jshttp/cookie@v0.6.0...v0.7.1)

Updates `@nestjs/platform-express` from 10.3.9 to 10.4.13
- [Release notes](https://github.com/nestjs/nest/releases)
- [Commits](https://github.com/nestjs/nest/commits/v10.4.13/packages/platform-express)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `path-to-regexp` from 0.1.7 to 0.1.10
- [Release notes](https://github.com/pillarjs/path-to-regexp/releases)
- [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md)
- [Commits](pillarjs/path-to-regexp@v1.8.0...v1.9.0)

Updates `webpack` from 5.91.0 to 5.96.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.91.0...v5.96.1)

Updates `@nestjs/cli` from 10.3.2 to 10.4.8
- [Release notes](https://github.com/nestjs/nest-cli/releases)
- [Changelog](https://github.com/nestjs/nest-cli/blob/master/.release-it.json)
- [Commits](nestjs/nest-cli@10.3.2...10.4.8)

Updates `body-parser` from 1.20.2 to 1.20.3
- [Release notes](https://github.com/expressjs/body-parser/releases)
- [Changelog](https://github.com/expressjs/body-parser/blob/master/HISTORY.md)
- [Commits](expressjs/body-parser@1.20.2...1.20.3)

Updates `express` from 4.19.2 to 4.21.1
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.19.2...4.20.0)

Updates `send` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/pillarjs/send/releases)
- [Changelog](https://github.com/pillarjs/send/blob/master/HISTORY.md)
- [Commits](pillarjs/send@0.18.0...0.19.0)

Updates `serve-static` from 1.15.0 to 1.16.2
- [Release notes](https://github.com/expressjs/serve-static/releases)
- [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](expressjs/serve-static@v1.15.0...v1.16.2)

Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `next` from 14.1.4 to 14.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.1.4...v14.2.10)

Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `next` from 14.1.4 to 14.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.1.4...v14.2.10)

Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `next` from 14.1.4 to 14.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.1.4...v14.2.10)

Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `next` from 14.1.4 to 14.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.1.4...v14.2.10)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `rollup` from 4.19.1 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.12.0...v4.28.1)

Updates `send` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/pillarjs/send/releases)
- [Changelog](https://github.com/pillarjs/send/blob/master/HISTORY.md)
- [Commits](pillarjs/send@0.18.0...0.19.0)

Updates `serve-static` from 1.15.0 to 1.16.2
- [Release notes](https://github.com/expressjs/serve-static/releases)
- [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](expressjs/serve-static@v1.15.0...v1.16.2)

Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `rollup` from 4.12.0 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.12.0...v4.28.1)

Updates `vite` from 5.1.4 to 5.4.11
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

Updates `send` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/pillarjs/send/releases)
- [Changelog](https://github.com/pillarjs/send/blob/master/HISTORY.md)
- [Commits](pillarjs/send@0.18.0...0.19.0)

Updates `serve-static` from 1.15.0 to 1.16.2
- [Release notes](https://github.com/expressjs/serve-static/releases)
- [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](expressjs/serve-static@v1.15.0...v1.16.2)

Updates `serve-static` from 1.15.0 to 1.16.2
- [Release notes](https://github.com/expressjs/serve-static/releases)
- [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](expressjs/serve-static@v1.15.0...v1.16.2)

Updates `tar` from 6.2.0 to 6.2.1
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-tar@v6.2.0...v6.2.1)

Updates `undici` from 5.28.3 to 5.28.4
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v5.28.3...v5.28.4)

Updates `nuxt` from 3.10.3 to 3.12.4
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v3.12.4/packages/nuxt)

Updates `@nuxt/devtools` from 1.0.8 to 1.6.3
- [Release notes](https://github.com/nuxt/devtools/releases)
- [Changelog](https://github.com/nuxt/devtools/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nuxt/devtools/commits/v1.6.3/packages/devtools)

Updates `ws` from 8.16.0 to 8.18.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.10...8.18.0)

Updates `braces` from 3.0.2 to 3.0.3
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](micromatch/braces@3.0.2...3.0.3)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `rollup` from 4.12.0 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.12.0...v4.28.1)

Updates `vite` from 5.1.4 to 5.4.11
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

Updates `send` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/pillarjs/send/releases)
- [Changelog](https://github.com/pillarjs/send/blob/master/HISTORY.md)
- [Commits](pillarjs/send@0.18.0...0.19.0)

Updates `serve-static` from 1.15.0 to 1.16.2
- [Release notes](https://github.com/expressjs/serve-static/releases)
- [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](expressjs/serve-static@v1.15.0...v1.16.2)

Updates `serve-static` from 1.15.0 to 1.16.2
- [Release notes](https://github.com/expressjs/serve-static/releases)
- [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](expressjs/serve-static@v1.15.0...v1.16.2)

Updates `tar` from 6.2.0 to 6.2.1
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-tar@v6.2.0...v6.2.1)

Updates `undici` from 5.28.3 to 5.28.4
- [Release notes](https://github.com/nodejs/undici/releases)
- [Commits](nodejs/undici@v5.28.3...v5.28.4)

Updates `nuxt` from 3.10.3 to 3.12.4
- [Release notes](https://github.com/nuxt/nuxt/releases)
- [Commits](https://github.com/nuxt/nuxt/commits/v3.12.4/packages/nuxt)

Updates `@nuxt/devtools` from 1.0.8 to 1.6.3
- [Release notes](https://github.com/nuxt/devtools/releases)
- [Changelog](https://github.com/nuxt/devtools/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nuxt/devtools/commits/v1.6.3/packages/devtools)

Updates `ws` from 8.16.0 to 8.18.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.10...8.18.0)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

Updates `path-to-regexp` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/pillarjs/path-to-regexp/releases)
- [Changelog](https://github.com/pillarjs/path-to-regexp/blob/master/History.md)
- [Commits](pillarjs/path-to-regexp@v1.8.0...v1.9.0)

Updates `rollup` from 4.20.0 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.12.0...v4.28.1)

Updates `webpack` from 5.93.0 to 5.97.1
- [Release notes](https://github.com/webpack/webpack/releases)
- [Commits](webpack/webpack@v5.91.0...v5.96.1)

Updates `ws` from 7.5.10 to 8.18.0
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@7.5.10...8.18.0)

Updates `@strapi/strapi` from 4.25.6 to 4.25.17
- [Release notes](https://github.com/strapi/strapi/releases)
- [Commits](strapi/strapi@v4.25.6...v4.25.17)

Updates `axios` from 1.6.0 to 1.7.4
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@v1.6.0...v1.7.4)

Updates `@strapi/plugin-users-permissions` from 4.25.6 to 4.25.17
- [Release notes](https://github.com/strapi/strapi/releases)
- [Commits](strapi/strapi@v4.25.6...v4.25.17)

Updates `@strapi/plugin-i18n` from 4.25.6 to 4.25.13
- [Release notes](https://github.com/strapi/strapi/releases)
- [Commits](https://github.com/strapi/strapi/commits/v4.25.13/packages/plugins/i18n)

Updates `@strapi/plugin-cloud` from 4.25.6 to 4.25.17

Updates `elliptic` from 6.5.6 to 6.6.1
- [Commits](indutny/elliptic@v6.5.6...v6.6.1)

Updates `next` from 14.1.4 to 14.2.10
- [Release notes](https://github.com/vercel/next.js/releases)
- [Changelog](https://github.com/vercel/next.js/blob/canary/release.js)
- [Commits](vercel/next.js@v14.1.4...v14.2.10)

Updates `rollup` from 4.19.1 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.12.0...v4.28.1)

Updates `vite` from 5.3.5 to 5.3.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `rollup` from 4.19.1 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.12.0...v4.28.1)

Updates `vite` from 5.3.5 to 5.3.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

Updates `cross-spawn` from 7.0.3 to 7.0.6
- [Changelog](https://github.com/moxystudio/node-cross-spawn/blob/master/CHANGELOG.md)
- [Commits](moxystudio/node-cross-spawn@v7.0.3...v7.0.6)

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

Updates `rollup` from 4.19.1 to 4.28.1
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.12.0...v4.28.1)

Updates `vite` from 5.3.5 to 5.3.6
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.11/packages/vite)

Updates `express` from 4.19.2 to 4.20.0
- [Release notes](https://github.com/expressjs/express/releases)
- [Changelog](https://github.com/expressjs/express/blob/master/History.md)
- [Commits](expressjs/express@4.19.2...4.20.0)

Updates `serve-static` from 1.15.0 to 1.16.0
- [Release notes](https://github.com/expressjs/serve-static/releases)
- [Changelog](https://github.com/expressjs/serve-static/blob/v1.16.2/HISTORY.md)
- [Commits](expressjs/serve-static@v1.15.0...v1.16.2)

---
updated-dependencies:
- dependency-name: astro
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cookie
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: dset
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cookie
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@nestjs/platform-express"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: path-to-regexp
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@nestjs/cli"
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: body-parser
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: express
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: send
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serve-static
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: send
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serve-static
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: send
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serve-static
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serve-static
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: tar
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: undici
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: nuxt
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@nuxt/devtools"
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: ws
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: braces
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: send
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serve-static
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: serve-static
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: tar
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: undici
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: nuxt
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@nuxt/devtools"
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: ws
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: path-to-regexp
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: ws
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@strapi/strapi"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: axios
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@strapi/plugin-users-permissions"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@strapi/plugin-i18n"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: "@strapi/plugin-cloud"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: elliptic
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: next
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: cross-spawn
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: micromatch
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: vite
  dependency-type: direct:development
  dependency-group: npm_and_yarn
- dependency-name: express
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: serve-static
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Dec 8, 2024
Copy link

sourcery-ai bot commented Dec 8, 2024

Reviewer's Guide by Sourcery

This PR updates multiple npm dependencies across 15 directories in the project. The changes are primarily version bumps for various packages including Astro, Next.js, Nuxt, Strapi, NestJS, and their associated dependencies. The updates include both minor and patch version changes, with some significant version jumps for packages like Astro (4.5.3 to 4.16.1) and Next.js (14.1.4 to 14.2.10).

No diagrams generated as the changes look simple and do not need a visual representation.

File-Level Changes

Change Details Files
Update Astro framework and related dependencies
  • Upgrade Astro from 4.5.3 to 4.16.1
  • Update @astrojs/check and typescript dependencies
examples/astro/static/package.json
examples/astro/static/package-lock.json
Update Next.js framework across multiple applications
  • Upgrade Next.js from 14.1.4 to 14.2.10 in multiple Next.js applications
  • Update related React dependencies
examples/nextjs/prisma/package.json
examples/nextjs/spa/package.json
examples/nextjs/spa-with-image-optimization/package.json
examples/nextjs/ssr/package.json
examples/turbo-nextjs/apps/docs/package.json
examples/turbo-nextjs/apps/web/package.json
Update Nuxt framework and dependencies
  • Upgrade Nuxt from 3.10.3 to 3.12.4
  • Update Vue and Vue Router dependencies
examples/nuxt/server/package.json
examples/nuxt/static/package.json
Update NestJS framework and CLI tools
  • Upgrade @nestjs/platform-express to 10.4.13
  • Update @nestjs/cli to 10.4.8
examples/nestjs/package.json
examples/nestjs/package-lock.json
Update Strapi CMS and plugins
  • Upgrade @strapi/strapi to 4.25.17
  • Update Strapi plugins to matching versions
  • Update @strapi/plugin-i18n to 4.25.13
examples/strapi/package.json
Update Vite development server
  • Upgrade Vite from 5.3.4 to 5.3.6
examples/vite/vanilla-ts/package.json

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time. You can also use
    this command to specify where the summary should be inserted.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

coderabbitai bot commented Dec 8, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!

Copy link

codiumai-pr-agent-free bot commented Dec 8, 2024

CI Failure Feedback 🧐

(Checks updated until commit d39efca)

Action: aarch64

Failed stage: [❌]

Failure summary:

The action failed because there was no available runner to pick up the job. This indicates that the
job was queued but could not be executed due to the lack of available resources or runners.

Relevant error logs:
1:  Job defined at: khulnasoft/Hostly/.github/workflows/hostly-staging-build.yml@refs/heads/dependabot/npm_and_yarn/examples/astro/static/npm_and_yarn-07c848345e
2:  Waiting for a runner to pick up this job...

✨ CI feedback usage guide:

The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
The tool analyzes the failed checks and provides several feedbacks:

  • Failed stage
  • Failed test name
  • Failure summary
  • Relevant error logs

In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

/checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"

where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

Configuration options

  • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
  • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
  • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
  • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
  • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

See more information about the checks tool in the docs.

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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants