Skip to content

Bump the npm_and_yarn group across 1 directory with 7 updates#11

Merged
MedFrio merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm_and_yarn-8736de9659
Oct 11, 2024
Merged

Bump the npm_and_yarn group across 1 directory with 7 updates#11
MedFrio merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm_and_yarn-8736de9659

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 11, 2024

Bumps the npm_and_yarn group with 3 updates in the / directory: cookie, @astrojs/node and astro.

Updates cookie from 0.5.0 to 0.7.2

Release notes

Sourced from cookie's releases.

v0.7.2

Fixed

  • Fix object assignment of hasOwnProperty (#177) bc38ffd

jshttp/cookie@v0.7.1...v0.7.2

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)

jshttp/cookie@v0.7.0...v0.7.1

0.7.0

jshttp/cookie@v0.6.0...v0.7.0

0.6.0

  • Add partitioned option
Commits
Maintainer changes

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


Updates @astrojs/node from 3.1.1 to 8.3.4

Release notes

Sourced from @​astrojs/node's releases.

@​astrojs/node@​8.3.4

Patch Changes

Changelog

Sourced from @​astrojs/node's changelog.

8.3.4

Patch Changes

8.3.3

Patch Changes

  • #11535 932bd2e Thanks @​matthewp! - Move polyfills up before awaiting the env module in the Node.js adapter.

    Previously the env setting was happening before the polyfills were applied. This means that if the Astro env code (or any dependencies) depended on crypto, it would not be polyfilled in time.

    Polyfills should be applied ASAP to prevent races. This moves it to the top of the Node adapter.

8.3.2

Patch Changes

8.3.1

Patch Changes

8.3.0

Minor Changes

8.2.6

Patch Changes

8.2.5

Patch Changes

8.2.4

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by matthewp, a new releaser for @​astrojs/node since your current version.


Updates astro from 1.9.1 to 4.16.0

Release notes

Sourced from astro's releases.

