Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

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

Package From To
@comunica/utils-bindings-factory 4.4.0 4.5.0
@comunica/query-sparql 4.4.1 4.5.0
@playwright/test 1.56.1 1.57.0
@sveltejs/kit 2.48.4 2.49.0
@testing-library/svelte 5.2.8 5.2.9
@ukic/web-components 3.14.0 3.15.0
autoprefixer 10.4.21 10.4.22
jsdom 27.1.0 27.2.0
prettier 3.6.2 3.7.3
svelte 5.43.5 5.45.2
svelte-check 4.3.3 4.3.4
typescript-eslint 8.46.3 8.48.0
vite 7.2.2 7.2.4

Updates @comunica/utils-bindings-factory from 4.4.0 to 4.5.0

Changelog

Sourced from @​comunica/utils-bindings-factory's changelog.

v4.5.0 - 2025-11-18

Added

Fixed

v4.4.1 - 2025-09-25

Fixed

Commits

Updates @comunica/query-sparql from 4.4.1 to 4.5.0

Changelog

Sourced from @​comunica/query-sparql's changelog.

v4.5.0 - 2025-11-18

Added

Fixed

Commits

Updates @comunica/types from 4.4.0 to 4.5.0

Changelog

Sourced from @​comunica/types's changelog.

v4.5.0 - 2025-11-18

Added

Fixed

v4.4.1 - 2025-09-25

Fixed

Commits
  • 2bcd98c Bump to release version v4.5.0
  • 45cb52f Fix FragmentSelectorShape not matching on top-level disjunctions
  • 7e215ee Fix outer GRAPH ?g being considered in MINUS variable disjointness
  • See full diff in compare view

Updates @playwright/test from 1.56.1 to 1.57.0

Release notes

Sourced from @​playwright/test's releases.

v1.57.0

Speedboard

In HTML reporter, there's a new tab we call "Speedboard":

It shows you all your executed tests sorted by slowness, and can help you understand where your test suite is taking longer than expected. Take a look at yours - maybe you'll find some tests that are spending a longer time waiting than they should!

Chrome for Testing

Starting with this release, Playwright switches from Chromium, to using Chrome for Testing builds. Both headed and headless browsers are subject to this. Your tests should still be passing after upgrading to Playwright 1.57.

We're expecting no functional changes to come from this switch. The biggest change is the new icon and title in your toolbar.

If you still see an unexpected behaviour change, please file an issue.

On Arm64 Linux, Playwright continues to use Chromium.

Waiting for webserver output

testConfig.webServer added a wait field. Pass a regular expression, and Playwright will wait until the webserver logs match it.

import { defineConfig } from '@playwright/test';
export default defineConfig({
webServer: {
command: 'npm run start',
wait: {
stdout: '/Listening on port (?<my_server_port>\d+)/'
},
},
});

If you include a named capture group into the expression, then Playwright will provide the capture group contents via environment variables:

