Skip to content

chore: Bump the npm-minor group across 1 directory with 8 updates - #24325

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/web/npm-minor-d6f638f78a
Open

chore: Bump the npm-minor group across 1 directory with 8 updates#24325
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/npm_and_yarn/web/npm-minor-d6f638f78a

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the npm-minor group with 8 updates in the /web directory:

Package From To
@wdio/browserstack-service 9.30.1 9.32.1
eslint 10.7.0 10.8.0
eslint-plugin-jsdoc 63.2.0 63.3.2
globals 17.7.0 17.8.0
webpack 5.108.4 5.109.2
webpack-cli 7.2.1 7.2.2
postcss 8.5.22 8.5.24
postcss-nesting 14.0.0 14.0.1

Updates @wdio/browserstack-service from 9.30.1 to 9.32.1

Release notes

Sourced from @​wdio/browserstack-service's releases.

@​wdio/browserstack-service@​9.32.1

Patch Changes

  • aefd604: - Fixed a statically-skipped test (it.skip) being left orphaned as "in progress" on the Test Observability dashboard in the CLI flow. Such tests are reported from the un-awaited onTestSkip reporter hook, so their TestRunFinished event could still be pending when the worker tore down; the after() hook now drains these skip reports before the session closes so the test is correctly reported as skipped.

  • 1a973e9: - fix: Accessibility command wrapping.

  • a24973b: - Fixed Test Observability not being fully disabled for a run when the build could not be started (e.g. an unsupported framework) — such sessions no longer emit observability events or get linked to a non-existent build.

  • 8539e5f: fix(a11y): restore per-command auto-scanning for App Automate accessibility sessions

    App Automate accessibility sessions were skipped by the per-command overwriteCommand wrapping in onBeforeExecute (guarded to !isAppAccessibility), so app a11y scans only fired via an explicit performScan() or the end-of-test lifecycle scan — per-command auto-scanning that web sessions get was effectively disabled for app. Command wrapping now applies to app sessions too, with each overwriteCommand call individually guarded so a command the appium driver does not register is skipped (logged at debug) instead of aborting onBeforeExecute. Commands appium does register (click, setValue, ...) now auto-scan on App Automate, matching the web flow.

@​wdio/browserstack-service@​9.32.0

Minor Changes

  • 9b80e47: Add a skipAppOverride service option for App Automate (Appium) runs. With skipAppOverride: true the service classifies the session as App Automate even when no app option is set, does not upload an app, and does not inject an appium:app capability — the user supplies the app reference themselves (e.g. a pre-uploaded bs:// hash as a driver capability or via BROWSERSTACK_APP_ID). Setting it together with an app option logs a conflict warning and ignores the app option; skipAppOverride: false with no app fails fast with a configuration error before any session starts. Unset keeps existing behaviour unchanged.

@​wdio/browserstack-service@​9.31.0

Minor Changes

  • bebf0f1: - App Accessibility scans triggered inside test hooks (before/after, beforeEach/afterEach) are now correctly attributed to the wrapping test instead of being dropped.

  • 517d64d: - Custom tags (browser.setCustomTags) set inside Mocha beforeEach / afterEach hooks now reliably land on the intended test's custom metadata, unioning and deduping with tags set in the test body (parity with Java @Before / @After).

  • 05fe529: Custom tags (browser.setCustomTags) set inside Mocha beforeEach / afterEach hooks now reliably land on the intended test's custom metadata. WDIO's Mocha runner fires user hooks outside the SDK's per-test tracking span — beforeEach runs before the test instance is tracked and afterEach runs after it is finished — so tags set in those hooks previously either attached to the wrong test or were dropped from the payload.

    Tags set in beforeEach are now buffered and flushed onto the test at its start, and the test-finished event is deferred past the afterEach window so late tags still make the payload. Values set across beforeEach, the test body, and afterEach union and dedupe onto the test (parity with Java @Before / @After).

@​wdio/browserstack-service@​9.30.2

Patch Changes

  • a43e534: - Fixed skipped tests (it.skip, this.skip() in before/beforeEach hooks) and suites aborted by a failed before hook not being reported to Test Observability when using the CLI.
    • Fixed Automate sessions from skipped/aborted spec files not being linked to the Test Observability build.
Changelog

Sourced from @​wdio/browserstack-service's changelog.

9.32.1

Patch Changes

  • aefd604: - Fixed a statically-skipped test (it.skip) being left orphaned as "in progress" on the Test Observability dashboard in the CLI flow. Such tests are reported from the un-awaited onTestSkip reporter hook, so their TestRunFinished event could still be pending when the worker tore down; the after() hook now drains these skip reports before the session closes so the test is correctly reported as skipped.

  • 1a973e9: - fix: Accessibility command wrapping.

  • a24973b: - Fixed Test Observability not being fully disabled for a run when the build could not be started (e.g. an unsupported framework) — such sessions no longer emit observability events or get linked to a non-existent build.

  • 8539e5f: fix(a11y): restore per-command auto-scanning for App Automate accessibility sessions

    App Automate accessibility sessions were skipped by the per-command overwriteCommand wrapping in onBeforeExecute (guarded to !isAppAccessibility), so app a11y scans only fired via an explicit performScan() or the end-of-test lifecycle scan — per-command auto-scanning that web sessions get was effectively disabled for app. Command wrapping now applies to app sessions too, with each overwriteCommand call individually guarded so a command the appium driver does not register is skipped (logged at debug) instead of aborting onBeforeExecute. Commands appium does register (click, setValue, ...) now auto-scan on App Automate, matching the web flow.

9.32.0

Minor Changes

  • 9b80e47: Add a skipAppOverride service option for App Automate (Appium) runs. With skipAppOverride: true the service classifies the session as App Automate even when no app option is set, does not upload an app, and does not inject an appium:app capability — the user supplies the app reference themselves (e.g. a pre-uploaded bs:// hash as a driver capability or via BROWSERSTACK_APP_ID). Setting it together with an app option logs a conflict warning and ignores the app option; skipAppOverride: false with no app fails fast with a configuration error before any session starts. Unset keeps existing behaviour unchanged.

9.31.0

Minor Changes

  • bebf0f1: - App Accessibility scans triggered inside test hooks (before/after, beforeEach/afterEach) are now correctly attributed to the wrapping test instead of being dropped.

  • 517d64d: - Custom tags (browser.setCustomTags) set inside Mocha beforeEach / afterEach hooks now reliably land on the intended test's custom metadata, unioning and deduping with tags set in the test body (parity with Java @Before / @After).

  • 05fe529: Custom tags (browser.setCustomTags) set inside Mocha beforeEach / afterEach hooks now reliably land on the intended test's custom metadata. WDIO's Mocha runner fires user hooks outside the SDK's per-test tracking span — beforeEach runs before the test instance is tracked and afterEach runs after it is finished — so tags set in those hooks previously either attached to the wrong test or were dropped from the payload.

    Tags set in beforeEach are now buffered and flushed onto the test at its start, and the test-finished event is deferred past the afterEach window so late tags still make the payload. Values set across beforeEach, the test body, and afterEach union and dedupe onto the test (parity with Java @Before / @After).

9.30.2

Patch Changes

  • a43e534: - Fixed skipped tests (it.skip, this.skip() in before/beforeEach hooks) and suites aborted by a failed before hook not being reported to Test Observability when using the CLI.
    • Fixed Automate sessions from skipped/aborted spec files not being linked to the Test Observability build.
Commits
  • d560255 Version Packages
  • 9600223 Merge branch 'main' into fix/observability-disable-on-blocked-buildstart
  • a7784d0 Merge branch 'main' into APPA11Y-5542-restore-app-command-wrapping
  • 1fe87a0 Version Packages
  • 47e60df Merge branch 'main' into feat/skip-app-override
  • aefd604 fix(cli): drain skip reports in after() so static it.skip terminalizes
  • 1684057 Merge branch 'main' into fix/observability-disable-on-blocked-buildstart
  • cd4a198 Version Packages
  • a3ee5ba Merge branch 'main' into test_level_custom_metadata
  • eb88df0 Merge branch 'main' into test_level_custom_metadata
  • Additional commits viewable in compare view

Updates eslint from 10.7.0 to 10.8.0

Release notes

Sourced from eslint's releases.

v10.8.0

Features

  • 2fee9bb feat: export ConfigObject from eslint/config (#21082) (sethamus)

Bug Fixes

  • 6b8d2f7 fix: escape reserved characters in rule id in html formatter (#21129) (Francesco Trotta)
  • 9091071 fix: prevent no-unreachable-loop crash when all loop types are ignored (#21116) (Pixel)
  • e23fafe fix: prefer-object-spread add semicolon when adding parenthesis (#21081) (synthex-byte)
  • 20b5ad0 fix: quadratic-time regex in prefer-template (#21096) (Milos Djermanovic)
  • 8b6f6c0 fix: apply ignore configs to computed methods in class-methods-use-this (#21094) (Pixel)
  • b2c608c fix: NewExpression with parenthesized callee in preserve-caught-error (#21083) (Francesco Trotta)

Documentation

  • 6ddf858 docs: fix broken Specify Parser Options anchor link (#21106) (Minsu)
  • 784dfbe docs: Clarify no-eq-null description (#21120) (Park Harin)
  • 7ec733a docs: Fix typos and grammar in glossary (#21095) (Marry (Subin Yang))
  • 92bb13f docs: replace quake link (#21108) (Jung Hyeon Jun)
  • 68eb4a5 docs: fix broken Specify Globals anchor links in rule pages (#21103) (Minsu)
  • d28f697 docs: replace Code Climate CLI links with Qlty CLI links (#21099) (Jung Hyeon Jun)
  • eccc68d docs: correct --suppressions-location option description (#21093) (Ga eun Lee)
  • c5963f7 docs: Update README (GitHub Actions Bot)

Chores

  • 4fbf46d test: pin webpack version to 5.108.4 (#21137) (Francesco Trotta)
  • 2d063e2 chore: update HTTP URLs to HTTPS in JSDoc and comments (#21101) (Bo Hyun Kim)
  • eccbe7b test: add error locations to no-class-assign (#21123) (devoil)
  • e7d1e43 ci: bump actions/setup-go from 6 to 7 (#21118) (dependabot[bot])
  • e9d66d0 ci: bump actions/setup-node from 6 to 7 (#21119) (dependabot[bot])
  • ee225b6 test: Add error location details to no-eq-null rule (#21117) (Park Harin)
  • 044a627 chore: update minimatch to ^10.2.5 (#21107) (김채영)
  • fb09aa8 chore: update ecosystem plugins (#21115) (ESLint Bot)
  • 5abd878 test: add error locations to no-proto (#21114) (Gihyeon Jeong / 정기현)
  • 9715887 test: Add error location details to no-div-regex (#21110) (Park Harin)
  • a746ec6 test: add error locations to no-new-wrappers (#21109) (Gihyeon Jeong / 정기현)
  • 8dde645 test: add error locations to no-ex-assign (#21102) (devoil)
  • 13ab0ec test: add error locations to no-label-var (#21098) (Gihyeon Jeong / 정기현)
  • a99906f test: Add error location details to no-delete-var rule (#21105) (Park Harin)
  • c47e8dc chore: add missing backticks to languages/js/index.js (#21104) (beeen)
  • 0174428 chore: add missing backticks to translate-cli-options.js (#21097) (dongkyu lee)
  • 3d36589 chore: add missing backticks to serialization.js (#21091) (이규환)
  • dcc9312 test: add error locations to eqeqeq (#21090) (Ga eun Lee)
  • 2710b18 ci: Add explicit permissions to rebuild-docs-sites workflow (#21089) (Marry (Subin Yang))
  • 5d2f866 chore: update dependency prettier to v3.9.5 (#21086) (renovate[bot])
  • d584e31 chore: fix failing ecosystem test for eslint-plugin-unicorn (#21084) (Francesco Trotta)
  • bf3eda0 chore: update ecosystem plugins (#21079) (ESLint Bot)
Commits

Updates eslint-plugin-jsdoc from 63.2.0 to 63.3.2

Release notes

Sourced from eslint-plugin-jsdoc's releases.

v63.3.2

63.3.2 (2026-07-28)

Bug Fixes

  • require-example: support fixer with 1-line JSDoc blocks; fixes #1736 (36f8e9e)

v63.3.1

63.3.1 (2026-07-27)

Bug Fixes

  • normalize-see-links: minimally escape link targets instead of encodeURI (#1735) (ae27cd2)

v63.3.0

63.3.0 (2026-07-26)

Features

  • normalize-see-links: autofix delimiter-colliding labels via escape round-trip (#1734) (cfe9cdb)

v63.2.2

63.2.2 (2026-07-24)

Bug Fixes

v63.2.1

63.2.1 (2026-07-23)

Bug Fixes

  • update jsdoccomment, spdx-expression-parse, devDeps.; fixes #1727 (#1728) (9fd2f28)
Commits
  • 7d5df2e chore: update devDeps.
  • 36f8e9e fix(require-example): support fixer with 1-line JSDoc blocks; fixes #1736
  • 1dbf404 chore: update jsdoccomment and devDeps.
  • ae27cd2 fix(normalize-see-links): minimally escape link targets instead of encodeURI ...
  • cfe9cdb feat(normalize-see-links): autofix delimiter-colliding labels via escape roun...
  • e62e746 docs: explain usage with defineConfig(); fixes #1729 (#1731)
  • 3663803 fix: update jsdoccomment and devDeps. (#1730)
  • 9fd2f28 fix: update jsdoccomment, spdx-expression-parse, devDeps.; fixes #1727 (#1728)
  • See full diff in compare view

Updates globals from 17.7.0 to 17.8.0

Release notes

Sourced from globals's releases.

v17.8.0

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

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

Commits

Updates webpack from 5.108.4 to 5.109.2

Release notes

Sourced from webpack's releases.

v5.109.2

Patch Changes

  • Resolve aliases pointing at a package directory whose name ends with .js again. (by @​alexander-akait in #21542)

  • Name CSS sources in source maps by their resource path, without the css prefix. (by @​bjohansebas in #21536)

  • Delete no longer referenced files from the filesystem cache directory after storing the cache, age them by recorded time so restored caches are cleaned too, and collect every fully expired pack in one store instead of one per build. (by @​bjohansebas in #21528)

  • Report "universal" as the loader context target for the universal target. (by @​alexander-akait in #21540)

  • Skip require().prop in dead branches gated by inlined imported constants. (by @​hai-x in #21517)

  • Annotate configuration options and public hooks in the generated types with the @since JSDoc tag. (by @​bjohansebas in #21473)

v5.109.1

Patch Changes

  • Fix stray semicolon emitted before an imported call following a parenthesized sequence element. (by @​alexander-akait in #21533)

  • Make require(esm) module.exports re-export analysis independent of module processing order. (by @​alexander-akait in #21521)

  • Ignore ERR_SERVER_NOT_RUNNING on lazy-compilation backend dispose so compiler.close() succeeds on Bun. (by @​alexander-akait in #21521)

  • Name the failing key when DefinePlugin fails to evaluate a typeof value. (by @​alexander-akait in #21503)

  • Improve Deno compatibility: guard setNoDelay and force-close connections on lazy-compilation backend dispose, and return a real ArrayBuffer from the Node async/sync wasm loader so WebAssembly.instantiate accepts it. (by @​alexander-akait in #21524)

  • Speed up the HTML parser and cut its peak memory: module-scope helpers/state and tokenizer callbacks, plus exact AST column pre-sizing. (by @​alexander-akait in #21492)

  • Track CommonJS build dependencies by parsing sources when require.cache children are unavailable (e.g. Bun). (by @​alexander-akait in #21531)

  • Cook common string-literal escapes on the JS parser fast path and own the tokenizer's cold-path readers. (by @​alexander-akait in #21500)

  • Build the CSS parseA* AST on the SoA store instead of node classes, cutting parse memory and time. (by @​alexander-akait in #21498)

  • Speed up and cut memory of the experimental CSS and HTML parsers: drop two derivable AST node columns, and scan long string, url, comment, and plaintext token bodies natively. (by @​alexander-akait in #21504)

  • Speed up non-modules CSS parsing: skip redundant token re-reads, drop selector-prelude tokens without materializing nodes, allocate rule preludes lazily, and fast-path empty list seals. (by @​alexander-akait in #21511)

  • Speed up stats generation and cut its peak memory: reuse cached sort comparators instead of thrashing the comparator caches on every sort, and drop redundant module-graph lookups and allocations in the extractors. (by @​alexander-akait in #21506)

  • Speed up CSS parsing: byte-range function-name checks, indexed sibling lookahead. (by @​bjohansebas in #21520)

  • Reduce allocations and redundant work across the code-generation, module-concatenation, exports/usage-analysis, hashing, and chunk-splitting hot paths. (by @​alexander-akait in #21516)

  • Enable the Node.js compile cache in the webpack CLI entry point. (by @​bjohansebas in #21523)

  • Encode the persistent cache with V8's value serializer. (by @​avivkeller in #21514)

... (truncated)

Changelog

Sourced from webpack's changelog.

5.109.2

Patch Changes

  • Resolve aliases pointing at a package directory whose name ends with .js again. (by @​alexander-akait in #21542)

  • Name CSS sources in source maps by their resource path, without the css prefix. (by @​bjohansebas in #21536)

  • Delete no longer referenced files from the filesystem cache directory after storing the cache, age them by recorded time so restored caches are cleaned too, and collect every fully expired pack in one store instead of one per build. (by @​bjohansebas in #21528)

  • Report "universal" as the loader context target for the universal target. (by @​alexander-akait in #21540)

  • Skip require().prop in dead branches gated by inlined imported constants. (by @​hai-x in #21517)

  • Annotate configuration options and public hooks in the generated types with the @since JSDoc tag. (by @​bjohansebas in #21473)

5.109.1

Patch Changes

  • Fix stray semicolon emitted before an imported call following a parenthesized sequence element. (by @​alexander-akait in #21533)

  • Make require(esm) module.exports re-export analysis independent of module processing order. (by @​alexander-akait in #21521)

  • Ignore ERR_SERVER_NOT_RUNNING on lazy-compilation backend dispose so compiler.close() succeeds on Bun. (by @​alexander-akait in #21521)

  • Name the failing key when DefinePlugin fails to evaluate a typeof value. (by @​alexander-akait in #21503)

  • Improve Deno compatibility: guard setNoDelay and force-close connections on lazy-compilation backend dispose, and return a real ArrayBuffer from the Node async/sync wasm loader so WebAssembly.instantiate accepts it. (by @​alexander-akait in #21524)

  • Speed up the HTML parser and cut its peak memory: module-scope helpers/state and tokenizer callbacks, plus exact AST column pre-sizing. (by @​alexander-akait in #21492)

  • Track CommonJS build dependencies by parsing sources when require.cache children are unavailable (e.g. Bun). (by @​alexander-akait in #21531)

  • Cook common string-literal escapes on the JS parser fast path and own the tokenizer's cold-path readers. (by @​alexander-akait in #21500)

  • Build the CSS parseA* AST on the SoA store instead of node classes, cutting parse memory and time. (by @​alexander-akait in #21498)

  • Speed up and cut memory of the experimental CSS and HTML parsers: drop two derivable AST node columns, and scan long string, url, comment, and plaintext token bodies natively. (by @​alexander-akait in #21504)

  • Speed up non-modules CSS parsing: skip redundant token re-reads, drop selector-prelude tokens without materializing nodes, allocate rule preludes lazily, and fast-path empty list seals. (by @​alexander-akait in #21511)

  • Speed up stats generation and cut its peak memory: reuse cached sort comparators instead of thrashing the comparator caches on every sort, and drop redundant module-graph lookups and allocations in the extractors. (by @​alexander-akait in #21506)

  • Speed up CSS parsing: byte-range function-name checks, indexed sibling lookahead. (by @​bjohansebas in #21520)

  • Reduce allocations and redundant work across the code-generation, module-concatenation, exports/usage-analysis, hashing, and chunk-splitting hot paths. (by @​alexander-akait in #21516)

  • Enable the Node.js compile cache in the webpack CLI entry point. (by @​bjohansebas in #21523)

... (truncated)

Commits
  • 6a24bd6 chore(release): new release (#21534)
  • d1b5b6d fix: resolve aliases pointing at a package directory ending in .js (#21542)
  • 9cdcc57 fix(target): report "universal" as the loader target (#21540)
  • 774e7e4 feat: annotate schema options with added keywords (#21473)
  • ff07bdc fix(css): name CSS sources in source maps by their resource path (#21536)
  • d56d82d fix(cache): reclaim stale filesystem cache files reliably (#21539)
  • ae67e2a chore(readme): add codspeed (#21497)
  • 964bbfa fix: delete no longer referenced files from the filesystem cache directory (#...
  • 075d0cd feat: skip require().prop in dead branches (#21517)
  • ec39088 chore(release): new release (#21493)
  • Additional commits viewable in compare view

Updates webpack-cli from 7.2.1 to 7.2.2

Release notes

Sourced from webpack-cli's releases.

webpack-cli@7.2.2

Patch Changes

  • perf: enable the Node.js compile cache (module.enableCompileCache, available on Node.js >= 22.8.0) to speed up CLI startup (by @​bjohansebas in #4818)
Changelog

Sourced from webpack-cli's changelog.

7.2.2

Patch Changes

  • perf: enable the Node.js compile cache (module.enableCompileCache, available on Node.js >= 22.8.0) to speed up CLI startup (by @​bjohansebas in #4818)
Commits
  • 191fa9f chore(release): new release (#4820)
  • 1082235 chore(deps-dev): bump js-yaml from 5.2.1 to 5.2.2 (#4821)
  • e36ae82 chore: add publish workflow and script for pkg.pr.new integration (#4819)
  • b0a2024 perf: enable the Node.js compile cache (#4818)
  • 53f6d72 chore(deps): bump actions/checkout in the dependencies group (#4816)
  • 8856346 chore: add allowscripts to work with npm 12 (#4811)
  • 0b0f1ee chore(deps): bump fast-uri from 3.1.2 to 3.1.4 (#4815)
  • d60a777 chore(deps-dev): bump postcss from 8.5.10 to 8.5.22 (#4814)
  • 8c1719a chore(deps): bump shell-quote from 1.8.4 to 1.10.0 (#4813)
  • 8c2473c chore(deps): bump immutable from 5.1.5 to 5.1.9 (#4812)
  • Additional commits viewable in compare view

Updates postcss from 8.5.22 to 8.5.24

Release notes

Sourced from postcss's releases.

8.5.24

  • Preserve the BOM after the processing (by @​hdimer).

8.5.23

  • Do not load source map without opts.from for security reasons.
Changelog

Sourced from postcss's changelog.

8.5.24

  • Preserve the BOM after the processing (by @​hdimer).

8.5.23

  • Do not load source map without opts.from for security reasons.
Commits

Updates postcss-nesting from 14.0.0 to 14.0.1

Changelog

Sourced from postcss-nesting's changelog.

14.0.1

July 23, 2026

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
eslint [>= 9.26.a, < 9.27]

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

Bumps the npm-minor group with 8 updates in the /web directory:

| Package | From | To |
| --- | --- | --- |
| [@wdio/browserstack-service](https://github.com/browserstack/wdio-browserstack-service/tree/HEAD/packages/browserstack-service) | `9.30.1` | `9.32.1` |
| [eslint](https://github.com/eslint/eslint) | `10.7.0` | `10.8.0` |
| [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) | `63.2.0` | `63.3.2` |
| [globals](https://github.com/sindresorhus/globals) | `17.7.0` | `17.8.0` |
| [webpack](https://github.com/webpack/webpack) | `5.108.4` | `5.109.2` |
| [webpack-cli](https://github.com/webpack/webpack-cli) | `7.2.1` | `7.2.2` |
| [postcss](https://github.com/postcss/postcss) | `8.5.22` | `8.5.24` |
| [postcss-nesting](https://github.com/csstools/postcss-plugins/tree/HEAD/plugins/postcss-nesting) | `14.0.0` | `14.0.1` |



Updates `@wdio/browserstack-service` from 9.30.1 to 9.32.1
- [Release notes](https://github.com/browserstack/wdio-browserstack-service/releases)
- [Changelog](https://github.com/browserstack/wdio-browserstack-service/blob/main/packages/browserstack-service/CHANGELOG.md)
- [Commits](https://github.com/browserstack/wdio-browserstack-service/commits/@wdio/browserstack-service@9.32.1/packages/browserstack-service)

Updates `eslint` from 10.7.0 to 10.8.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v10.7.0...v10.8.0)

Updates `eslint-plugin-jsdoc` from 63.2.0 to 63.3.2
- [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases)
- [Commits](gajus/eslint-plugin-jsdoc@v63.2.0...v63.3.2)

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

Updates `webpack` from 5.108.4 to 5.109.2
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.108.4...v5.109.2)

Updates `webpack-cli` from 7.2.1 to 7.2.2
- [Release notes](https://github.com/webpack/webpack-cli/releases)
- [Changelog](https://github.com/webpack/webpack-cli/blob/main/CHANGELOG.md)
- [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@7.2.1...webpack-cli@7.2.2)

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

Updates `postcss-nesting` from 14.0.0 to 14.0.1
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-nesting/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-nesting)

---
updated-dependencies:
- dependency-name: "@wdio/browserstack-service"
  dependency-version: 9.32.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: eslint
  dependency-version: 10.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: eslint-plugin-jsdoc
  dependency-version: 63.3.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: globals
  dependency-version: 17.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: webpack
  dependency-version: 5.109.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor
- dependency-name: webpack-cli
  dependency-version: 7.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor
- dependency-name: postcss
  dependency-version: 8.5.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor
- dependency-name: postcss-nesting
  dependency-version: 14.0.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added A-deps Area: Dependencies T-chore Type: Chore (like updating a dependency, it's gotta be done) labels Jul 28, 2026
@evilpie

evilpie commented Jul 28, 2026

Copy link
Copy Markdown
Collaborator

Claude thinks this fails because Webpack 5.109 now defaults to experiments.typescript: "auto" 1. It suggests setting experiments.typescript: false in web/packages/selfhosted/webpack.config.js.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-deps Area: Dependencies T-chore Type: Chore (like updating a dependency, it's gotta be done)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant