Bump the dev-patch-updates group across 1 directory with 4 updates #548

Closed
opened 2026-04-05 17:18:18 +02:00 by MrUnknownDE · 0 comments
Owner

Originally created by @dependabot[bot] on 12/6/2025

Bumps the dev-patch-updates group with 4 updates in the / directory: @types/nodemailer, @types/yargs, drizzle-kit and esbuild.

Updates @types/nodemailer from 7.0.3 to 7.0.4

Commits

Updates @types/yargs from 17.0.34 to 17.0.35

Commits

Updates drizzle-kit from 0.31.6 to 0.31.8

Release notes

Sourced from drizzle-kit's releases.

drizzle-kit@0.31.8

Bug fixes

  • Fixed algorythm => algorithm typo.
  • Fixed external dependencies in build configuration.
Commits
  • c445637 Merge pull request #5095 from drizzle-team/main-workflows
  • e7b3aaa Merge branch 'main' into main-workflows
  • 0d885a5 refactor: Update condition for run-feature job to improve clarity and functio...
  • 45a1ffb Merge pull request #5087 from drizzle-team/main-workflows
  • 6357645 chore: Comment out NEON_HTTP_CONNECTION_STRING requirement in release workflows
  • 53dec98 refactor: Simplify release router workflow by removing unnecessary switch job...
  • ce88a18 Merge remote-tracking branch 'origin/ext-deps-kit' into main-workflows
  • 5c8a4c5 +
  • 73e2ea4 feat: Add release router workflow to manage feature and latest releases
  • 378b043 Merge pull request #5002 from drizzle-team/main-next-pack
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for drizzle-kit since your current version.


Updates esbuild from 0.27.0 to 0.27.1

Release notes

Sourced from esbuild's releases.