import { test, expect } from '@playwright/test';
test.use({ baseUrl: http://localhost:${process.env.MY_SERVER_PORT ?? 3000} });
test('homepage', async ({ page }) => {
await page.goto('/');
});
</tr></table>

... (truncated)

Commits

Updates @sveltejs/kit from 2.48.4 to 2.49.0

Release notes

Sourced from @​sveltejs/kit's releases.

@​sveltejs/kit@​2.49.0

Minor Changes

  • feat: stream file uploads inside form remote functions allowing form data to be accessed before large files finish uploading (#14775)

@​sveltejs/kit@​2.48.8

Patch Changes

  • breaking: invalid now must be imported from @sveltejs/kit (#14768)

  • breaking: remove submitter option from experimental form validate() method, always provide default submitter (#14762)

@​sveltejs/kit@​2.48.7

Patch Changes

  • fix: allow multiple server-timing headers (#14700)

  • fix: allow access to root-level issues in schema-less forms (#14893)

  • fix: allow hosting hash-based apps from non-index.html files (#14825)

@​sveltejs/kit@​2.48.6

Patch Changes

  • fix: clear issues upon passing validation (#14683)

  • fix: don't use fork of unrelated route (#14947)

  • fix: prevent type errors when optional @opentelemetry/api dependency isn't installed (#14949)

  • fix: preserve this when invoking standard validator (#14943)

  • fix: treat client/universal hooks as entrypoints for illegal server import detection (#14876)

  • fix: correct query .set and .refresh behavior in commands (#14877)

  • fix: improved the accuracy of the types of the output of field.as('...') (#14908)

@​sveltejs/kit@​2.48.5

Patch Changes

... (truncated)

Changelog

Sourced from @​sveltejs/kit's changelog.

2.49.0

Minor Changes

  • feat: stream file uploads inside form remote functions allowing form data to be accessed before large files finish uploading (#14775)

2.48.8

Patch Changes

  • breaking: invalid now must be imported from @sveltejs/kit (#14768)

  • breaking: remove submitter option from experimental form validate() method, always provide default submitter (#14762)

2.48.7

Patch Changes

  • fix: allow multiple server-timing headers (#14700)

  • fix: allow access to root-level issues in schema-less forms (#14893)

  • fix: allow hosting hash-based apps from non-index.html files (#14825)

2.48.6

Patch Changes

  • fix: clear issues upon passing validation (#14683)

  • fix: don't use fork of unrelated route (#14947)

  • fix: prevent type errors when optional @opentelemetry/api dependency isn't installed (#14949)

  • fix: preserve this when invoking standard validator (#14943)

  • fix: treat client/universal hooks as entrypoints for illegal server import detection (#14876)

  • fix: correct query .set and .refresh behavior in commands (#14877)

  • fix: improved the accuracy of the types of the output of field.as('...') (#14908)

... (truncated)

Commits

Updates @testing-library/svelte from 5.2.8 to 5.2.9

Release notes

Sourced from @​testing-library/svelte's releases.

v5.2.9

5.2.9 (2025-11-12)

Bug Fixes

  • svelte5: do not deeply proxify passed-in props (#456) (734e290), closes #455
Commits

Updates @ukic/web-components from 3.14.0 to 3.15.0

Changelog

Sourced from @​ukic/web-components's changelog.

3.15.0 (2025-11-26)

Bug Fixes

  • web-components: fix aria-describedby on text field not matching visual order of info (282503d)
  • web-components: fix to label and helper text colour in ic-hero (a1da960)

Features

  • web-components: add custom CSS tokens and z-index token for new calendar component (56c2ffd), closes #3357
  • web-components: add Internationalisation storybooks to web-components (03d4230)
  • web-components: add label slot to ic-checkbox (ed5e1ac)
Commits
  • 055d3ec chore(release): [ci skip] components publish
  • 45ba0e3 build(web-components): audit:fix on web-components
  • 072fed4 Merge pull request #3935 from mi6/calendar-second-attempt
  • b07e3a7 Merge pull request #4087 from mi6/4046-add-i18n-examples
  • 03d4230 feat(web-components): add Internationalisation storybooks to web-components
  • ed5e1ac feat(web-components): add label slot to ic-checkbox
  • 56c2ffd feat(web-components): add custom CSS tokens and z-index token for new calenda...
  • b0984d6 Merge pull request #4086 from mi6/3950-internal-issue-3106---helper-text-with...
  • a1da960 fix(web-components): fix to label and helper text colour in ic-hero
  • 282503d fix(web-components): fix aria-describedby on text field not matching visual o...
  • See full diff in compare view

Updates autoprefixer from 10.4.21 to 10.4.22

Release notes

Sourced from autoprefixer's releases.

10.4.22

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.
Changelog

Sourced from autoprefixer's changelog.

10.4.22

  • Fixed stretch prefixes on new Can I Use database.
  • Updated fraction.js.
Commits

Updates jsdom from 27.1.0 to 27.2.0

Release notes

Sourced from jsdom's releases.

Version 27.2.0

  • Added CSSGroupingRule, CSSNestedDeclarations, CSSConditionRule, CSSContainerRule, CSSScopeRule, CSSSupportsRule, CSSLayerBlockRule, and CSSLayerStatementRule to jsdom Windows. (acemir)
  • Improved CSS parsing and CSSOM object APIs via updates to @acemir/cssom. (acemir)
  • Fixed @import-ed stylesheets to be properly exposed to CSSOM, and not to overwrite the sheet created from the <link> or <style> element. (acemir)
Changelog

Sourced from jsdom's changelog.

27.2.0

  • Added CSSGroupingRule, CSSNestedDeclarations, CSSConditionRule, CSSContainerRule, CSSScopeRule, CSSSupportsRule, CSSLayerBlockRule, and CSSLayerStatementRule to jsdom Windows. (acemir)
  • Improved CSS parsing and CSSOM object APIs via updates to @acemir/cssom. (acemir)
  • Fixed @import-ed stylesheets to be properly exposed to CSSOM, and not to overwrite the sheet created from the <link> or <style> element. (acemir)
Commits
  • b0805a9 Version 27.2.0
  • 3e07e1e Update dependencies and dev dependencies
  • 931aabe Various CSSOM improvements
  • 70741da Add failing tests for border shorthand property parsing
  • b282400 Update @​acemir/cssom dependency
  • See full diff in compare view

Updates prettier from 3.6.2 to 3.7.3

Release notes

Sourced from prettier's releases.

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.7.3

diff

API: Fix prettier.getFileInfo() change that breaks VSCode extension (#18375 by @​fisker)

An internal refactor accidentally broke the VSCode extension plugin loading.

3.7.2

diff

JavaScript: Fix string print when switching quotes (#18351 by @​fisker)

// Input
console.log("A descriptor\\'s .kind must be \"method\" or \"field\".")
// Prettier 3.7.1
console.log('A descriptor\'s .kind must be "method" or "field".');
// Prettier 3.7.2
console.log('A descriptor\'s .kind must be "method" or "field".');

JavaScript: Preserve quote for embedded HTML attribute values (#18352 by @​kovsu)

// Input
const html = /* HTML */ ` <div class="${styles.banner}"></div> `;
// Prettier 3.7.1
const html = /* HTML */ &lt;div class=${styles.banner}&gt;&lt;/div&gt;;
// Prettier 3.7.2
const html = /* HTML */ &lt;div class=&quot;${styles.banner}&quot;&gt;&lt;/div&gt;;

TypeScript: Fix comment in empty type literal (#18364 by @​fisker)

// Input
export type XXX = {
  // tbd
};
// Prettier 3.7.1
</tr></table>

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


Updates svelte from 5.43.5 to 5.45.2

Release notes

Sourced from svelte's releases.

[email protected]

Patch Changes

  • fix: array destructuring after await (#17254)

  • fix: throw on invalid {@tag}s (#17256)

[email protected]

Patch Changes

  • fix: link offscreen items and last effect in each block correctly (#17240)

[email protected]

Minor Changes

  • feat: add print(...) function (#16188)

[email protected]

Patch Changes

  • fix: await blockers before initialising const (#17226)

  • fix: link offscreen items and last effect in each block correctly (#17244)

  • fix: generate correct code for simple destructurings (#17237)

  • fix: ensure each block animations don't mess with transitions (#17238)

[email protected]

Minor Changes

  • feat: hydratable API (#17154)

[email protected]

Patch Changes

  • fix: don't execute attachments and attribute effects eagerly (#17208)

  • chore: lift "flushSync cannot be called in effects" restriction (#17139)

  • fix: store forked derived values (#17212)

[email protected]

Patch Changes

  • fix: correctly migrate named self closing slots (#17199)

  • fix: error at compile time instead of at runtime on await expressions inside bindings/transitions/animations/attachments (#17198)

  • fix: take async blockers into account for bindings/transitions/animations/attachments (#17198)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.45.2

Patch Changes

  • fix: array destructuring after await (#17254)

  • fix: throw on invalid {@tag}s (#17256)

5.45.1

Patch Changes

  • fix: link offscreen items and last effect in each block correctly (#17240)

5.45.0

Minor Changes

  • feat: add print(...) function (#16188)

5.44.1

Patch Changes

  • fix: await blockers before initialising const (#17226)

  • fix: link offscreen items and last effect in each block correctly (#17244)

  • fix: generate correct code for simple destructurings (#17237)

  • fix: ensure each block animations don't mess with transitions (#17238)

5.44.0

Minor Changes

  • feat: hydratable API (#17154)

5.43.15

Patch Changes

  • fix: don't execute attachments and attribute effects eagerly (#17208)

  • chore: lift "flushSync cannot be called in effects" restriction (#17139)

  • fix: store forked derived values (#17212)

5.43.14

... (truncated)

Commits

Updates svelte-check from 4.3.3 to 4.3.4

Release notes

Sourced from svelte-check's releases.

[email protected]

Patch Changes

  • chore: use machine format when run by Claude Code (#2870)
Commits
  • 253b872 Version Packages (#2869)
  • 6f08d66 fix: support experimental feature in "Show compiled Code" (#2884)
  • 6546923 feat: quick fix for adding lang="ts" (#2882)
  • ba9185b feat: support hierarchical document symbols (#2817)
  • 574c34d chore: turn changeset into patch
  • 16d8454 feat: use machine format when run by Claude Code (#2870)
  • 6a8ef1a fix: use moustache for svelte5 onhandler completion (#2883)
  • 2a31d04 chore: slight optimize
  • 04d52b7 fix: treat a script tag as top-level if it's the first tag in file (#2886)
  • d085830 docs: update command for setting up TailwindCSS (#2880)
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.46.3 to 8.48.0

Release notes

Sourced from typescript-eslint's releases.

v8.48.0

8.48.0 (2025-11-24)

🚀 Features

  • eslint-plugin: [no-redundant-type-constituents] use assignability checking for redundancy checks (#10744)
  • rule-tester: remove workaround for jest circular structure error (#11772)
  • typescript-estree: gate all errors behind allowInvalidAST (#11693)
  • typescript-estree: replace fast-glob with tinyglobby (#11740)

🩹 Fixes

  • eslint-plugin: [consistent-generic-constructors] ignore when constructor is typed array (#10477)
  • scope-manager: change unhelpful aaa error message and change analyze to expects Program (#11747)
  • typescript-estree: infers singleRun as true for project service (#11327)
  • typescript-estree: disallow binding patterns in parameter properties (#11760)

❤️ Thank You

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

v8.47.0

8.47.0 (2025-11-17)

🚀 Features

  • eslint-plugin: [no-unused-private-class-members] new extension rule (#10913)

❤️ Thank You

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

v8.46.4

8.46.4 (2025-11-10)

🩹 Fixes

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

8.48.0 (2025-11-24)

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

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

8.47.0 (2025-11-17)

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

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

8.46.4 (2025-11-10)

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

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

Commits

Updates vite from 7.2.2 to 7.2.4

Release notes

Sourced from vite's releases.

v7.2.4

Please refer to CHANGELOG.md for details.

v7.2.3

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

7.2.4 (2025-11-20)

Bug Fixes

  • revert "perf(deps): replace debug with obug (#21107)" (2d66b7b)

7.2.3 (2025-11-20)

Bug Fixes

  • allow multiple bindCLIShortcuts calls with shortcut merging (#21103) (5909efd)
  • deps: update all non-major dependencies (#21096) (6a34ac3)
  • deps: update all non-major dependencies (#21128) (4f8171e)

Performance Improvements

Miscellaneous Chores

  • deps: update dependency @​rollup/plugin-commonjs to v29 (#21099) (02ceaec)
  • deps: update rolldown-related dependencies (#21095) (39a0a15)
  • deps: update rolldown-related dependencies (#21127) (5029720)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

…y with 14 updates

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

| Package | From | To |
| --- | --- | --- |
| [@comunica/utils-bindings-factory](https://github.com/comunica/comunica/tree/HEAD/packages/utils-bindings-factory) | `4.4.0` | `4.5.0` |
| [@comunica/query-sparql](https://github.com/comunica/comunica/tree/HEAD/engines/query-sparql) | `4.4.1` | `4.5.0` |
| [@playwright/test](https://github.com/microsoft/playwright) | `1.56.1` | `1.57.0` |
| [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit) | `2.48.4` | `2.49.0` |
| [@testing-library/svelte](https://github.com/testing-library/svelte-testing-library) | `5.2.8` | `5.2.9` |
| [@ukic/web-components](https://github.com/mi6/ic-ui-kit/tree/HEAD/packages/web-components) | `3.14.0` | `3.15.0` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.21` | `10.4.22` |
| [jsdom](https://github.com/jsdom/jsdom) | `27.1.0` | `27.2.0` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.7.3` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.43.5` | `5.45.2` |
| [svelte-check](https://github.com/sveltejs/language-tools) | `4.3.3` | `4.3.4` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.46.3` | `8.48.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `7.2.2` | `7.2.4` |



Updates `@comunica/utils-bindings-factory` from 4.4.0 to 4.5.0
- [Release notes](https://github.com/comunica/comunica/releases)
- [Changelog](https://github.com/comunica/comunica/blob/master/CHANGELOG.md)
- [Commits](https://github.com/comunica/comunica/commits/v4.5.0/packages/utils-bindings-factory)

Updates `@comunica/query-sparql` from 4.4.1 to 4.5.0
- [Release notes](https://github.com/comunica/comunica/releases)
- [Changelog](https://github.com/comunica/comunica/blob/master/CHANGELOG.md)
- [Commits](https://github.com/comunica/comunica/commits/v4.5.0/engines/query-sparql)

Updates `@comunica/types` from 4.4.0 to 4.5.0
- [Release notes](https://github.com/comunica/comunica/releases)
- [Changelog](https://github.com/comunica/comunica/blob/master/CHANGELOG.md)
- [Commits](https://github.com/comunica/comunica/commits/v4.5.0/packages/types)

Updates `@playwright/test` from 1.56.1 to 1.57.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.56.1...v1.57.0)

Updates `@sveltejs/kit` from 2.48.4 to 2.49.0
- [Release notes](https://github.com/sveltejs/kit/releases)
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/[email protected]/packages/kit)

Updates `@testing-library/svelte` from 5.2.8 to 5.2.9
- [Release notes](https://github.com/testing-library/svelte-testing-library/releases)
- [Changelog](https://github.com/testing-library/svelte-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/svelte-testing-library@v5.2.8...v5.2.9)

Updates `@ukic/web-components` from 3.14.0 to 3.15.0
- [Changelog](https://github.com/mi6/ic-ui-kit/blob/main/packages/web-components/CHANGELOG.md)
- [Commits](https://github.com/mi6/ic-ui-kit/commits/@ukic/[email protected]/packages/web-components)

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

Updates `jsdom` from 27.1.0 to 27.2.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@27.1.0...27.2.0)

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

Updates `svelte` from 5.43.5 to 5.45.2
- [Release notes](https://github.com/sveltejs/svelte/releases)
- [Changelog](https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md)
- [Commits](https://github.com/sveltejs/svelte/commits/[email protected]/packages/svelte)

Updates `svelte-check` from 4.3.3 to 4.3.4
- [Release notes](https://github.com/sveltejs/language-tools/releases)
- [Commits](https://github.com/sveltejs/language-tools/compare/[email protected]@4.3.4)

Updates `typescript-eslint` from 8.46.3 to 8.48.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.48.0/packages/typescript-eslint)

Updates `vite` from 7.2.2 to 7.2.4
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.2.4/packages/vite)

---
updated-dependencies:
- dependency-name: "@comunica/utils-bindings-factory"
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@comunica/query-sparql"
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@comunica/types"
  dependency-version: 4.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@playwright/test"
  dependency-version: 1.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@sveltejs/kit"
  dependency-version: 2.49.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: "@testing-library/svelte"
  dependency-version: 5.2.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: "@ukic/web-components"
  dependency-version: 3.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: autoprefixer
  dependency-version: 10.4.22
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: jsdom
  dependency-version: 27.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: prettier
  dependency-version: 3.7.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: svelte
  dependency-version: 5.45.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: svelte-check
  dependency-version: 4.3.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
- dependency-name: typescript-eslint
  dependency-version: 8.48.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch-updates
- dependency-name: vite
  dependency-version: 7.2.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@GCHQDeveloper81
Copy link
Member

Two issues:

Test timeout

Many tests have suddenly started timing out

New linter error

/LD-Explorer/LD-Explorer/src/routes/explore/+page.svelte
Error:   33:98  error  Replace `⏎↹↹↹` with `·`  prettier/prettier

✖ 1 problem (1 error, 0 warnings)
  1 error and 0 warnings potentially fixable with the `--fix` option.

Error: Process completed with exit code 1.

@GCHQDeveloper81
Copy link
Member

Issues appear to be related to the hydratedRender implementation (so, probably something stencil related)

@GCHQDeveloper81
Copy link
Member

jsdom update identified as culprit

@GCHQDeveloper81
Copy link
Member

Picking up manually in #150 - jsdom is indeed the culprit but I don't have time to look at currently. Updating all otehr deps apart from that one (there's a chance this will be spotted by the community over the next few weeks)

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 1, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/minor-and-patch-updates-ba19f26d49 branch December 1, 2025 11:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants