Skip to content

Bump the minor_versions group across 1 directory with 15 updates - #8351

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-npm_and_yarn-minor_versions-8d3223c388
Open

Bump the minor_versions group across 1 directory with 15 updates#8351
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot-npm_and_yarn-minor_versions-8d3223c388

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 19, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor_versions group with 15 updates in the / directory:

Package From To
@typescript-eslint/parser 8.56.1 8.67.0
esbuild 0.28.1 0.28.2
liquidjs 10.27.0 10.29.0
@oclif/core 4.8.3 4.13.3
@shopify/theme-check-node 3.27.0 3.28.1
prettier 3.8.4 3.9.6
ws 8.21.0 8.21.3
@ast-grep/napi 0.43.0 0.45.1
@bugsnag/js 8.9.0 8.10.0
@opentelemetry/core 2.8.0 2.10.0
@opentelemetry/exporter-metrics-otlp-http 0.57.0 0.221.0
semver 7.8.4 7.8.5
@typescript-eslint/eslint-plugin 8.56.1 8.67.0
@vitest/eslint-plugin 1.1.44 1.6.27
@shopify/theme-language-server-node 2.21.4 2.22.1

Updates @typescript-eslint/parser from 8.56.1 to 8.67.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v8.67.0

8.67.0 (2026-08-10)

🚀 Features

  • typescript-eslint: export basic globs for using tseslint (#12105)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.66.0

8.66.0 (2026-08-03)

🚀 Features

  • typescript-estree: handle import.defer() as ImportExpression (#12609)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-conversion] ignore shadowed built-ins (#12590)
  • eslint-plugin: [prefer-nullish-coalescing] handle shadowed Boolean calls (#12591)
  • eslint-plugin: [no-useless-default-assignment] don't report defaults used by other overloads (#12607)
  • eslint-plugin: [no-unnecessary-type-parameters] check MappedType key remapping (#12588)
  • eslint-plugin: [class-literal-property-style] preserve type annotations and don't drop decorators (#12617)
  • website: list onUnsupportedTypeScriptVersion in parser options (#12585)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.65.0

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)

... (truncated)

Changelog

Sourced from @​typescript-eslint/parser's changelog.

8.67.0 (2026-08-10)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.66.0 (2026-08-03)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.65.0 (2026-07-20)

🚀 Features

  • add warning when TS 7 is detected (#12529)
  • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#12465)

❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.64.0 (2026-07-13)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

8.63.0 (2026-07-06)

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

... (truncated)

Commits
  • 20a261f chore(release): publish 8.67.0
  • 3b155bb chore: use typescript 7 for typechecking (#12601)
  • e51b11b chore(release): publish 8.66.0
  • 63ba81b chore(release): publish 8.65.0
  • eaf4576 feat: add warning when TS 7 is detected (#12529)
  • d8f1044 feat(parser): add onUnsupportedTypeScriptVersion option to error on unsupport...
  • 0d06406 chore: add attw validation to repo (#12437)
  • c2386e4 chore(deps): update dependency prettier to v3.9.5 (#12486)
  • 414d9ab chore(release): publish 8.64.0
  • 290cf6c chore(release): publish 8.63.0
  • Additional commits viewable in compare view

Updates esbuild from 0.28.1 to 0.28.2

Release notes

Sourced from esbuild's releases.

v0.28.2

  • Fix tree shaking bug due to TypeScript import alias (#4507)

    This release fixes a bug that could cause esbuild to incorrectly tree-shake imports that are used in a TypeScript type alias under certain circumstances. Affected code uses a TypeScript-specific import assignment and looks something like this:

    import Base from './dep.js';
    import Alias = Base.SomeType;
  • Fix CSS minification bug involving & (#4497)

    This release fixes a bug where esbuild's CSS minifier incorrectly removed a & when it was unsafe to do so. Here is an example:

    /* Original code */
    .a .b {
      & .b:not(& .c) {
        color: red;
      }
    }
    /* Old output (with --minify) */
    .a .b{.b:not(& .c){color:red}}
    /* New output (with --minify) */
    .a .b{& .b:not(& .c){color:red}}

    This should match <span class="a"><span class="b"><span class="b">yes</span></span></span> but not <span class="a"><span class="b">no</span></span>. The old output incorrectly matched both.

  • Avoid overwriting input files without --allow-overwrite (#4484)

    For example: esbuild input.js --outfile=input.js tells esbuild to overwrite input.js with the output of running esbuild on it. This was supposed to already be prevented by default, but it accidentally regressed in version 0.17.0 and apparently didn't have any test coverage. The error message was being printed but the input file was still being overwritten. Oops.

    This release puts the original behavior back. With this release, esbuild should now actually avoid overwriting input files unless --allow-overwrite is explicitly present. This is done by not writing out any files when a build error is encountered.

  • Fix incorrect code generated when using top-level await (#4498)

    Previously esbuild could generate code containing a syntax error in complex scenarios involving top-level await used in a dependency cycle. The problem was a missing async on one or more module wrapper closures. With this release, esbuild now uses a fixed-point iteration algorithm to correctly annotate all dependencies in the cycle as needing an async module wrapper.

  • Fix a minification bug with lowered logical assignment operators (#4508)

    This release fixes a bug that could cause esbuild to generate incorrect code for logical assignment operators when lowering them to an older target environment. Specifically the lowering process requires duplicating the left-hand side, but esbuild incorrectly failed to count the duplicate as a new usage when the left-hand side is an identifier. That then caused the minifier to believe that the left-hand side was only used once and could attempt to incorrectly inline an initializer into the first usage. This bug has now been fixed:

    // Original code
    function foo() {
      let x
      bar(x ||= {})

... (truncated)

Changelog

Sourced from esbuild's changelog.

0.28.2

  • Fix tree shaking bug due to TypeScript import alias (#4507)

    This release fixes a bug that could cause esbuild to incorrectly tree-shake imports that are used in a TypeScript type alias under certain circumstances. Affected code uses a TypeScript-specific import assignment and looks something like this:

    import Base from './dep.js';
    import Alias = Base.SomeType;
  • Fix CSS minification bug involving & (#4497)

    This release fixes a bug where esbuild's CSS minifier incorrectly removed a & when it was unsafe to do so. Here is an example:

    /* Original code */
    .a .b {
      & .b:not(& .c) {
        color: red;
      }
    }
    /* Old output (with --minify) */
    .a .b{.b:not(& .c){color:red}}
    /* New output (with --minify) */
    .a .b{& .b:not(& .c){color:red}}

    This should match <span class="a"><span class="b"><span class="b">yes</span></span></span> but not <span class="a"><span class="b">no</span></span>. The old output incorrectly matched both.

  • Avoid overwriting input files without --allow-overwrite (#4484)

    For example: esbuild input.js --outfile=input.js tells esbuild to overwrite input.js with the output of running esbuild on it. This was supposed to already be prevented by default, but it accidentally regressed in version 0.17.0 and apparently didn't have any test coverage. The error message was being printed but the input file was still being overwritten. Oops.

    This release puts the original behavior back. With this release, esbuild should now actually avoid overwriting input files unless --allow-overwrite is explicitly present. This is done by not writing out any files when a build error is encountered.

  • Fix incorrect code generated when using top-level await (#4498)

    Previously esbuild could generate code containing a syntax error in complex scenarios involving top-level await used in a dependency cycle. The problem was a missing async on one or more module wrapper closures. With this release, esbuild now uses a fixed-point iteration algorithm to correctly annotate all dependencies in the cycle as needing an async module wrapper.

  • Fix a minification bug with lowered logical assignment operators (#4508)

    This release fixes a bug that could cause esbuild to generate incorrect code for logical assignment operators when lowering them to an older target environment. Specifically the lowering process requires duplicating the left-hand side, but esbuild incorrectly failed to count the duplicate as a new usage when the left-hand side is an identifier. That then caused the minifier to believe that the left-hand side was only used once and could attempt to incorrectly inline an initializer into the first usage. This bug has now been fixed:

    // Original code
    function foo() {
      let x

... (truncated)

Commits
  • 609683d publish 0.28.2 to npm
  • 11b1fe4 add to release notes
  • ab50d91 css: fix green/blue channel swap in oklch gamut mapping (#4488)
  • 04627b6 fix #4498: async TLA checks need a worklist
  • 5c15177 disable gopls in the go folder
  • fc2ee9b css: adjust parser to allow --foo: {...}
  • 209db54 release notes for css nesting bugfix
  • c625d31 fix #4497: preserve nested ampersands during minification (#4500)
  • 34474e2 better isolation of current part in js parser
  • 07f6e8c fix #4507: import assignment tree-shaking bug
  • Additional commits viewable in compare view

Updates liquidjs from 10.27.0 to 10.29.0

Release notes

Sourced from liquidjs's releases.

v10.29.0

10.29.0 (2026-08-11)

Features

v10.28.0

10.28.0 (2026-08-01)

Bug Fixes

  • date: %s returns Unix epoch unaffected by display timezone (#932) (39c8743), closes #931

Features

  • Add support of inner expressions enclosed by parentheses (#863) (afa5f54)

v10.27.2

10.27.2 (2026-07-09)

Bug Fixes

  • charge join/json/inspect filters by produced output size (#925) (7ab49f9)
  • date: zero-pad milliseconds when formatting %N fractional seconds (#929) (2634f9d)
  • enforce ownPropertyOnly for inherited array indices (#924) (552819a)
  • filters: modulo should follow divisor sign for negative operands (#922) (568bd5f)
  • filters: return empty for out-of-range slice begin or negative length (#928) (f9a1316)

v10.27.1

10.27.1 (2026-06-23)

Bug Fixes

  • improve round function; improvement to #873 (#901) (956b51e)
  • security: charge pop filter allocation to memoryLimit (#907) (8a0c74a)
  • strip_html: infinite loop for strip_html (5c3522f)

Performance Improvements

  • parser: memoize createTrie to avoid rebuilding tries per Tokenizer (#911) (3a0d80d)
Changelog

Sourced from liquidjs's changelog.

10.29.0 (2026-08-11)

Features

10.28.0 (2026-08-01)

Bug Fixes

  • date: %s returns Unix epoch unaffected by display timezone (#932) (39c8743), closes #931

Features

  • Add support of inner expressions enclosed by parentheses (#863) (afa5f54)

10.27.2 (2026-07-09)

Bug Fixes

  • charge join/json/inspect filters by produced output size (#925) (7ab49f9)
  • date: zero-pad milliseconds when formatting %N fractional seconds (#929) (2634f9d)
  • enforce ownPropertyOnly for inherited array indices (#924) (552819a)
  • filters: modulo should follow divisor sign for negative operands (#922) (568bd5f)
  • filters: return empty for out-of-range slice begin or negative length (#928) (f9a1316)

10.27.1 (2026-06-23)

Bug Fixes

  • improve round function; improvement to #873 (#901) (956b51e)
  • security: charge pop filter allocation to memoryLimit (#907) (8a0c74a)
  • strip_html: infinite loop for strip_html (5c3522f)

Performance Improvements

  • parser: memoize createTrie to avoid rebuilding tries per Tokenizer (#911) (3a0d80d)
Commits
  • 747bdbd chore(release): 10.29.0 [skip ci]
  • 875513f feat(filters): add squish filter (#943)
  • f88a528 docs: add YacovGold as a contributor for code (#947)
  • 69b2c58 feat: add unregisterFilter method (#946)
  • 88ae297 chore(release): 10.28.0 [skip ci]
  • afa5f54 feat: Add support of inner expressions enclosed by parentheses (#863)
  • 39c8743 fix(date): %s returns Unix epoch unaffected by display timezone (#932)
  • 050f161 chore(release): 10.27.2 [skip ci]
  • 2634f9d fix(date): zero-pad milliseconds when formatting %N fractional seconds (#929)
  • f9a1316 fix(filters): return empty for out-of-range slice begin or negative length (#...
  • Additional commits viewable in compare view

Updates @oclif/core from 4.8.3 to 4.13.3

Release notes

Sourced from @​oclif/core's releases.

4.13.3

Bug Fixes

  • deps: bump ip-address from 10.2.0 to 10.4.0 (e13240b)

4.13.2

Bug Fixes

  • deps: bump postcss from 8.5.10 to 8.5.23 (169b09a)

4.13.1

Bug Fixes

  • deps: bump tar from 7.5.16 to 7.5.22 (bc0d2d2)

4.13.0

Features

  • expose root help formatter (644c4aa)

4.12.0

Features

  • add Args.option() for typed arg options (93139f7)

4.11.14

Bug Fixes

  • deps: bump @​sigstore/core from 3.2.0 to 3.2.1 (b45271f)

4.11.13

Bug Fixes

  • deps: bump sigstore from 4.1.0 to 4.1.1 (5d7fe54)

4.11.12

Bug Fixes

  • deps: bump @​sigstore/verify from 3.1.0 to 3.1.1 (e00068f)

4.11.11

Bug Fixes

  • deps: bump undici from 6.25.0 to 6.27.0 (319945a)

4.11.10

Bug Fixes

  • deps: bump tinyglobby from 0.2.16 to 0.2.17 (f941872)

... (truncated)

Changelog

Sourced from @​oclif/core's changelog.

4.13.3 (2026-08-04)

Bug Fixes

  • deps: bump ip-address from 10.2.0 to 10.4.0 (e13240b)

4.13.2 (2026-07-27)

Bug Fixes

  • deps: bump postcss from 8.5.10 to 8.5.23 (169b09a)

4.13.1 (2026-07-27)

Bug Fixes

  • deps: bump tar from 7.5.16 to 7.5.22 (bc0d2d2)

4.13.0 (2026-07-23)

Features

  • expose root help formatter (644c4aa)

4.12.0 (2026-07-21)

Features

  • add Args.option() for typed arg options (93139f7)

4.11.14 (2026-07-02)

Bug Fixes

... (truncated)

Commits
  • 617b3cd chore(release): 4.13.3 [skip ci]
  • b143cdc Merge pull request #1633 from oclif/dependabot-npm_and_yarn-ip-address-10.4.0
  • e13240b fix(deps): bump ip-address from 10.2.0 to 10.4.0
  • f70eb7a chore(release): 4.13.2 [skip ci]
  • fa7f31a Merge pull request #1632 from oclif/dependabot-npm_and_yarn-postcss-8.5.23
  • 169b09a fix(deps): bump postcss from 8.5.10 to 8.5.23
  • 84e84e9 chore(release): 4.13.1 [skip ci]
  • 77e3c43 Merge pull request #1631 from oclif/dependabot-npm_and_yarn-tar-7.5.22
  • bc0d2d2 fix(deps): bump tar from 7.5.16 to 7.5.22
  • 2ba8f2f chore(release): 4.13.0 [skip ci]
  • Additional commits viewable in compare view

Updates @shopify/theme-check-node from 3.27.0 to 3.28.1

Release notes

Sourced from @​shopify/theme-check-node's releases.

@​shopify/theme-check-node@​3.28.1

Patch Changes

  • Updated dependencies
  • Updated dependencies [d4ec896e]
    • @​shopify/theme-graph@​0.3.1
    • @​shopify/theme-check-common@​3.28.1
    • @​shopify/theme-check-docs-updater@​3.28.1

@​shopify/theme-check-node@​3.28.0

Patch Changes

  • Updated dependencies [6803e99c]
  • Updated dependencies [6803e99c]
    • @​shopify/liquid-html-parser@​2.10.0
    • @​shopify/theme-check-common@​3.28.0
    • @​shopify/theme-graph@​0.3.0
    • @​shopify/theme-check-docs-updater@​3.28.0
Changelog

Sourced from @​shopify/theme-check-node's changelog.

3.28.1

Patch Changes

  • Updated dependencies
  • Updated dependencies [d4ec896e]
    • @​shopify/theme-graph@​0.3.1
    • @​shopify/theme-check-common@​3.28.1
    • @​shopify/theme-check-docs-updater@​3.28.1

3.28.0

Patch Changes

  • Updated dependencies [6803e99c]
  • Updated dependencies [6803e99c]
    • @​shopify/liquid-html-parser@​2.10.0
    • @​shopify/theme-check-common@​3.28.0
    • @​shopify/theme-graph@​0.3.0
    • @​shopify/theme-check-docs-updater@​3.28.0
Commits

Updates prettier from 3.8.4 to 3.9.6

Release notes

Sourced from prettier's releases.

3.9.6

What's Changed

🔗 Changelog

3.9.5

🔗 Changelog

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

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 ws from 8.21.0 to 8.21.3

Release notes

Sourced from ws's releases.

8.21.3

Bug fixes

  • The server now correctly rejects permessage-deflate offers if the incoming client_max_window_bits parameter value is smaller than its configured clientMaxWindowBits (e97a20ea).

8.21.2

Bug fixes

  • Fixed a test for CITGM (2eb3be0b).

8.21.1

Bug fixes

  • Empty fragments are now counted toward the limit (a2f4e7c0).
  • The default values of the maxBufferedChunks and maxFragments options have been reduced (f197ac65).
Commits
  • c791e70 [dist] 8.21.3
  • e97a20e [fix] Reject offers with client_max_window_bits below config
  • 787ebf2 [dist] 8.21.2
  • b4d62eb Revert "[ci] Trust Coveralls Homebrew tap"
  • e4bb883 [security] Use GitHub PVR as main reporting channel
  • 2eb3be0 [test] Skip test on Node.js versions where it does not apply
  • ae1de54 [dist] 8.21.1
  • 8e9511b [ci] Trust Coveralls Homebrew tap
  • f197ac6 [fix] Lower default values of maxBufferedChunks and maxFragments
  • 8df8265 [ci] Update actions/checkout action to v7
  • Additional commits viewable in compare view

Updates @ast-grep/napi from 0.43.0 to 0.45.1

Release notes

Sourced from @​ast-grep/napi's releases.

0.45.1

0.45.0

0.44.1

... (truncated)

Changelog

Sourced from @​ast-grep/napi's changelog.

0.45.1

@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 19, 2026
@dependabot
dependabot Bot requested review from a team as code owners August 19, 2026 18:51
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Aug 19, 2026
@github-actions github-actions Bot added devtools-gardener Post the issue or PR to Slack for the gardener no-changelog This PR doesn't include a changeset entry. Is an internal only change not relevant to end users. labels Aug 19, 2026
Bumps the minor_versions group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `8.56.1` | `8.67.0` |
| [esbuild](https://github.com/evanw/esbuild) | `0.28.1` | `0.28.2` |
| [liquidjs](https://github.com/harttle/liquidjs) | `10.27.0` | `10.29.0` |
| [@oclif/core](https://github.com/oclif/core) | `4.8.3` | `4.13.3` |
| [@shopify/theme-check-node](https://github.com/Shopify/theme-tools/tree/HEAD/packages/theme-check-node) | `3.27.0` | `3.28.1` |
| [prettier](https://github.com/prettier/prettier) | `3.8.4` | `3.9.6` |
| [ws](https://github.com/websockets/ws) | `8.21.0` | `8.21.3` |
| [@ast-grep/napi](https://github.com/ast-grep/ast-grep) | `0.43.0` | `0.45.1` |
| [@bugsnag/js](https://github.com/bugsnag/bugsnag-js) | `8.9.0` | `8.10.0` |
| [@opentelemetry/core](https://github.com/open-telemetry/opentelemetry-js) | `2.8.0` | `2.10.0` |
| [@opentelemetry/exporter-metrics-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.57.0` | `0.221.0` |
| [semver](https://github.com/npm/node-semver) | `7.8.4` | `7.8.5` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.56.1` | `8.67.0` |
| [@vitest/eslint-plugin](https://github.com/vitest-dev/eslint-plugin-vitest) | `1.1.44` | `1.6.27` |
| [@shopify/theme-language-server-node](https://github.com/Shopify/theme-tools/tree/HEAD/packages/theme-language-server-node) | `2.21.4` | `2.22.1` |



Updates `@typescript-eslint/parser` from 8.56.1 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/parser)

Updates `esbuild` from 0.28.1 to 0.28.2
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG.md)
- [Commits](evanw/esbuild@v0.28.1...v0.28.2)

Updates `liquidjs` from 10.27.0 to 10.29.0
- [Release notes](https://github.com/harttle/liquidjs/releases)
- [Changelog](https://github.com/harttle/liquidjs/blob/master/CHANGELOG.md)
- [Commits](harttle/liquidjs@v10.27.0...v10.29.0)

Updates `@oclif/core` from 4.8.3 to 4.13.3
- [Release notes](https://github.com/oclif/core/releases)
- [Changelog](https://github.com/oclif/core/blob/main/CHANGELOG.md)
- [Commits](oclif/core@4.8.3...4.13.3)

Updates `@shopify/theme-check-node` from 3.27.0 to 3.28.1
- [Release notes](https://github.com/Shopify/theme-tools/releases)
- [Changelog](https://github.com/Shopify/theme-tools/blob/main/packages/theme-check-node/CHANGELOG.md)
- [Commits](https://github.com/Shopify/theme-tools/commits/@shopify/theme-check-node@3.28.1/packages/theme-check-node)

Updates `prettier` from 3.8.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.8.4...3.9.6)

Updates `ws` from 8.21.0 to 8.21.3
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.21.0...8.21.3)

Updates `@ast-grep/napi` from 0.43.0 to 0.45.1
- [Release notes](https://github.com/ast-grep/ast-grep/releases)
- [Changelog](https://github.com/ast-grep/ast-grep/blob/main/CHANGELOG.md)
- [Commits](ast-grep/ast-grep@0.43.0...0.45.1)

Updates `@bugsnag/js` from 8.9.0 to 8.10.0
- [Release notes](https://github.com/bugsnag/bugsnag-js/releases)
- [Changelog](https://github.com/bugsnag/bugsnag-js/blob/next/CHANGELOG.md)
- [Commits](bugsnag/bugsnag-js@v8.9.0...v8.10.0)

Updates `@opentelemetry/core` from 2.8.0 to 2.10.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@v2.8.0...v2.10.0)

Updates `@opentelemetry/exporter-metrics-otlp-http` from 0.57.0 to 0.221.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.57.0...experimental/v0.221.0)

Updates `semver` from 7.8.4 to 7.8.5
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.8.4...v7.8.5)

Updates `@typescript-eslint/eslint-plugin` from 8.56.1 to 8.67.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.67.0/packages/eslint-plugin)

Updates `@vitest/eslint-plugin` from 1.1.44 to 1.6.27
- [Release notes](https://github.com/vitest-dev/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v1.1.44...v1.6.27)

Updates `@shopify/theme-language-server-node` from 2.21.4 to 2.22.1
- [Release notes](https://github.com/Shopify/theme-tools/releases)
- [Changelog](https://github.com/Shopify/theme-tools/blob/main/packages/theme-language-server-node/CHANGELOG.md)
- [Commits](https://github.com/Shopify/theme-tools/commits/@shopify/theme-language-server-node@2.22.1/packages/theme-language-server-node)

---
updated-dependencies:
- dependency-name: "@ast-grep/napi"
  dependency-version: 0.45.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@bugsnag/js"
  dependency-version: 8.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@oclif/core"
  dependency-version: 4.13.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@opentelemetry/core"
  dependency-version: 2.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@opentelemetry/exporter-metrics-otlp-http"
  dependency-version: 0.221.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@shopify/theme-check-node"
  dependency-version: 3.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@shopify/theme-language-server-node"
  dependency-version: 2.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.67.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@vitest/eslint-plugin"
  dependency-version: 1.6.27
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: esbuild
  dependency-version: 0.28.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: liquidjs
  dependency-version: 10.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: prettier
  dependency-version: 3.9.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: semver
  dependency-version: 7.8.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: ws
  dependency-version: 8.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor_versions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot-npm_and_yarn-minor_versions-8d3223c388 branch from 330b6e8 to 1f2b2ec Compare August 19, 2026 19:08
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 devtools-gardener Post the issue or PR to Slack for the gardener no-changelog This PR doesn't include a changeset entry. Is an internal only change not relevant to end users.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants