Skip to content

build(deps): Bump the patch-minor group across 1 directory with 10 updates#744

Closed
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/patch-minor-3af8ab6102
Closed

build(deps): Bump the patch-minor group across 1 directory with 10 updates#744
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/patch-minor-3af8ab6102

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 4, 2026

Bumps the patch-minor group with 10 updates in the / directory:

Package From To
@astrojs/check 0.9.8 0.9.9
@astrojs/db 0.20.1 0.21.1
@astrojs/markdown-remark 7.1.0 7.1.1
@astrojs/react 5.0.3 5.0.4
cssnano 7.1.5 7.1.8
nanoid 5.1.9 5.1.11
@axe-core/playwright 4.11.2 4.11.3
@biomejs/biome 2.4.12 2.4.14
html-validate 10.13.1 10.15.0
knip 6.5.0 6.11.0

Updates @astrojs/check from 0.9.8 to 0.9.9

Release notes

Sourced from @​astrojs/check's releases.

@​astrojs/check@​0.9.9

Patch Changes

Changelog

Sourced from @​astrojs/check's changelog.

0.9.9

Patch Changes

Commits

Updates @astrojs/db from 0.20.1 to 0.21.1

Release notes

Sourced from @​astrojs/db's releases.

@​astrojs/db@​0.21.1

Patch Changes

  • #16534 5cf6c51 Thanks @​matthewp! - Fixes compatibility with Zod 4.4.0 for the server config property and error formatting

@​astrojs/db@​0.21.0

Minor Changes

  • #16289 5d580c0 Thanks @​maxmalkin! - Adds a new getDbError() helper exported from astro:db. It walks the error .cause chain and returns the underlying LibsqlError, or undefined if the error did not originate from libSQL. This is needed because drizzle-orm 0.44+ wraps query errors in a DrizzleQueryError whose .cause is the real LibsqlError.

    Upgrading

    Code that reads .code or .message after catching a database error should migrate from isDbError() to getDbError():

    // Before
    import { isDbError } from 'astro:db';
    try {
      await db.insert(MyTable).values({ ... });
    } catch (e) {
      if (isDbError(e)) {
        console.error(e.code, e.message);
      }
    }
    // After
    import { getDbError } from 'astro:db';
    try {
    await db.insert(MyTable).values({ ... });
    } catch (e) {
    const dbError = getDbError(e);
    if (dbError) {
    console.error(dbError.code, dbError.message);
    }
    }

    isDbError() is still exported and still returns true for wrapped errors, but its return type is now boolean instead of the err is LibsqlError type predicate. Code that relied on the narrowing to access .code or .message directly will now produce a TypeScript error pointing you to getDbError().

Patch Changes

Changelog

Sourced from @​astrojs/db's changelog.

0.21.1

Patch Changes

  • #16534 5cf6c51 Thanks @​matthewp! - Fixes compatibility with Zod 4.4.0 for the server config property and error formatting

0.21.0

Minor Changes

  • #16289 5d580c0 Thanks @​maxmalkin! - Adds a new getDbError() helper exported from astro:db. It walks the error .cause chain and returns the underlying LibsqlError, or undefined if the error did not originate from libSQL. This is needed because drizzle-orm 0.44+ wraps query errors in a DrizzleQueryError whose .cause is the real LibsqlError.

    Upgrading

    Code that reads .code or .message after catching a database error should migrate from isDbError() to getDbError():

    // Before
    import { isDbError } from 'astro:db';
    try {
      await db.insert(MyTable).values({ ... });
    } catch (e) {
      if (isDbError(e)) {
        console.error(e.code, e.message);
      }
    }
    // After
    import { getDbError } from 'astro:db';
    try {
    await db.insert(MyTable).values({ ... });
    } catch (e) {
    const dbError = getDbError(e);
    if (dbError) {
    console.error(dbError.code, dbError.message);
    }
    }

    isDbError() is still exported and still returns true for wrapped errors, but its return type is now boolean instead of the err is LibsqlError type predicate. Code that relied on the narrowing to access .code or .message directly will now produce a TypeScript error pointing you to getDbError().

Patch Changes

Commits

Updates @astrojs/markdown-remark from 7.1.0 to 7.1.1

Release notes

Sourced from @​astrojs/markdown-remark's releases.

@​astrojs/markdown-remark@​7.1.1

Patch Changes

  • #16419 f3485c3 Thanks @​matthewp! - Hardens nested object and package metadata lookups to ignore prototype keys in content handling and project scaffolding

  • Updated dependencies [99464ed, f3485c3]:

    • @​astrojs/internal-helpers@​0.9.0
Changelog

Sourced from @​astrojs/markdown-remark's changelog.

7.1.1

Patch Changes

  • #16419 f3485c3 Thanks @​matthewp! - Hardens nested object and package metadata lookups to ignore prototype keys in content handling and project scaffolding

  • Updated dependencies [99464ed, f3485c3]:

    • @​astrojs/internal-helpers@​0.9.0
Commits

Updates @astrojs/react from 5.0.3 to 5.0.4

Release notes

Sourced from @​astrojs/react's releases.

@​astrojs/react@​5.0.4

Patch Changes

Changelog

Sourced from @​astrojs/react's changelog.

5.0.4

Patch Changes

Commits

Updates cssnano from 7.1.5 to 7.1.8

Release notes

Sourced from cssnano's releases.

v7.1.8

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/[email protected]@7.1.8

v.7.1.7

This release is idnetical to the previous one, but is being published to ensure that the latest versions of postcss-normalize-repeat-style and postcss-normalize-positions are uploaded to the npm registry.

v7.1.6

New feature

Bug fixes

Full Changelog: https://github.com/cssnano/cssnano/compare/[email protected]@7.1.6

Commits

Updates nanoid from 5.1.9 to 5.1.11

Release notes

Sourced from nanoid's releases.

5.1.11

  • Fixed breaking Nano ID by requesting big ID.

5.1.10

Changelog

Sourced from nanoid's changelog.

5.1.11

  • Fixed breaking Nano ID by requesting big ID.

5.1.10

Commits

Updates @axe-core/playwright from 4.11.2 to 4.11.3

Changelog

Sourced from @​axe-core/playwright's changelog.

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

Commits

Updates @biomejs/biome from 2.4.12 to 2.4.14

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.4.14

2.4.14

Patch Changes

  • #9393 491b171 Thanks @​dyc3! - Added the nursery rule useTestHooksOnTop in the test domain. The rule flags lifecycle hooks (beforeEach, beforeAll, afterEach, afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.

  • #10157 eefc5ab Thanks @​dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as <br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.

  • #10054 0e9f569 Thanks @​minseong0324! - noMisleadingReturnType no longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to : object.

    A function annotated : object returning an object literal:

    function f(): object {
      return { retry: true };
    }
  • #10116 53269eb Thanks @​jiwon79! - Fixed #6201: noUselessEscapeInRegex no longer flags an escaped backslash followed by - as a useless escape. Patterns like /[\\-]/ are now considered valid because the second \ is the escaped backslash, not an unnecessary escape of the trailing dash.

  • #10092 33d8543 Thanks @​Conaclos! - Fixed #9097: organizeImports no longer adds a blank line between a never-matched group and a matched group.

    Given the following organizeImports options:

    {
      "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"]
    }

    The following code...

    // Comment
    import "package";
    import "./file.js";

    ...was organized as:

    +
      // Comment
      import "package";
    +
      import "./file.js";

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.4.14

Patch Changes

  • #9393 491b171 Thanks @​dyc3! - Added the nursery rule useTestHooksOnTop in the test domain. The rule flags lifecycle hooks (beforeEach, beforeAll, afterEach, afterAll) that appear after test cases in the same block, enforcing that hooks are defined before any test case.

  • #10157 eefc5ab Thanks @​dyc3! - Fixed #7882: The HTML parser will now emit better diagnostics when it encounters a void element with a closing tag, such as <br></br>. Previously, the parser would emit multiple diagnostics with conflicting advice. Now it emits a single diagnostic that clearly states that void elements should not have closing tags.

  • #10054 0e9f569 Thanks @​minseong0324! - noMisleadingReturnType no longer misses widening from concrete object types, class instances, object literals, tuples, functions, and regular expressions to : object.

    A function annotated : object returning an object literal:

    function f(): object {
      return { retry: true };
    }
  • #10116 53269eb Thanks @​jiwon79! - Fixed #6201: noUselessEscapeInRegex no longer flags an escaped backslash followed by - as a useless escape. Patterns like /[\\-]/ are now considered valid because the second \ is the escaped backslash, not an unnecessary escape of the trailing dash.

  • #10092 33d8543 Thanks @​Conaclos! - Fixed #9097: organizeImports no longer adds a blank line between a never-matched group and a matched group.

    Given the following organizeImports options:

    {
      "groups": [":NODE:", ":BLANK_LINE:", ":PACKAGE:", ":BLANK_LINE:", ":PATH:"]
    }

    The following code...

    // Comment
    import "package";
    import "./file.js";

    ...was organized as:

    +
      // Comment
      import "package";
    +
      import "./file.js";

    A blank line was added even though the group ':NODE:' doesn't match any imports here. :BLANK_LINE: between never-matched groups and matched groups are now ignored.

... (truncated)

Commits

Updates html-validate from 10.13.1 to 10.15.0

Release notes

Sourced from html-validate's releases.

v10.15.0

10.15.0 (2026-05-04)

Features

  • cli: add --performance to help debug performance issues (1451915)

Performance Improvements

  • optimize loading global attributes onto element metadata (11228b8)

v10.14.0

10.14.0 (2026-05-02)

Features

  • html5: add support for more global attributes (db89087)

Bug Fixes

  • parser: improve handling of implicit tag closures (9070a61)

Performance Improvements

  • improve performance by caching child elements (cc938fb)
Changelog

Sourced from html-validate's changelog.

10.15.0 (2026-05-04)

Features

  • cli: add --performance to help debug performance issues (1451915)

Performance Improvements

  • optimize loading global attributes onto element metadata (11228b8)

10.14.0 (2026-05-02)

Features

  • html5: add support for more global attributes (db89087)

Bug Fixes

  • parser: improve handling of implicit tag closures (9070a61)

Performance Improvements

  • improve performance by caching child elements (cc938fb)
Commits
  • 99ffc38 chore(release): 10.15.0
  • b5d4bba Merge branch 'docs/discord-link' into 'master'
  • 2ec6cb7 docs: add link to discord
  • 9a6a846 Merge branch 'perf/global-attr-loading' into 'master'
  • 11228b8 perf: optimize loading global attributes onto element metadata
  • 00e9585 Merge branch 'feature/performance' into 'master'
  • 1451915 feat(cli): add --performance to help debug performance issues
  • bc3002b chore(deps): lock file maintenance
  • 317d3fa Merge branch 'refactor/condition-union' into 'master'
  • 8d0d516 refactor: rename current selector implementation ComplexSelector
  • Additional commits viewable in compare view

Updates knip from 6.5.0 to 6.11.0

Release notes

Sourced from knip's releases.

Release 6.11.0

  • Ignore & remove uninteresting lines in snapshots (767ebaf9b20d02f271d2a083404b60cba63119d7)
  • Flag stale @internal tags in production mode (resolve #1658) (dd1caeda80784d6070b028c781a3502b33e9765a)
  • Add compiler-extensions in tsc-files mode (resolve #1708) (ea867ad4bb9195f556ff58dae010d0d77c57bb25)

Release 6.10.0

  • Ecosystem patches → snapshots (1803f9f94d42ebe88730465c002098de54c6650a)
  • Fix unlisted pkg when only @​types/pkg listed (resolve #1707) (62082b69b382ea56d86e718da623ccadb9281a14)
  • Don't report imports matching engines.X as unlisted (23582e0f4da7a98cfe50c065b63d38a75870911e)
  • Treat imports in .d.ts files as type-only (84caac58d99f39fde56c664f42bad2c000d8943e)
  • Treat tsconfig compilerOptions.types as type-only (ce18854b0a008f1060e30c660eee820eba1568e5)
  • Resolve hoisted deps from monorepo root in single-package mode (resolve #1711) (23b756fb0becacaa19fbd71a0d9a0264f8647e88)

Release 6.9.0

  • Expose types for JSON reporter (961b734f398b451bc26708f8d3bfa72a71983dcc)

Release 6.8.0

  • feat: add WXT plugin (#1703) (9167557755a0aef81947aaedfa4745805ffaa571) - thanks @​sebastianbreguel!
  • Add support for pnpm@11 new commands (#1706) (c937697a68caaf1ac224627537993b32d37cc91b) - thanks @​PatrykWalach!
  • Fix case of spread export → other exports used (resolve #1705) (0f94d2d2b024d268df2395677a0ca0f6fd95503d)
  • Add more pnpm commands + tests (f2819b3474b6d6ff7c24197be54072d2291d15b6)
  • Bump oxc-parser (5c21d278814436c4c084d0ee609360eddaedd676)

Release 6.7.0

  • Fix markdown reporter column width (resolve #1700) (4713108de98bcfe76eb606036b9f968abe3e89a0)
  • Handle Vitest agent and minimal reporters (#1701) (a71ead11b99aaa67f31eed7b35628907b2dddd06) - thanks @​dskwrite!
  • Add e2e tests w/ tsgo defs + lib consumption (98113e61d913e47631748b58c25d1042c8dd387e)
  • Fix pkg name inconsistencies (544c3e68d72dd754b20f8e0b0bf8ed107c05d677)
  • Add export {} to maintain module shape (27d8a0230c10f2827ba1e1a8b2c65020554f61f8)
  • Strip leading UTF-8 BOM before parsing package.json (47e4029c39ff95043cd495681e4c7558970b0ed9)
  • Skip workspace with invalid JSON manifest (bfb48670966387a3cd26005b9fb9d8769b2a1213)
  • Preserve out-of-bound writes to stdout/err (95faad8d6219ba456a3700df697273eb154c1dd9)
  • Consistent prefix in logError/logWarning (2c6d8a049d1c20d9427425b4abae3b76ac7a5720)
  • Don't exit on config file load error (0914bd3832b1851e4d34137577c0d08efaf8aef6)
  • Fix tsgo resolution in e2e tests (a68950131e33214ef2a4f13d11fab1a78c16bad6)

Release 6.6.3

  • Use venz chart svg directly from CDN (ba7e9073d1770e4a21ec18435bcb61f394db0d1c)
  • Bump that plugin counter (abae75bbd3030e006fe67d3f63641a31a65e671c)
  • Fix plugin title (f2b8fcfc94bb78fb70dfe2be3f48ef8f254066f7)
  • Work Table util class: fix bugs, tighten API, water-fill widths (2eb4045e0f34c2638875504b9b64e881e9a74db5)
  • Questionable.. (970a0dbdfc7b59df2fd0a3064a4bd6be4e5a59bc)
  • Fmt (14538ec1fe94cdf3c45798515160609f3ffbec9d)
  • Ensure output is flushed on exit (#1699) (9533365115d4704e9b057b7ba8d5f43fd553d1a1) - thanks @​joshkel!
  • Use currentColor to support light/dark themes (7ea055aa68b86ccc6cb302a3092c2da9e56cdde6)
  • Tighten type-chain alignment + gate via ignoreExportsUsedInFile (resolve #1698) (0910b33fc6c07867a751af2e26989a61c8a6c548)
  • Eating our own dog food ↻ (d5aa1f6b007a2dfef1a8326000dc1802510d64ab)

Release 6.6.2

  • Don't track typeof value refs at top of exported type alias (resolve #1697) (1a9904832878f5e8e4b633bdb08fb327baa17ed6)

... (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 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

…dates

Bumps the patch-minor group with 10 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/check](https://github.com/withastro/astro/tree/HEAD/packages/language-tools/astro-check) | `0.9.8` | `0.9.9` |
| [@astrojs/db](https://github.com/withastro/astro/tree/HEAD/packages/db) | `0.20.1` | `0.21.1` |
| [@astrojs/markdown-remark](https://github.com/withastro/astro/tree/HEAD/packages/markdown/remark) | `7.1.0` | `7.1.1` |
| [@astrojs/react](https://github.com/withastro/astro/tree/HEAD/packages/integrations/react) | `5.0.3` | `5.0.4` |
| [cssnano](https://github.com/cssnano/cssnano) | `7.1.5` | `7.1.8` |
| [nanoid](https://github.com/ai/nanoid) | `5.1.9` | `5.1.11` |
| [@axe-core/playwright](https://github.com/dequelabs/axe-core-npm) | `4.11.2` | `4.11.3` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.12` | `2.4.14` |
| [html-validate](https://gitlab.com/html-validate/html-validate) | `10.13.1` | `10.15.0` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `6.5.0` | `6.11.0` |



Updates `@astrojs/check` from 0.9.8 to 0.9.9
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/language-tools/astro-check/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/language-tools/astro-check)

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

Updates `@astrojs/markdown-remark` from 7.1.0 to 7.1.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/markdown/remark/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/markdown/remark)

Updates `@astrojs/react` from 5.0.3 to 5.0.4
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/react/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/[email protected]/packages/integrations/react)

Updates `cssnano` from 7.1.5 to 7.1.8
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/[email protected]@7.1.8)

Updates `nanoid` from 5.1.9 to 5.1.11
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/main/CHANGELOG.md)
- [Commits](ai/nanoid@5.1.9...5.1.11)

Updates `@axe-core/playwright` from 4.11.2 to 4.11.3
- [Release notes](https://github.com/dequelabs/axe-core-npm/releases)
- [Changelog](https://github.com/dequelabs/axe-core-npm/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/dequelabs/axe-core-npm/commits)

Updates `@biomejs/biome` from 2.4.12 to 2.4.14
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/[email protected]/packages/@biomejs/biome)

Updates `html-validate` from 10.13.1 to 10.15.0
- [Release notes](https://gitlab.com/html-validate/html-validate/tags)
- [Changelog](https://gitlab.com/html-validate/html-validate/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/html-validate/html-validate/compare/v10.13.1...v10.15.0)

Updates `knip` from 6.5.0 to 6.11.0
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Commits](https://github.com/webpro-nl/knip/commits/[email protected]/packages/knip)

---
updated-dependencies:
- dependency-name: "@astrojs/check"
  dependency-version: 0.9.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@astrojs/db"
  dependency-version: 0.21.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: "@astrojs/markdown-remark"
  dependency-version: 7.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@astrojs/react"
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: cssnano
  dependency-version: 7.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: nanoid
  dependency-version: 5.1.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@axe-core/playwright"
  dependency-version: 4.11.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: "@biomejs/biome"
  dependency-version: 2.4.14
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-minor
- dependency-name: html-validate
  dependency-version: 10.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
- dependency-name: knip
  dependency-version: 6.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-minor
...

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 May 4, 2026
@netlify
Copy link
Copy Markdown

netlify Bot commented May 4, 2026

Deploy Preview for ky-fyi failed.

Name Link
🔨 Latest commit 669709b
🔍 Latest deploy log https://app.netlify.com/projects/ky-fyi/deploys/69fb6eb53df3120008fbeb84

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 11, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this May 11, 2026
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/patch-minor-3af8ab6102 branch May 11, 2026 11:26
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.

1 participant