astro@4.16.0

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>
    <blockquote>
    <p>[!WARNING]
    This feature is stable and is not considered experimental. However, this feature is only intended to address difficult performance issues, and breaking changes may occur in a <a href="https://docs.astro.build/en/upgrade-astro/#semantic-versioning">minor release</a> to keep this option as performant as possible.</p>
    </blockquote>
    <pre lang="js"><code>// astro.config.mjs
    import { defineConfig } from 'astro';
    export default defineConfig({
    build: {
    </code></pre>
    </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-v1.md&quot;&gt;astro's changelog</a>.</em></p>
    <blockquote>
    <h2>1.9.2</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a href="https://redirect.github.com/withastro/astro/pull/5776&quot;&gt;#5776&lt;/a> <a href="https://github.com/withastro/astro/commit/6a31433ed79c7f84fd3ce602005b42ad95007d84&quot;&gt;&lt;code&gt;6a31433ed&lt;/code&gt;&lt;/a> Thanks <a href="https://github.com/ba55ie&quot;&gt;&lt;code&gt;@​ba55ie&lt;/code&gt;&lt;/a>! - Fix Lit slotted content</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <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><a href="https://github.com/withastro/astro/commit/cf24d6922adf5ee6e8d7741da662f33b3a1c23c3&quot;&gt;&lt;code&gt;cf24d69&lt;/code&gt;&lt;/a> [ci] format</li>
    <li><a href="https://github.com/withastro/astro/commit/710a1a11f488ff6ed3da6d3e0723b2322ccfe27b&quot;&gt;&lt;code&gt;710a1a1&lt;/code&gt;&lt;/a> feat(markdown): add support for <code>shiki</code> option <code>langAlias</code> (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12039&quot;&gt;#12039&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/3ac2263ff6070136bec9cffb863c38bcc31ccdfe&quot;&gt;&lt;code&gt;3ac2263&lt;/code&gt;&lt;/a> add support parallel builds (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/11984&quot;&gt;#11984&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/116c53359637f7aa9afd9f7002729cf653884f22&quot;&gt;&lt;code&gt;116c533&lt;/code&gt;&lt;/a> [ci] format</li>
    <li><a href="https://github.com/withastro/astro/commit/e96bcae535ef2f0661f539c1d49690c531df2d4e&quot;&gt;&lt;code&gt;e96bcae&lt;/code&gt;&lt;/a> Fixed parsing of x-forwarded-* headers (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12130&quot;&gt;#12130&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/2a1536d0911e6d3db6666dfeb4ee697429078c1e&quot;&gt;&lt;code&gt;2a1536d&lt;/code&gt;&lt;/a> chore: move lint rules to Biome (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12145&quot;&gt;#12145&lt;/a&gt;)&lt;/li>
    <li><a href="https://github.com/withastro/astro/commit/bb6d37f94a283433994f9243189cb4386df0e11a&quot;&gt;&lt;code&gt;bb6d37f&lt;/code&gt;&lt;/a> fix(routing): default locale when there's a list (<a href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/12151&quot;&gt;#12151&lt;/a&gt;)&lt;/li>
    <li>Additional commits viewable in <a href="https://github.com/withastro/astro/commits/astro@4.16.0/packages/astro&quot;&gt;compare view</a></li>
    </ul>
    </details>
    <br />
    
    Updates dset from 3.1.2 to 3.1.4
    
    Release notes
    Sourced from dset's releases.
    
    v3.1.3
    Patches
    
    Add "types" export conditions for TypeScript "nodenext"/"node16" resolution: #40
    Thank you @​Akkuma
    
    
    Full Changelog: https://github.com/lukeed/dset/compare/v3.1.2...v3.1.3
    
    
    
    Commits
    
    05b1ec0 3.1.4
    16d6154 fix: prevent proto assignment via implicit string
    48f14a1 3.1.3
    aca90fb chore: add "types" conditions for TS "nodenext" resolution (#40)
    See full diff in compare view
    
    
    
    Updates rollup from 2.79.1 to 4.24.0
    
    Release notes
    Sourced from rollup's releases.
    
    v4.24.0
    4.24.0
    2024-10-02
    Features
    
    Support preserving and transpiling JSX syntax (#5668)
    
    Pull Requests
    
    #5668: Introduce JSX support (@​lukastaegert, @​Martin-Idel, @​felixhuttmann, @​AlexDroll, @​tiptr)
    
    v4.23.0
    4.23.0
    2024-10-01
    Features
    
    Collect all emitted names and originalFileNames for assets (#5686)
    
    Pull Requests
    
    #5686: Add names and originalFileNames to assets (@​lukastaegert)
    
    v4.22.5
    4.22.5
    2024-09-27
    Bug Fixes
    
    Allow parsing of certain unicode characters again (#5674)
    
    Pull Requests
    
    #5674: Fix panic with unicode characters (@​sapphi-red, @​lukastaegert)
    #5675: chore(deps): update dependency rollup to v4.22.4 [security] (@​renovate[bot])
    #5680: chore(deps): update dependency @​rollup/plugin-commonjs to v28 (@​renovate[bot], @​lukastaegert)
    #5681: chore(deps): update dependency @​rollup/plugin-replace to v6 (@​renovate[bot])
    #5682: chore(deps): update dependency @​rollup/plugin-typescript to v12 (@​renovate[bot])
    #5684: chore(deps): lock file maintenance minor/patch updates (@​renovate[bot])
    
    v4.22.4
    4.22.4
    2024-09-21
    Bug Fixes
    
    
    ... (truncated)
    
    
    Changelog
    Sourced from rollup's changelog.
    
    4.24.0
    2024-10-02
    Features
    
    Support preserving and transpiling JSX syntax (#5668)
    
    Pull Requests
    
    #5668: Introduce JSX support (@​lukastaegert, @​Martin-Idel, @​felixhuttmann, @​AlexDroll, @​tiptr)
    
    4.23.0
    2024-10-01
    Features
    
    Collect all emitted names and originalFileNames for assets (#5686)
    
    Pull Requests
    
    #5686: Add names and originalFileNames to assets (@​lukastaegert)
    
    4.22.5
    2024-09-27
    Bug Fixes
    
    Allow parsing of certain unicode characters again (#5674)
    
    Pull Requests
    
    #5674: Fix panic with unicode characters (@​sapphi-red, @​lukastaegert)
    #5675: chore(deps): update dependency rollup to v4.22.4 [security] (@​renovate[bot])
    #5680: chore(deps): update dependency @​rollup/plugin-commonjs to v28 (@​renovate[bot], @​lukastaegert)
    #5681: chore(deps): update dependency @​rollup/plugin-replace to v6 (@​renovate[bot])
    #5682: chore(deps): update dependency @​rollup/plugin-typescript to v12 (@​renovate[bot])
    #5684: chore(deps): lock file maintenance minor/patch updates (@​renovate[bot])
    
    4.22.4
    2024-09-21
    Bug Fixes
    
    Fix a vulnerability in generated code that affects IIFE, UMD and CJS bundles when run in a browser context (#5671)
    
    Pull Requests
    
    
    ... (truncated)
    
    
    Commits
    
    d3c000f 4.24.0
    ca186ee Introduce JSX support (#5668)
    ed98e08 4.23.0
    d0eee9c Add names and originalFileNames to assets (#5686)
    bc7780c 4.22.5
    ee138d1 chore(deps): lock file maintenance minor/patch updates (#5684)
    2d59dbc chore(deps): update dependency @​rollup/plugin-commonjs to v28 (#5680)
    524670d Fix panic with unicode characters (#5674)
    9c5e345 chore(deps): update dependency @​rollup/plugin-replace to v6 (#5681)
    6d75b6d chore(deps): update dependency @​rollup/plugin-typescript to v12 (#5682)
    Additional commits viewable in compare view
    
    
    
    Updates send from 0.18.0 to 0.19.1
    
    Release notes
    Sourced from send's releases.
    
    0.19.0
    What's Changed
    
    Remove link renderization in html while redirecting (pillarjs/send#235)
    
    New Contributors
    
    @​UlisesGascon made their first contribution in pillarjs/send#235
    
    Full Changelog: https://github.com/pillarjs/send/compare/0.18.0...0.19.0
    
    
    
    Changelog
    Sourced from send's changelog.
    
    1.1.0 / 2024-09-10
    
    Changes from 0.19.0
    
    1.0.0 / 2024-07-25
    
    Drop support for Node.js <18.0
    statuses@^2.0.1
    range-parser@^1.2.1
    on-finished@^2.4.1
    ms@^2.1.3
    mime-types@^2.1.35
    http-errors@^2.0.0
    fresh@^0.5.2
    etag@^1.8.1
    escape-html@^1.0.3
    encodeurl@^2.0.0
    destroy@^1.2.0
    debug@^4.3.5
    
    1.0.0-beta.2 / 2024-03-04
    
    Changes from 0.18.0
    
    1.0.0-beta.1 / 2022-02-04
    
    Drop support for Node.js 0.8
    Remove hidden option -- use dotfiles option
    Remove from alias to root -- use root directly
    Remove send.etag() -- use etag in options
    Remove send.index() -- use index in options
    Remove send.maxage() -- use maxAge in options
    Remove send.root() -- use root in options
    Use mime-types for file to content type mapping -- removed send.mime
    deps: debug@3.1.0
    
    Add DEBUG_HIDE_DATE environment variable
    Change timer to per-namespace instead of global
    Change non-TTY date format
    Remove DEBUG_FD environment variable support
    Support 256 namespace colors
    
    
    
    0.19.0 / 2024-09-10
    
    Remove link renderization in html while redirecting
    
    
    
    
    Commits
    
    See full diff in compare view
    
    
    
    Maintainer changes
    This version was pushed to npm by blakeembrey, a new releaser for send since your current version.
    
    
    Updates vite from 3.2.10 to 5.4.8
    
    Release notes
    Sourced from vite's releases.
    
    create-vite@5.4.0
    Please refer to CHANGELOG.md for details.
    create-vite@5.3.0
    Please refer to CHANGELOG.md for details.
    create-vite@5.2.3
    Please refer to CHANGELOG.md for details.
    create-vite@5.2.2
    Please refer to CHANGELOG.md for details.
    create-vite@5.2.1
    Please refer to CHANGELOG.md for details.
    create-vite@5.2.0
    Please refer to CHANGELOG.md for details.
    
    
    
    Changelog
    Sourced from vite's changelog.
    
    5.4.8 (2024-09-25)
    
    fix(css): backport #18113, fix missing source file warning with sass modern api custom importer (#18 (7d47fc1), closes #18183
    fix(css): backport #18128, ensure sass compiler initialized only once (#18184) (8464d97), closes #18128 #18184
    
    5.4.7 (2024-09-20)
    
    fix: treat config file as ESM in Deno (#18158) (b5908a2), closes #18158
    
    5.4.6 (2024-09-16)
    
    fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (#18115) (179b177), closes #18115
    fix: fs raw query (#18112) (6820bb3), closes #18112
    
    5.4.5 (2024-09-13)
    
    fix(preload): backport #18098, throw error preloading module as well (#18099) (faa2405), closes #18098 #18099
    
    5.4.4 (2024-09-11)
    
    fix: backport #17997, ensure req.url matches moduleByEtag URL to avoid incorrect 304 (#18078) (74a79c5), closes #17997 #18078
    fix: backport #18063, allow scanning exports from script module in svelte (#18077) (d90ba40), closes #18063 #18077
    fix(preload): backport #18046, allow ignoring dep errors (#18076) (8760293), closes #18046 #18076
    
    5.4.3 (2024-09-03)
    
    fix: allow getting URL of JS files in publicDir (#17915) (943ece1), closes #17915
    fix: cjs warning respect the logLevel flag (#17993) (dc3c14f), closes #17993
    fix: improve CJS warning trace information (#17926) (5c5f82c), closes #17926
    fix: only remove entry assets handled by Vite core (#17916) (ebfaa7e), closes #17916
    fix: waitForRequestIdle locked (#17982) (ad13760), closes #17982
    fix(css): fix directory index import in sass modern api (#17960) (9b001ba), closes #17960
    fix(css): fix sass file:// reference (#17909) (561b940), closes #17909
    fix(css): fix sass modern source map (#17938) (d428e7e), closes #17938
    fix(deps): bump tsconfck  (#17990) (8c661b2), closes #17990
    fix(html): rewrite assets url in <template> (#17988) (413c86a), closes #17988
    fix(preload): add crossorigin attribute in CSS link tags (#17930) (15871c7), closes #17930
    chore: reduce diffs with v6 branch (#17942) (bf9065a), closes #17942
    chore(deps): update all non-major dependencies (#17945) (cfb621e), closes #17945
    chore(deps): update all non-major dependencies (#17991) (0ca53cf), closes #17991
    
    
    
    ... (truncated)
    
    
    Commits
    
    0474550 release: v5.4.8
    8464d97 fix(css): backport #18128, ensure sass compiler initialized only once (#18184)
    7d47fc1 fix(css): backport #18113, fix missing source file warning with sass modern a...
    a403e73 release: v5.4.7
    b5908a2 fix: treat config file as ESM in Deno (#18158)
    f969176 release: v5.4.6
    179b177 fix: avoid DOM Clobbering gadget in getRelativeUrlFromDocument (#18115)
    6820bb3 fix: fs raw query (#18112)
    37881e7 release: v5.4.5
    faa2405 fix(preload): backport #18098, throw error preloading module as well (#18099)
    Additional commits viewable in compare view
    
    
    
    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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.
    

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Oct 11, 2024
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/npm_and_yarn-8736de9659 branch from 9a77201 to 91b054c Compare October 11, 2024 12:19
Bumps the npm_and_yarn group with 3 updates in the / directory: [cookie](https://github.com/jshttp/cookie), [@astrojs/node](https://github.com/withastro/adapters/tree/HEAD/packages/node) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro).


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

Updates `@astrojs/node` from 3.1.1 to 8.3.4
- [Release notes](https://github.com/withastro/adapters/releases)
- [Changelog](https://github.com/withastro/adapters/blob/main/packages/node/CHANGELOG.md)
- [Commits](https://github.com/withastro/adapters/commits/@astrojs/node@8.3.4/packages/node)

Updates `astro` from 1.9.1 to 4.16.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG-v1.md)
- [Commits](https://github.com/withastro/astro/commits/astro@4.16.0/packages/astro)

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

Updates `rollup` from 2.79.1 to 4.24.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v2.79.1...v4.24.0)

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

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

---
updated-dependencies:
- dependency-name: cookie
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: "@astrojs/node"
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: astro
  dependency-type: direct:production
  dependency-group: npm_and_yarn
- dependency-name: dset
  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: vite
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/npm_and_yarn-8736de9659 branch from 91b054c to a80db8e Compare October 11, 2024 12:19
@MedFrio MedFrio merged commit 141e747 into main Oct 11, 2024
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm_and_yarn-8736de9659 branch October 11, 2024 12:20
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.

1 participant