Skip to content

chore(deps): bump the minor group across 1 directory with 11 updates#130

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-e87a0c67f4
Closed

chore(deps): bump the minor group across 1 directory with 11 updates#130
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/minor-e87a0c67f4

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

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

Package From To
htmljs-parser 5.10.2 5.12.0
@changesets/changelog-github 0.6.0 0.7.0
@marko/compiler 5.39.63 5.40.0
@vitest/coverage-v8 4.1.5 4.1.9
eslint 10.2.1 10.6.0
globals 17.5.0 17.7.0
marko 6.0.168 6.1.23
prettier 3.8.3 3.9.4
typescript-eslint 8.59.1 8.62.1

Updates htmljs-parser from 5.10.2 to 5.12.0

Release notes

Sourced from htmljs-parser's releases.

v5.12.0

Minor Changes

Patch Changes

  • #224 aaeb3fd Thanks @​DylanPiercey! - Fix a spurious "Mismatched group" error when a > (or other comparison) appears in the body of a statement function that declares a return type, e.g.:

    export function a(): b {
      return c > d;
    }

    Previously the type-parsing state from the return type annotation leaked into the function body, so a > was treated as a closing generic bracket. A { that follows a completed type now correctly ends the annotation and parses the block as a value.

v5.11.0

Minor Changes

  • #222 221d3b7 Thanks @​DylanPiercey! - Replace TypeScript enums with erasable const modules so the source runs directly under node's type stripping. The public TagType, ErrorCode, and Validity values keep their runtime shape and values, and their types are now the equivalent literal unions. Constant values remain fully inlined in the published bundles.

Patch Changes

  • #223 3c95d7f Thanks @​DylanPiercey! - Speed up expression parsing by skipping work that provably cannot match. An identifier/number character is never whitespace, never a terminator (no shouldTerminate implementation matches a word character), and is not handled by the expression switch, so it now takes a fast path that just advances the position. The unary/binary operator keyword scans also bail out immediately when the surrounding character cannot start or end a keyword. This improves steady-state parsing throughput with no behavior change.

  • #220 85c8973 Thanks @​DylanPiercey! - Refactor parser to allow individual states to process multiple characters. This allows for eager scanning, simplifies things some, and improves performance by about 30% in realworld tempaltes.

Changelog

Sourced from htmljs-parser's changelog.

5.12.0

Minor Changes

Patch Changes

  • #224 aaeb3fd Thanks @​DylanPiercey! - Fix a spurious "Mismatched group" error when a > (or other comparison) appears in the body of a statement function that declares a return type, e.g.:

    export function a(): b {
      return c > d;
    }

    Previously the type-parsing state from the return type annotation leaked into the function body, so a > was treated as a closing generic bracket. A { that follows a completed type now correctly ends the annotation and parses the block as a value.

5.11.0

Minor Changes

  • #222 221d3b7 Thanks @​DylanPiercey! - Replace TypeScript enums with erasable const modules so the source runs directly under node's type stripping. The public TagType, ErrorCode, and Validity values keep their runtime shape and values, and their types are now the equivalent literal unions. Constant values remain fully inlined in the published bundles.

Patch Changes

  • #223 3c95d7f Thanks @​DylanPiercey! - Speed up expression parsing by skipping work that provably cannot match. An identifier/number character is never whitespace, never a terminator (no shouldTerminate implementation matches a word character), and is not handled by the expression switch, so it now takes a fast path that just advances the position. The unary/binary operator keyword scans also bail out immediately when the surrounding character cannot start or end a keyword. This improves steady-state parsing throughput with no behavior change.

  • #220 85c8973 Thanks @​DylanPiercey! - Refactor parser to allow individual states to process multiple characters. This allows for eager scanning, simplifies things some, and improves performance by about 30% in realworld tempaltes.

Commits
  • 16f453a [ci] release
  • 4d28e16 feat: support comments between concise mode line attributes
  • aaeb3fd fix(expression): end type annotation at function body brace
  • 8d38c8b [ci] release
  • 3c95d7f perf(expression): fast-path identifier characters and short-circuit keyword s...
  • 221d3b7 refactor: run natively on node type stripping, modernize tooling
  • 83d0f84 chore: improve test coverage
  • 85c8973 perf: refactor states to be able to parse multiple characters
  • See full diff in compare view

Updates @changesets/changelog-github from 0.6.0 to 0.7.0

Release notes

Sourced from @​changesets/changelog-github's releases.

@​changesets/changelog-github@​0.7.0

Minor Changes

Commits

Updates @marko/compiler from 5.39.63 to 5.40.0

Release notes

Sourced from @​marko/compiler's releases.

@​marko/compiler@​5.40.0

Minor Changes

  • #3301 ecc342c Thanks @​DylanPiercey! - Discover custom tags grouped one level deep inside non-tag folders under a tags directory (e.g. tags/icons/icon-chevron.marko exposes <icon-chevron>).

@​marko/compiler@​5.39.66

Patch Changes

  • #3282 0144550 Thanks @​DylanPiercey! - Add the Scopable alias to MarkoTagBody. It was already treated as scopable by the runtime checks (isScopable/isScope, so it gets its own scope) but was missing from the Scopable alias group, so Babel's scope-crawl reset visitor — which is registered via that alias — never reset a tag body's bindings during an ancestor/program-level scope.crawl(); it appended freshly-collected references on top of stale ones. Combined with an AST mutation that moves a reference out of a removed subtree (e.g. flattening a text-only <if>), a tag-body parameter (<await> value, <for> item) could retain a reference into the removed nodes, making the analyzer emit invalid output such as const = _content_resume(...) that crashed the bundler.

@​marko/compiler@​5.39.65

Patch Changes

@​marko/compiler@​5.39.64

Patch Changes

  • #3210 5005d96 Thanks @​DylanPiercey! - Add compiler entry compilation and native asset handling for bundler integrations.

    • entry: "page" | "load" compiles a template as a top level page entry or a lazily loaded entry, replacing the deprecated output: "hydrate".
    • linkAssets: { runtime, onAsset } connects the bundler: onAsset(kind, file, id) is called for every discovered page and load entry, and runtime names a module whose flush function resolves an asset id into the HTML for its tags while rendering.

    With linkAssets configured the server tracks the assets needed by each page, writing their script tags into the streamed HTML (at the end of <head> when rendered, otherwise before the first flush).

  • #3210 5005d96 Thanks @​DylanPiercey! - Add version APIs for tooling: @marko/compiler now exports its version, translators export theirs, and getRuntimeVersion(translator) returns the resolved translator's version.

Changelog

Sourced from @​marko/compiler's changelog.

5.40.0

Minor Changes

  • #3301 ecc342c Thanks @​DylanPiercey! - Discover custom tags grouped one level deep inside non-tag folders under a tags directory (e.g. tags/icons/icon-chevron.marko exposes <icon-chevron>).

5.39.66

Patch Changes

  • #3282 0144550 Thanks @​DylanPiercey! - Add the Scopable alias to MarkoTagBody. It was already treated as scopable by the runtime checks (isScopable/isScope, so it gets its own scope) but was missing from the Scopable alias group, so Babel's scope-crawl reset visitor — which is registered via that alias — never reset a tag body's bindings during an ancestor/program-level scope.crawl(); it appended freshly-collected references on top of stale ones. Combined with an AST mutation that moves a reference out of a removed subtree (e.g. flattening a text-only <if>), a tag-body parameter (<await> value, <for> item) could retain a reference into the removed nodes, making the analyzer emit invalid output such as const = _content_resume(...) that crashed the bundler.

5.39.65

Patch Changes

5.39.64

Patch Changes

  • #3210 5005d96 Thanks @​DylanPiercey! - Add compiler entry compilation and native asset handling for bundler integrations.

    • entry: "page" | "load" compiles a template as a top level page entry or a lazily loaded entry, replacing the deprecated output: "hydrate".
    • linkAssets: { runtime, onAsset } connects the bundler: onAsset(kind, file, id) is called for every discovered page and load entry, and runtime names a module whose flush function resolves an asset id into the HTML for its tags while rendering.

    With linkAssets configured the server tracks the assets needed by each page, writing their script tags into the streamed HTML (at the end of <head> when rendered, otherwise before the first flush).

  • #3210 5005d96 Thanks @​DylanPiercey! - Add version APIs for tooling: @marko/compiler now exports its version, translators export theirs, and getRuntimeVersion(translator) returns the resolved translator's version.

Commits
  • 51ce08c [ci] release (#3302)
  • ecc342c feat(compiler): discover tags grouped in folders under tags dir (#3301)
  • df12750 [ci] release (#3284)
  • 072aba6 [ci] release
  • ddaf642 fix: bug bash and add a bunch of tests
  • 89648b5 [ci] release
  • 5005d96 feat: native asset management and lazy loading
  • e3001a4 chore: make babel extra types more strict
  • 3d257f7 chore: switch to patch-package for @​babel/types patching
  • 3a6b10c fix: avoid tsc on dist files, improve some types
  • Additional commits viewable in compare view

Updates @vitest/coverage-v8 from 4.1.5 to 4.1.9

Release notes

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

v4.1.9

🐞 Bug Fixes

View changes on GitHub

v4.1.8

   🐞 Bug Fixes

    View changes on GitHub

v4.1.7

   🐞 Bug Fixes

    View changes on GitHub

v4.1.6

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits

Updates eslint from 10.2.1 to 10.6.0

Release notes

Sourced from eslint's releases.

v10.6.0

Features

  • b1f9106 feat: detect Symbol() and BigInt() in no-constant-binary-expression (#20981) (Taejin Kim)
  • f291007 feat: add checkRelationalComparisons to no-constant-binary-expression (#20948) (sethamus)

Bug Fixes

  • 6b05784 fix: prefer-exponentiation-operator invalid autofix at statement start (#20997) (Milos Djermanovic)
  • bb9eb2a fix: account for shadowed Boolean in no-extra-boolean-cast (#21013) (den$)
  • 8fd8741 fix: don't report shadowed undefined in radix rule (#21011) (Pixel)
  • 5784980 fix: don't report shadowed undefined in no-throw-literal (#21010) (Pixel)
  • 9cd1e6d fix: suppress invalid class suggestion in no-promise-executor-return (#21008) (Pixel)
  • d4eb2dc fix: don't report shadowed undefined in prefer-promise-reject-errors (#21006) (Pixel)
  • 2360464 fix: prefer-promise-reject-errors false positives for shadowed Promise (#21003) (den$)
  • 63d52d2 fix: restore max-classes-per-file report range (#21002) (Pixel)
  • 7feaff0 fix: callback detection logic for IIFEs in max-nested-callbacks (#20979) (fnx)
  • 399a2ec fix: don't report inner non-callbacks in max-nested-callbacks (#20995) (Milos Djermanovic)

Documentation

  • a83683d docs: Update README (GitHub Actions Bot)
  • f5449f9 docs: document userland patterns for global assertionOptions in RuleT… (#20986) (playgirl)
  • bea49f7 docs: Update README (GitHub Actions Bot)
  • e5f70f9 docs: update code-path diagrams (#20984) (Tanuj Kanti)
  • 8890c2d docs: add TypeScript config guidance for MCP server (#20796) (Pierluigi Lenoci)
  • 3eb3d9b docs: Update README (GitHub Actions Bot)
  • c5bb59c docs: Update README (GitHub Actions Bot)
  • eb3c97c docs: fix grammar in prefer-const rule description (#20983) (lumir)

Chores

  • 6a42034 ci: run ecosystem tests on main branch (#20891) (sethamus)
  • 3dbacdb ci: bump actions/checkout from 6 to 7 (#21014) (dependabot[bot])
  • c3abfca chore: correct JSDoc param types in html formatter (#21018) (Minseon Kim)
  • a832320 ci: split ecosystem tests into separate jobs (#21001) (xbinaryx)
  • 27166e7 chore: update ecosystem plugins (#21005) (ESLint Bot)
  • 865d76e ci: bump pnpm/action-setup from 6.0.8 to 6.0.9 (#20989) (dependabot[bot])
  • 27a88c9 chore: update dependency markdown-it to v14 in root (#20994) (Milos Djermanovic)
  • 970cea6 chore: update dependency markdown-it to v14 (#20993) (Milos Djermanovic)
  • b482120 chore: update dependency prettier to v3.8.4 (#20990) (renovate[bot])
  • 6993fb3 chore: update ecosystem plugins (#20985) (ESLint Bot)

v10.5.0

Features

  • 5ca8c52 feat: correct stack tracking in max-nested-callbacks (#20973) (Pixel998)
  • b565783 feat: report no-with violations at the with keyword (#20971) (Pixel998)
  • 2ce032f feat: report max-lines-per-function violations at function head (#20966) (Pixel998)
  • 732cb3e feat: report max-nested-callbacks violations at function head (#20967) (Pixel998)
  • f9c138a feat: report max-depth violations on keywords (#20943) (Pixel998)
  • bdb496c feat: correct max-depth handling for else-if chains (#20944) (Pixel998)
  • c296873 feat: update error loc in max-statements to function header (#20907) (Taejin Kim)

Documentation

... (truncated)

Commits
  • 5d12a04 10.6.0
  • f7ca54b Build: changelog update for 10.6.0
  • 6a42034 ci: run ecosystem tests on main branch (#20891)
  • b1f9106 feat: detect Symbol() and BigInt() in no-constant-binary-expression (#20981)
  • 3dbacdb ci: bump actions/checkout from 6 to 7 (#21014)
  • c3abfca chore: correct JSDoc param types in html formatter (#21018)
  • a83683d docs: Update README
  • a832320 ci: split ecosystem tests into separate jobs (#21001)
  • 6b05784 fix: prefer-exponentiation-operator invalid autofix at statement start (#20997)
  • bb9eb2a fix: account for shadowed Boolean in no-extra-boolean-cast (#21013)
  • Additional commits viewable in compare view

Updates globals from 17.5.0 to 17.7.0

Release notes

Sourced from globals's releases.

v17.7.0

  • Update globals (2026-06-22) (#345) 33b75f9

sindresorhus/globals@v17.6.0...v17.7.0

v17.6.0

  • Update globals (2026-05-01) (#343) 00a4dd9

sindresorhus/globals@v17.5.0...v17.6.0

Commits

Updates marko from 6.0.168 to 6.1.23

Changelog

Sourced from marko's changelog.

6.1.23

Patch Changes

  • #3306 bcbd992 Thanks @​DylanPiercey! - Collapse pass-through signals for <for> and tag-body params that are only read by member access, shrinking the generated DOM bundle.

6.1.22

Patch Changes

  • #3281 802234e Thanks @​DylanPiercey! - Render native attribute values at compile time. Conditional and logical attribute values are pushed down to their branches so the literal side is serialized at build time, and a shared name= prefix is hoisted out so only the differing value stays dynamic — e.g. title=x ? "a" : "b" compiles to title=${x ? "a" : "b"}, and aria-hidden=x && "true" serializes the "true" side without re-evaluating x. Because class/style omit a falsy value, class=x && "active" further simplifies to x ? " class=active" : "". A class object/array with a static base is resolved up front without re-evaluating any toggle: a single toggle picks a precomputed literal, a few index a hoisted table packed from the toggles, and more concatenate the string for _attr_class — in every case the class array/object is no longer allocated and the quoting is resolved at build time.

6.1.21

Patch Changes

  • #3303 ccd2b37 Thanks @​DylanPiercey! - Fix two resume bugs in control-flow branches: a client-created <if>/<for>/dynamic-tag branch could be orphaned from the branch tree (leaking effect/onDestroy cleanup) when its owner was driven only by input, and a bare <await> (no enclosing <try>) could throw a HierarchyRequestError when its promise re-resolved after resume.

    The closest branch for a control-flow owner is now derived during resume from the branch markers it already emits — nested under its enclosing stateful branch the same way branches link to their parents — so no extra closest-branch id is serialized.

6.1.20

Patch Changes

  • #3298 c199491 Thanks @​DylanPiercey! - Run a lazily-loaded branch's setup effects only after it is connected. When a lazy tag loads with pending input values its insertion is deferred until those values resolve, but its setup -- and the effects it queues, such as <script> content and event-attach effects -- previously ran before the branch's nodes were inserted. Setup now runs in that same deferred render, so its effects run only once the branch is connected, whether or not a <try> ancestor is present.

  • #3300 4f8f805 Thanks @​DylanPiercey! - Fix a batch of runtime and translator bugs:

    • Sibling dynamic attribute tags first discovered within a single control-flow branch now share a group, so the DOM output no longer assigns to an undeclared variable (ReferenceError) and correctly delivers each tag's reactive value.
    • Multi-segment <style.module.css> shorthand extensions now compile instead of being rejected as unsupported html attributes.
    • Optimized builds no longer emit the dev-only _assert_init wrapper for derived own-variable reads (the guard read a stale config value instead of the active optimize option).
    • Known attribute lookups no longer resolve Object.prototype members for attribute names like constructor or toString.
    • $signal deduplication is keyed correctly for the first expression in a section, avoiding a duplicate abort controller and reset.
    • A serialized RegExp whose source contains < is now escaped so it cannot break out of the inline resume <script>.
    • An Error serialized with an explicitly falsy cause (0, "", false, null) now preserves the cause on resume instead of dropping it.
    • An uncontrolled <select> no longer force-selects an empty/falsy-value <option>.
    • A controlled-checked <input> (e.g. a radio button) no longer drops its static value attribute; the controlled-attribute skip is now scoped per branch consistently in both the server and client runtimes.
    • Rendering a Marko 5 class component as tags with null input no longer throws.

6.1.19

Patch Changes

  • #3296 df49ad7 Thanks @​DylanPiercey! - Resolve controlled radio-group siblings and the focused element against the document directly instead of the element's root node, removing the remaining getRootNode() lookups from the runtime.

  • #3292 f368176 Thanks @​DylanPiercey! - Skip serializing the controlled type for statically-typed controllable form fields, since it is only read back on resume by the spread attribute path. Shrinks the resume payload with no behavior change.

  • #3295 7458238 Thanks @​DylanPiercey! - Always delegate native events from the document rather than each element's root node. This removes the getRootNode() lookup from the delegation path and shrinks the runtime.

  • #3291 fb7b08a Thanks @​DylanPiercey! - Fix a Class API child rendered by a Tags API parent not hydrating after SSR when the child hydrates itself (classHydration: "self") but the Tags side passes it no serialize reason (e.g. an interactive or split component like ebay-button used without any reactive/event input). Previously only Descendant boundaries were serialized in this case, so the child's server-rendered DOM never came alive in the browser.

... (truncated)

Commits

Updates prettier from 3.8.3 to 3.9.4

Release notes

Sourced from prettier's releases.

3.9.4

  • Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

🔗 Changelog

3.9.3

🔗 Changelog

3.9.1

🔗 Changelog

3.9.0

diff

🔗 Prettier 3.9: Major parser upgrades and Formatting improvements

3.8.5

🔗 Changelog

3.8.4

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.9.4

diff

Angular: Format @content(name) -> @content (name) to align with other block syntax (#19499 by @​fisker)

<!-- Input -->
<FancyButton [label]="title">
  @content (icon) {
    <span>Icon!</span>
  }
  @content (description) {
    <span>Description text</span>
  }
  <span>Other children</span>
</FancyButton>
<!-- Prettier 3.9.3 -->
<FancyButton [label]="title">
@​content(icon) {
<span>Icon!</span>
}
@​content(description) {
<span>Description text</span>
}
<span>Other children</span>
</FancyButton>
<!-- Prettier 3.9.4 -->
<FancyButton [label]="title">
@​content (icon) {
<span>Icon!</span>
}
@​content (description) {
<span>Description text</span>
}
<span>Other children</span>
</FancyButton>

3.9.3

diff

Markdown: Fix unexpected removal of characters in liquid syntax (#19489 by @​seiyab)

</tr></table> 

... (truncated)

Commits
  • b693cb2 Release 3.9.4
  • 2e92ac0 Angular: Format @content(name) -> @content (name) to align with other blo...
  • abed2c2 Bump Prettier dependency to 3.9.3
  • 6cfbc00 Clean changelog_unreleased
  • 3732e1d Release 3.9.3
  • a74a7b0 Allow decorators to be used with declare on class fields (#19492)
  • bd9e11a Correct text identification in liquid syntax (#19489)
  • 269eee3 Bump Prettier dependency to 3.9.1
  • ec7ccd1 Clean changelog_unreleased
  • c47654c Release 3.9.1
  • Additional commits viewable in compare view

Updates rolldown from 1.0.0-rc.17 to 1.1.3

Release notes

Sourced from rolldown's releases.

v1.1.3

[1.1.3] - 2026-06-24

🐛 Bug Fixes

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

| Package | From | To |
| --- | --- | --- |
| [htmljs-parser](https://github.com/marko-js/htmljs-parser) | `5.10.2` | `5.12.0` |
| [@changesets/changelog-github](https://github.com/changesets/changesets) | `0.6.0` | `0.7.0` |
| [@marko/compiler](https://github.com/marko-js/marko/tree/HEAD/packages/compiler) | `5.39.63` | `5.40.0` |
| [@vitest/coverage-v8](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8) | `4.1.5` | `4.1.9` |
| [eslint](https://github.com/eslint/eslint) | `10.2.1` | `10.6.0` |
| [globals](https://github.com/sindresorhus/globals) | `17.5.0` | `17.7.0` |
| [marko](https://github.com/marko-js/marko/tree/HEAD/packages/runtime-tags) | `6.0.168` | `6.1.23` |
| [prettier](https://github.com/prettier/prettier) | `3.8.3` | `3.9.4` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.59.1` | `8.62.1` |



Updates `htmljs-parser` from 5.10.2 to 5.12.0
- [Release notes](https://github.com/marko-js/htmljs-parser/releases)
- [Changelog](https://github.com/marko-js/htmljs-parser/blob/main/CHANGELOG.md)
- [Commits](marko-js/htmljs-parser@v5.10.2...v5.12.0)

Updates `@changesets/changelog-github` from 0.6.0 to 0.7.0
- [Release notes](https://github.com/changesets/changesets/releases)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/changelog-github@0.6.0...@changesets/changelog-github@0.7.0)

Updates `@marko/compiler` from 5.39.63 to 5.40.0
- [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.40.0/packages/compiler)

Updates `@vitest/coverage-v8` from 4.1.5 to 4.1.9
- [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.9/packages/coverage-v8)

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

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

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

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

Updates `rolldown` from 1.0.0-rc.17 to 1.1.3
- [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.1.3/packages/rolldown)

Updates `typescript-eslint` from 8.59.1 to 8.62.1
- [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.62.1/packages/typescript-eslint)

Updates `vitest` from 4.1.5 to 4.1.9
- [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.9/packages/vitest)

---
updated-dependencies:
- dependency-name: htmljs-parser
  dependency-version: 5.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@changesets/changelog-github"
  dependency-version: 0.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@marko/compiler"
  dependency-version: 5.40.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: "@vitest/coverage-v8"
  dependency-version: 4.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: eslint
  dependency-version: 10.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: globals
  dependency-version: 17.7.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: marko
  dependency-version: 6.1.23
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: prettier
  dependency-version: 3.9.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: rolldown
  dependency-version: 1.1.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: typescript-eslint
  dependency-version: 8.62.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: vitest
  dependency-version: 4.1.9
  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 Jul 1, 2026
@changeset-bot

changeset-bot Bot commented Jul 1, 2026

Copy link
Copy Markdown

⚠️ No Changeset found

Latest commit: 8704a8a

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

@dependabot @github

dependabot Bot commented on behalf of github Jul 3, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jul 3, 2026
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/minor-e87a0c67f4 branch July 3, 2026 02:48
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