Skip to content

build(deps-dev): bump the minor group across 1 directory with 10 updates - #42

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-7a2a035f9a
Open

build(deps-dev): bump the minor group across 1 directory with 10 updates#42
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-7a2a035f9a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown

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

Package From To
@marko/compiler 5.40.0 5.42.3
@types/node 26.1.0 26.4.0
@vitest/coverage-istanbul 4.1.9 4.1.11
eslint 10.6.0 10.9.1
globals 17.7.0 17.11.0
lint-staged 17.0.8 17.4.1
prettier 3.9.4 3.9.6
rolldown 1.1.4 1.2.6
typescript-eslint 8.62.1 8.68.0
vitest 4.1.9 4.1.11

Updates @marko/compiler from 5.40.0 to 5.42.3

Release notes

Sourced from @​marko/compiler's releases.

@​marko/compiler@​5.42.3

Patch Changes

  • #4035 b8c9b0d Thanks @​DylanPiercey! - Report a child template's compile error instead of marking the parent tag unresolved, and name an imported tag in the missing-tag error rather than printing <undefined>.

  • #4045 ea72f0e Thanks @​DylanPiercey! - Stop folding unusual characters in template ids to /, which let distinct paths collide (foo+bar.marko and foo/bar.marko produced one id, silently cross-wiring the two templates in the resume registry). Only characters unsafe in a string/URL/filesystem context are percent-encoded now; benign punctuation such as +, [, ( and @ passes through literally. Also documents the getTemplateId config override.

  • #4042 90e206e Thanks @​DylanPiercey! - Reject an unrecognized output compiler option with an error naming the accepted values (html, dom, source, migrate, hydrate) instead of silently compiling to the DOM runtime. Also stop caching a taglib whose JSON failed to parse, so fixing a broken marko-tag.json takes effect without restarting, and include the JSON parse error in the message.

@​marko/compiler@​5.42.2

Patch Changes

@​marko/compiler@​5.42.1

Patch Changes

  • #3932 56f226d Thanks @​DylanPiercey! - Invalidate a cached template when a child template it analyzed changes, including transitively.

  • #3943 672c5e1 Thanks @​DylanPiercey! - Append the agent fix-guide pointer to the first recovered diagnostic when compiling with errorRecovery, which previously only reached thrown errors.

@​marko/compiler@​5.42.0

Minor Changes

  • #3925 011ce07 Thanks @​DylanPiercey! - Support an async keyword before shorthand methods, eg <button async onClick() { await save() }> and the default attribute form <my-tag async (event) { ... }>. A shorthand method can no longer be named async.

Patch Changes

  • #3877 4adcb25 Thanks @​DylanPiercey! - Bound a failed attribute value parse to the attribute value instead of the rest of the file.

  • #3878 e03de1a Thanks @​DylanPiercey! - Keep preserving whitespace after a nested preserve-whitespace tag (eg a <textarea> inside <pre>) closes.

  • #3913 f0650fe Thanks @​DylanPiercey! - Stop the source printer reindenting the body of a whitespace-preserving tag (pre, script, style, textarea), which rewrote user content on every output: "source" / markoc --migrate pass.

  • #3881 ab2d7c9 Thanks @​DylanPiercey! - Keep the @-half's attribute props (type, required, default-value, autocomplete) when an "@x <x>" taglib shorthand also declares a nested tag, and accept the dashed target-property spelling there.

  • #3879 710d920 Thanks @​DylanPiercey! - Detect "template within a tags directory" from the taglib finder's discovered directories, so a package itself named tags can still contain Class API templates.

  • #3876 3c2b628 Thanks @​DylanPiercey! - Fix a trimmed text node's end position overshooting by the amount of trimmed leading whitespace.

@​marko/compiler@​5.41.18

Patch Changes

  • #3784 4bc0479 Thanks @​DylanPiercey! - Honor a MARKO_AGENT_FIX_GUIDE environment variable that force-enables (1) or suppresses (0) the coding-agent fix-guide pointer regardless of detected agent markers.

  • #3843 877f821 Thanks @​DylanPiercey! - A custom tag invoked with arguments and a body (<my-tag("a")>hi</my-tag>) is now a compile error instead of silently dropping the body; dynamic tags still allow arguments with fallback content.

  • #3846 1a881a5 Thanks @​DylanPiercey! - Prototype-less objects in template metadata now clone correctly between compile phases instead of crashing the compile.

... (truncated)

Changelog

Sourced from @​marko/compiler's changelog.

5.42.3

Patch Changes

  • #4035 b8c9b0d Thanks @​DylanPiercey! - Report a child template's compile error instead of marking the parent tag unresolved, and name an imported tag in the missing-tag error rather than printing <undefined>.

  • #4045 ea72f0e Thanks @​DylanPiercey! - Stop folding unusual characters in template ids to /, which let distinct paths collide (foo+bar.marko and foo/bar.marko produced one id, silently cross-wiring the two templates in the resume registry). Only characters unsafe in a string/URL/filesystem context are percent-encoded now; benign punctuation such as +, [, ( and @ passes through literally. Also documents the getTemplateId config override.

  • #4042 90e206e Thanks @​DylanPiercey! - Reject an unrecognized output compiler option with an error naming the accepted values (html, dom, source, migrate, hydrate) instead of silently compiling to the DOM runtime. Also stop caching a taglib whose JSON failed to parse, so fixing a broken marko-tag.json takes effect without restarting, and include the JSON parse error in the message.

5.42.2

Patch Changes

5.42.1

Patch Changes

  • #3932 56f226d Thanks @​DylanPiercey! - Invalidate a cached template when a child template it analyzed changes, including transitively.

  • #3943 672c5e1 Thanks @​DylanPiercey! - Append the agent fix-guide pointer to the first recovered diagnostic when compiling with errorRecovery, which previously only reached thrown errors.

5.42.0

Minor Changes

  • #3925 011ce07 Thanks @​DylanPiercey! - Support an async keyword before shorthand methods, eg <button async onClick() { await save() }> and the default attribute form <my-tag async (event) { ... }>. A shorthand method can no longer be named async.

Patch Changes

  • #3877 4adcb25 Thanks @​DylanPiercey! - Bound a failed attribute value parse to the attribute value instead of the rest of the file.

  • #3878 e03de1a Thanks @​DylanPiercey! - Keep preserving whitespace after a nested preserve-whitespace tag (eg a <textarea> inside <pre>) closes.

  • #3913 f0650fe Thanks @​DylanPiercey! - Stop the source printer reindenting the body of a whitespace-preserving tag (pre, script, style, textarea), which rewrote user content on every output: "source" / markoc --migrate pass.

  • #3881 ab2d7c9 Thanks @​DylanPiercey! - Keep the @-half's attribute props (type, required, default-value, autocomplete) when an "@x <x>" taglib shorthand also declares a nested tag, and accept the dashed target-property spelling there.

  • #3879 710d920 Thanks @​DylanPiercey! - Detect "template within a tags directory" from the taglib finder's discovered directories, so a package itself named tags can still contain Class API templates.

  • #3876 3c2b628 Thanks @​DylanPiercey! - Fix a trimmed text node's end position overshooting by the amount of trimmed leading whitespace.

5.41.18

Patch Changes

... (truncated)

Commits
  • 23ba707 [ci] release
  • ea72f0e fix(compiler): percent-encode unsafe characters in template ids
  • 90e206e fix(compiler): validate output option and unpoison taglib cache on parse error
  • b8c9b0d fix(compiler): report a child template's compile error on the parent build
  • 6c2379c [ci] release
  • 15b32e4 chore(compiler): make the bundled entities a devDependency
  • 242877d fix(runtime-tags): decode character references in a \<textarea> body
  • 97ca869 agent-feedback: note that the non-throwing diagnostic channels are metadata only
  • 85de52e [ci] release
  • c8c83b7 docs(compiler): record that the fix-guide pointer stays whole-file
  • Additional commits viewable in compare view

Updates @types/node from 26.1.0 to 26.4.0

Commits

Updates @vitest/coverage-istanbul from 4.1.9 to 4.1.11

Release notes

Sourced from @​vitest/coverage-istanbul's releases.

v4.1.11

   🐞 Bug Fixes

    View changes on GitHub

v4.1.10

   🐞 Bug Fixes

    View changes on GitHub
Commits

Updates eslint from 10.6.0 to 10.9.1

Release notes

Sourced from eslint's releases.

v10.9.1

Bug Fixes

  • 1e641c9 fix: no-loss-of-precision false positive with trailing decimal point (#21251) (Aleksandr Shoronov)

Documentation

  • ad74a8d docs: add deprecation steps for EOL package versions (#21248) (Francesco Trotta)

Chores

v10.9.0

Features

  • 08de88e feat: handle underflow in no-loss-of-precision (#21218) (Rithish S)
  • 55db479 feat: add checkConditionalExpressions to no-unmodified-loop-condition (#21175) (sethamus)

Bug Fixes

  • 2ba3025 fix: prevent unsafe no-var autofix with hoisted functions (#21213) (sethamus)
  • 8e69622 fix: Prevent no-var autofix when var is shadowed by catch parameter (#21204) (Yang Hyeonjong)
  • 684b579 fix: prefer-template invalid autofix creates a tagged template call (#21207) (김채영)

Documentation

  • 9ef407a docs: use eslint.config.* wherever config file names are listed (#21216) (Marry (Subin Yang))
  • 87f66f4 docs: Update README (GitHub Actions Bot)
  • 585ef37 docs: update architecture documentation (#21112) (Francesco Trotta)
  • f3993b0 docs: Update README (GitHub Actions Bot)
  • ffc87d6 docs: fix broken links in Further Reading sections (#21203) (Minsu)
  • 1a761e1 docs: update moved JSX specification links (#21198) (Imran Mustafa)
  • 4d00ca4 docs: update ESLint peer dependency to ^10.0.0 in shareable configs (#21202) (lumir)
  • 510d1a2 docs: Update README (GitHub Actions Bot)

Chores

  • 899dbf1 chore: update github/codeql-action action to v4.37.7 (#21243) (renovate[bot])
  • 9aa3873 chore: update ecosystem plugins (#21235) (ESLint Bot)
  • dc1e7a8 chore: update ecosystem plugins (#21208) (ESLint Bot)
  • f878d21 ci: bump pnpm/action-setup from 6.0.9 to 6.0.10 (#21200) (dependabot[bot])
  • 4891e50 ci: bump github/codeql-action from 4.37.4 to 4.37.6 (#21199) (dependabot[bot])

v10.8.1

Bug Fixes

  • 18eb0a7 fix: prevent ASI hazard in no-unused-labels autofix (#21173) (dongkyu lee)
  • 151ba3f fix: false positives in getter-return and accessor-pairs (#21163) (Grit)
  • 6898df9 fix: ignore meta-property names in id-denylist (#21166) (Pixel)
  • 4d7db66 fix: ignore meta-property names in id-match (#21167) (Pixel)
  • 677214e fix: handle ASI hazards in no-unused-vars removeVar suggestion (#20935) (kuldeep kumar)

Documentation

  • 7d0cbf8 docs: Update README (GitHub Actions Bot)
  • 0a05812 docs: add missing backticks to no-duplicate-imports.js (#21183) (Lee Daeun)
  • 678c90b docs: Update README (GitHub Actions Bot)
  • 8a10424 docs: Update README (GitHub Actions Bot)

... (truncated)

Commits

Updates globals from 17.7.0 to 17.11.0

Release notes

Sourced from globals's releases.

v17.11.0

  • Add react-native globals (#337) 61eafbf

sindresorhus/globals@v17.10.0...v17.11.0

v17.10.0

  • Add GM_cookie to Greasemonkey globals (#349) f468407

sindresorhus/globals@v17.9.0...v17.10.0

v17.9.0

  • Update globals (2026-08-01) (#348) 5a958ed

sindresorhus/globals@v17.8.0...v17.9.0

v17.8.0

  • Update globals (2026-07-01) (#347) 7394811

sindresorhus/globals@v17.7.0...v17.8.0

Commits

Updates lint-staged from 17.0.8 to 17.4.1

Release notes

Sourced from lint-staged's releases.

v17.4.1

17.4.1

Patch Changes

  • #1840 efe5b63 - This is a version-bump-only release because the previous version 17.4.0 was not published to npmjs.com due to problems with GitHub Actions and Changesets.

17.4.0

Minor Changes

  • #1836 90ec282 - Added a new defineConfig helper for type-checking the lint-staged configuration:

    // lint-staged.config.ts
    import { defineConfig } from 'lint-staged/config'
    export default defineConfig({
    '*.js': ['prettier --check', 'eslint'],
    })

  • #1832 510a27c - Added a new flag --all to make lint-staged include all files tracked by Git, instead of only staged.

    By default lint-staged only runs tasks on files that include staged changes (hence the name). Use this flag to include all files tracked in Git version control (standard exclusions apply). Using this flag implies the --no-stash flag, disabling the automatic backup, and the --allow-empty flag so that lint-staged doesn't fail when there are no changes after running. This makes it easier to run npx lint-staged --all on a clean state, for example in CI.

Patch Changes

  • #1838 69bec99 - The behavior of the automatic backup stash has been improved when running lint-staged in multiple worktrees in parallel. You should still avoid running multiple instances of lint-staged in parallel in the same tree, because some of the Git operations are locking and might lead to data loss.

  • #1839 5e5bdd2 - Parsing of lint-staged CLI flags and Node.js API options has been rewritten to avoid inconsistent behavior between the two.

v17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      "*": [

... (truncated)

Changelog

Sourced from lint-staged's changelog.

17.4.1

Patch Changes

  • #1840 efe5b63 - This is a version-bump-only release because the previous version 17.4.0 was not published to npmjs.com due to problems with GitHub Actions and Changesets.

17.4.0

Minor Changes

  • #1836 90ec282 - Added a new defineConfig helper for type-checking the lint-staged configuration:

    // lint-staged.config.ts
    import { defineConfig } from 'lint-staged/config'
    export default defineConfig({
    '*.js': ['prettier --check', 'eslint'],
    })

  • #1832 510a27c - Added a new flag --all to make lint-staged include all files tracked by Git, instead of only staged.

    By default lint-staged only runs tasks on files that include staged changes (hence the name). Use this flag to include all files tracked in Git version control (standard exclusions apply). Using this flag implies the --no-stash flag, disabling the automatic backup, and the --allow-empty flag so that lint-staged doesn't fail when there are no changes after running. This makes it easier to run npx lint-staged --all on a clean state, for example in CI.

Patch Changes

  • #1838 69bec99 - The behavior of the automatic backup stash has been improved when running lint-staged in multiple worktrees in parallel. You should still avoid running multiple instances of lint-staged in parallel in the same tree, because some of the Git operations are locking and might lead to data loss.

  • #1839 5e5bdd2 - Parsing of lint-staged CLI flags and Node.js API options has been rewritten to avoid inconsistent behavior between the two.

17.3.0

Minor Changes

  • #1825 16b3f74 - It is now possible to run multiple tasks in parallel for a single glob by configuring it with an array of tasks (which run sequentially), and then placing another array inside it (where the tasks will run in parallel). The following demonstrates the order tasks will start in:

    {
      "*.ts": ["first", "second", ["third", "third"], "fourth"]
    }

    As a concrete example, lint-staged's own configuration is:

    /** @type {import('./lib/index.js').Configuration} */
    export default {
      '*': [

... (truncated)

Commits
  • d0c1517 Merge pull request #1841 from lint-staged/changeset-release/main
  • f061335 chore(changeset): release
  • d2721af Merge pull request #1840 from lint-staged/updates
  • efe5b63 ci: update Changesets action because it failed to publish
  • cd76ce3 build: update dependencies
  • ea195e1 Merge pull request #1837 from lint-staged/changeset-release/main
  • a6a0d61 chore(changeset): release
  • 0a09098 Merge pull request #1832 from lint-staged/add-all-flag
  • 7fd685b fix: further fix parsing options logic
  • 510a27c feat: add --all flag for including all files tracked by Git instead of just...
  • Additional commits viewable in compare view

Updates prettier from 3.9.4 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.6

diff

TypeScript: Preserve quotes for methods named new (#19621 by @​kovsu)

// Input
interface Container {
  "new"(id: string): number;
}
// Prettier 3.9.5
interface Container {
new(id: string): number;
}
// Prettier 3.9.6
interface Container {
"new"(id: string): number;
}

TypeScript: Support import defer (#19624, #19675 by @​fisker)

// Input
import defer * as foo from "foo";
// Prettier 3.9.5
import * as foo from "foo";
// Prettier 3.9.6
import defer * as foo from "foo";

JavaScript: Added a new official plugin @prettier/plugin-yuku (#19628, #19629 by @​fisker)

@prettier/plugin-yuku is powered by Yuku (A high-performance JavaScript/TypeScript compiler toolchain written in Zig).

This plugin includes two new parsers: yuku (JavaScript syntax) and yuku-ts (TypeScript syntax).

To use this plugin:

  1. Install the plugin:

    yarn add --dev prettier @prettier/plugin-yuku

... (truncated)

Commits

Updates rolldown from 1.1.4 to 1.2.6

Release notes

Sourced from rolldown's releases.

v1.2.6

[1.2.6] - 2026-08-26

🚀 Features

🐛 Bug Fixes

🚜 Refactor

📚 Documentation

⚡ Performance

🧪 Testing

⚙️ Miscellaneous Tasks

... (truncated)

Changelog

Sourced from rolldown's changelog.

[1.2.6] - 2026-08-26

🚀 Features

🐛 Bug Fixes

🚜 Refactor

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

| Package | From | To |
| --- | --- | --- |
| [@marko/compiler](https://github.com/marko-js/marko/tree/HEAD/packages/compiler) | `5.40.0` | `5.42.3` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `26.1.0` | `26.4.0` |
| [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul) | `4.1.9` | `4.1.11` |
| [eslint](https://github.com/eslint/eslint) | `10.6.0` | `10.9.1` |
| [globals](https://github.com/sindresorhus/globals) | `17.7.0` | `17.11.0` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.0.8` | `17.4.1` |
| [prettier](https://github.com/prettier/prettier) | `3.9.4` | `3.9.6` |
| [rolldown](https://github.com/rolldown/rolldown/tree/HEAD/packages/rolldown) | `1.1.4` | `1.2.6` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.62.1` | `8.68.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `4.1.9` | `4.1.11` |



Updates `@marko/compiler` from 5.40.0 to 5.42.3
- [Release notes](https://github.com/marko-js/marko/releases)
- [Changelog](https://github.com/marko-js/marko/blob/main/packages/compiler/CHANGELOG.md)
- [Commits](https://github.com/marko-js/marko/commits/@marko/compiler@5.42.3/packages/compiler)

Updates `@types/node` from 26.1.0 to 26.4.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@vitest/coverage-istanbul` from 4.1.9 to 4.1.11
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/coverage-istanbul)

Updates `eslint` from 10.6.0 to 10.9.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.6.0...v10.9.1)

Updates `globals` from 17.7.0 to 17.11.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v17.7.0...v17.11.0)

Updates `lint-staged` from 17.0.8 to 17.4.1
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.0.8...v17.4.1)

Updates `prettier` from 3.9.4 to 3.9.6
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.9.4...3.9.6)

Updates `rolldown` from 1.1.4 to 1.2.6
- [Release notes](https://github.com/rolldown/rolldown/releases)
- [Changelog](https://github.com/rolldown/rolldown/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rolldown/rolldown/commits/v1.2.6/packages/rolldown)

Updates `typescript-eslint` from 8.62.1 to 8.68.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.68.0/packages/typescript-eslint)

Updates `vitest` from 4.1.9 to 4.1.11
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Changelog](https://github.com/vitest-dev/vitest/blob/main/docs/releases.md)
- [Commits](https://github.com/vitest-dev/vitest/commits/v4.1.11/packages/vitest)

---
updated-dependencies:
- dependency-name: "@marko/compiler"
  dependency-version: 5.42.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@vitest/coverage-istanbul"
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: eslint
  dependency-version: 10.9.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: globals
  dependency-version: 17.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: lint-staged
  dependency-version: 17.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rolldown
  dependency-version: 1.2.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript-eslint
  dependency-version: 8.68.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: vitest
  dependency-version: 4.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 1, 2026
@changeset-bot

changeset-bot Bot commented Sep 1, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: c67bd9d

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

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