v0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    

    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}

    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}

  • Inline IIFEs containing a single expression (#4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    

    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();

    // New output (with --minify)
    const foo=()=>{console.log(x())};

  • The minifier now strips empty finally clauses (#4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.27.1

  • Fix bundler bug with var nested inside if (#4348)

    This release fixes a bug with the bundler that happens when importing an ES module using require (which causes it to be wrapped) and there's a top-level var inside an if statement without being wrapped in a { ... } block (and a few other conditions). The bundling transform needed to hoist these var declarations outside of the lazy ES module wrapper for correctness. See the issue for details.

  • Fix minifier bug with for inside try inside label (#4351)

    This fixes an old regression from version v0.21.4. Some code was introduced to move the label inside the try statement to address a problem with transforming labeled for await loops to avoid the await (the transformation involves converting the for await loop into a for loop and wrapping it in a try statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to for loops that esbuild itself generates internally as part of the for await transform. Here is an example of some affected code:

    // Original code
    d: {
      e: {
        try {
          while (1) { break d }
        } catch { break e; }
      }
    }
    

    // Old output (with --minify)
    a:try{e:for(;;)break a}catch{break e}

    // New output (with --minify)
    a:e:try{for(;;)break a}catch{break e}

  • Inline IIFEs containing a single expression (#4354)

    Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single return statement. Now it should also work if the body contains a single expression statement instead:

    // Original code
    const foo = () => {
      const cb = () => {
        console.log(x())
      }
      return cb()
    }
    

    // Old output (with --minify)
    const foo=()=>(()=>{console.log(x())})();

    // New output (with --minify)
    const foo=()=>{console.log(x())};

  • The minifier now strips empty finally clauses (#4353)

    This improvement means that finally clauses containing dead code can potentially cause the associated try statement to be removed from the output entirely in minified builds:

... (truncated)

Commits

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
*Originally created by @dependabot[bot] on 12/6/2025* Bumps the dev-patch-updates group with 4 updates in the / directory: [@types/nodemailer](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/nodemailer), [@types/yargs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/yargs), [drizzle-kit](https://github.com/drizzle-team/drizzle-orm) and [esbuild](https://github.com/evanw/esbuild). Updates `@types/nodemailer` from 7.0.3 to 7.0.4 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/nodemailer">compare view</a></li> </ul> </details> <br /> Updates `@types/yargs` from 17.0.34 to 17.0.35 <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/yargs">compare view</a></li> </ul> </details> <br /> Updates `drizzle-kit` from 0.31.6 to 0.31.8 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/drizzle-team/drizzle-orm/releases">drizzle-kit's releases</a>.</em></p> <blockquote> <h2>drizzle-kit@0.31.8</h2> <h3>Bug fixes</h3> <ul> <li>Fixed <code>algorythm</code> =&gt; <code>algorithm</code> typo.</li> <li>Fixed external dependencies in build configuration.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/c445637df39366bcf47b12601896ce851771c1c2"><code>c445637</code></a> Merge pull request <a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/5095">#5095</a> from drizzle-team/main-workflows</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/e7b3aaa26456b88cd23a7843ebc95b3bddde1ba4"><code>e7b3aaa</code></a> Merge branch 'main' into main-workflows</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/0d885a54ddafd8717f8610cf3d2899f3eef61e65"><code>0d885a5</code></a> refactor: Update condition for run-feature job to improve clarity and functio...</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/45a1ffbcbfdd96772d0aba7d9e43744db2dce471"><code>45a1ffb</code></a> Merge pull request <a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/5087">#5087</a> from drizzle-team/main-workflows</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/6357645bd33b1f444e1d081769dd4b71c3de31f8"><code>6357645</code></a> chore: Comment out NEON_HTTP_CONNECTION_STRING requirement in release workflows</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/53dec98a936f549d0cc2e668f19db3a2df842f51"><code>53dec98</code></a> refactor: Simplify release router workflow by removing unnecessary switch job...</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/ce88a181e03d8b9b3fd0b62c93cc1faa05b0e000"><code>ce88a18</code></a> Merge remote-tracking branch 'origin/ext-deps-kit' into main-workflows</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/5c8a4c508b36813599e6de891166a6888720a307"><code>5c8a4c5</code></a> +</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/73e2ea486f6781bc7bfd2c287590d9c96e319b51"><code>73e2ea4</code></a> feat: Add release router workflow to manage feature and latest releases</li> <li><a href="https://github.com/drizzle-team/drizzle-orm/commit/378b0432d549441fa61de200589a790f1171b6fe"><code>378b043</code></a> Merge pull request <a href="https://redirect.github.com/drizzle-team/drizzle-orm/issues/5002">#5002</a> from drizzle-team/main-next-pack</li> <li>Additional commits viewable in <a href="https://github.com/drizzle-team/drizzle-orm/compare/drizzle-kit@0.31.6...drizzle-kit@0.31.8">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for drizzle-kit since your current version.</p> </details> <br /> Updates `esbuild` from 0.27.0 to 0.27.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/releases">esbuild's releases</a>.</em></p> <blockquote> <h2>v0.27.1</h2> <ul> <li> <p>Fix bundler bug with <code>var</code> nested inside <code>if</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4348">#4348</a>)</p> <p>This release fixes a bug with the bundler that happens when importing an ES module using <code>require</code> (which causes it to be wrapped) and there's a top-level <code>var</code> inside an <code>if</code> statement without being wrapped in a <code>{ ... }</code> block (and a few other conditions). The bundling transform needed to hoist these <code>var</code> declarations outside of the lazy ES module wrapper for correctness. See the issue for details.</p> </li> <li> <p>Fix minifier bug with <code>for</code> inside <code>try</code> inside label (<a href="https://redirect.github.com/evanw/esbuild/issues/4351">#4351</a>)</p> <p>This fixes an old regression from <a href="https://github.com/evanw/esbuild/releases/v0.21.4">version v0.21.4</a>. Some code was introduced to move the label inside the <code>try</code> statement to address a problem with transforming labeled <code>for await</code> loops to avoid the <code>await</code> (the transformation involves converting the <code>for await</code> loop into a <code>for</code> loop and wrapping it in a <code>try</code> statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to <code>for</code> loops that esbuild itself generates internally as part of the <code>for await</code> transform. Here is an example of some affected code:</p> <pre lang="js"><code>// Original code d: { e: { try { while (1) { break d } } catch { break e; } } } <p>// Old output (with --minify)<br /> a:try{e:for(;;)break a}catch{break e}</p> <p>// New output (with --minify)<br /> a:e:try{for(;;)break a}catch{break e}<br /> </code></pre></p> </li> <li> <p>Inline IIFEs containing a single expression (<a href="https://redirect.github.com/evanw/esbuild/issues/4354">#4354</a>)</p> <p>Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single <code>return</code> statement. Now it should also work if the body contains a single expression statement instead:</p> <pre lang="js"><code>// Original code const foo = () =&gt; { const cb = () =&gt; { console.log(x()) } return cb() } <p>// Old output (with --minify)<br /> const foo=()=&gt;(()=&gt;{console.log(x())})();</p> <p>// New output (with --minify)<br /> const foo=()=&gt;{console.log(x())};<br /> </code></pre></p> </li> <li> <p>The minifier now strips empty <code>finally</code> clauses (<a href="https://redirect.github.com/evanw/esbuild/issues/4353">#4353</a>)</p> <p>This improvement means that <code>finally</code> clauses containing dead code can potentially cause the associated <code>try</code> statement to be removed from the output entirely in minified builds:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's changelog</a>.</em></p> <blockquote> <h2>0.27.1</h2> <ul> <li> <p>Fix bundler bug with <code>var</code> nested inside <code>if</code> (<a href="https://redirect.github.com/evanw/esbuild/issues/4348">#4348</a>)</p> <p>This release fixes a bug with the bundler that happens when importing an ES module using <code>require</code> (which causes it to be wrapped) and there's a top-level <code>var</code> inside an <code>if</code> statement without being wrapped in a <code>{ ... }</code> block (and a few other conditions). The bundling transform needed to hoist these <code>var</code> declarations outside of the lazy ES module wrapper for correctness. See the issue for details.</p> </li> <li> <p>Fix minifier bug with <code>for</code> inside <code>try</code> inside label (<a href="https://redirect.github.com/evanw/esbuild/issues/4351">#4351</a>)</p> <p>This fixes an old regression from <a href="https://github.com/evanw/esbuild/releases/v0.21.4">version v0.21.4</a>. Some code was introduced to move the label inside the <code>try</code> statement to address a problem with transforming labeled <code>for await</code> loops to avoid the <code>await</code> (the transformation involves converting the <code>for await</code> loop into a <code>for</code> loop and wrapping it in a <code>try</code> statement). However, it introduces problems for cross-compiled JVM code that uses all three of these features heavily. This release restricts this transform to only apply to <code>for</code> loops that esbuild itself generates internally as part of the <code>for await</code> transform. Here is an example of some affected code:</p> <pre lang="js"><code>// Original code d: { e: { try { while (1) { break d } } catch { break e; } } } <p>// Old output (with --minify)<br /> a:try{e:for(;;)break a}catch{break e}</p> <p>// New output (with --minify)<br /> a:e:try{for(;;)break a}catch{break e}<br /> </code></pre></p> </li> <li> <p>Inline IIFEs containing a single expression (<a href="https://redirect.github.com/evanw/esbuild/issues/4354">#4354</a>)</p> <p>Previously inlining of IIFEs (immediately-invoked function expressions) only worked if the body contained a single <code>return</code> statement. Now it should also work if the body contains a single expression statement instead:</p> <pre lang="js"><code>// Original code const foo = () =&gt; { const cb = () =&gt; { console.log(x()) } return cb() } <p>// Old output (with --minify)<br /> const foo=()=&gt;(()=&gt;{console.log(x())})();</p> <p>// New output (with --minify)<br /> const foo=()=&gt;{console.log(x())};<br /> </code></pre></p> </li> <li> <p>The minifier now strips empty <code>finally</code> clauses (<a href="https://redirect.github.com/evanw/esbuild/issues/4353">#4353</a>)</p> <p>This improvement means that <code>finally</code> clauses containing dead code can potentially cause the associated <code>try</code> statement to be removed from the output entirely in minified builds:</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/evanw/esbuild/commit/5e0e56d6d62076dfeff47f5227ae5300f91d2b16"><code>5e0e56d</code></a> publish 0.27.1 to npm</li> <li><a href="https://github.com/evanw/esbuild/commit/5a89732d6bc7d251b604b9d82a3044de65078230"><code>5a89732</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4354">#4354</a>: improve IIFE inlining for expressions</li> <li><a href="https://github.com/evanw/esbuild/commit/b940218ceaadc819d11e8d84dfdf07ac84e27e57"><code>b940218</code></a> minify: move unused expr simplification later</li> <li><a href="https://github.com/evanw/esbuild/commit/c46d498c20ed336a3b5b69040b1250a861b2fa89"><code>c46d498</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4353">#4353</a>: remove empty <code>try</code>/<code>finally</code> clauses</li> <li><a href="https://github.com/evanw/esbuild/commit/7a72735c0d5efccd99ac4920cb9501e928b28ec9"><code>7a72735</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4348">#4348</a>: bundler bug with <code>var</code> inside <code>if</code></li> <li><a href="https://github.com/evanw/esbuild/commit/4e4e177bf252829472fc827aa421554cf436b40a"><code>4e4e177</code></a> fix <a href="https://redirect.github.com/evanw/esbuild/issues/4351">#4351</a>: label + <code>try</code> + <code>for</code> minifier bug</li> <li><a href="https://github.com/evanw/esbuild/commit/d6427c91edab734da686c4c5d29ed580b08b9fd5"><code>d6427c9</code></a> fix: deno release url wrong comment (<a href="https://redirect.github.com/evanw/esbuild/issues/4326">#4326</a>)</li> <li><a href="https://github.com/evanw/esbuild/commit/48e3e19bbf5c72e7b15afbb660fb1e1acaf3ce6f"><code>48e3e19</code></a> calling <code>Symbol.for</code> with a primitive never throws</li> <li><a href="https://github.com/evanw/esbuild/commit/4ff88d01062514c21ee58fdbee6ecfc4158689c0"><code>4ff88d0</code></a> update <code>decorator-tests.js</code> snapshot</li> <li><a href="https://github.com/evanw/esbuild/commit/1877e605bf1ac3e5881e6ffba5dfe94d5259b95c"><code>1877e60</code></a> calling <code>Symbol</code> with a primitive will never throw</li> <li>See full diff in <a href="https://github.com/evanw/esbuild/compare/v0.27.0...v0.27.1">compare view</a></li> </ul> </details> <br /> 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 </details>
MrUnknownDE added the dependenciesjavascriptdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesdependenciesjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascriptjavascript labels 2026-04-05 17:18:32 +02:00
Sign in to join this conversation.
No Label dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies dependencies javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript javascript
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github/pangolin#548