Skip to content

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

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot-npm_and_yarn-minor-updates-f26c2522b7
Closed

build(deps): bump the minor-updates group across 1 directory with 10 updates#18
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot-npm_and_yarn-minor-updates-f26c2522b7

Conversation

@dependabot
Copy link

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

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

Package From To
@astrojs/sitemap 3.3.1 3.5.1
@astrojs/svelte 7.0.11 7.1.0
@swup/astro 1.6.0 1.7.0
astro 5.7.5 5.13.5
overlayscrollbars 2.11.1 2.12.0
pagefind 1.3.0 1.4.0
sanitize-html 2.16.0 2.17.0
@types/sanitize-html 2.15.0 2.16.0
svelte 5.28.2 5.38.6
typescript 5.8.3 5.9.2

Updates @astrojs/sitemap from 3.3.1 to 3.5.1

Release notes

Sourced from @​astrojs/sitemap's releases.

@​astrojs/sitemap@​3.5.1

Patch Changes

  • #14233 896886c Thanks @​gouravkhunger! - Fixes the issue with the option lastmod where if it is defined it applies correctly to <url> entries in each sitemap-${i}.xml file but not the <sitemap> entries in the root sitemap-index.xml file.

@​astrojs/sitemap@​3.5.0

Minor Changes

  • #13682 5824b32 Thanks @​gouravkhunger! - Adds a customSitemaps option to include extra sitemaps in the sitemap-index.xml file generated by Astro.

    This is useful for multi-framework setups on the same domain as your Astro site (example.com), such as a blog at example.com/blog whose sitemap is generated by another framework.

    The following example shows configuring your Astro site to include sitemaps for an externally-generated blog and help center along with the generated sitemap entries in sitemap-index.xml:

    Example:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    export default defineConfig({
    site: 'https://example.com',
    integrations: [
    sitemap({
    customSitemaps: [
    'https://example.com/blog/sitemap.xml',
    'https://example.com/helpcenter/sitemap.xml',
    ],
    }),
    ],
    });

    Learn more in the @astrojs/sitemap configuration documentation.

@​astrojs/sitemap@​3.4.2

Patch Changes

@​astrojs/sitemap@​3.4.1

Patch Changes

  • #13871 8a1e849 Thanks @​blimmer! - Uncaught errors in the filter method will now bubble, causing the astro build to fail.
Changelog

Sourced from @​astrojs/sitemap's changelog.

3.5.1

Patch Changes

  • #14233 896886c Thanks @​gouravkhunger! - Fixes the issue with the option lastmod where if it is defined it applies correctly to <url> entries in each sitemap-${i}.xml file but not the <sitemap> entries in the root sitemap-index.xml file.

3.5.0

Minor Changes

  • #13682 5824b32 Thanks @​gouravkhunger! - Adds a customSitemaps option to include extra sitemaps in the sitemap-index.xml file generated by Astro.

    This is useful for multi-framework setups on the same domain as your Astro site (example.com), such as a blog at example.com/blog whose sitemap is generated by another framework.

    The following example shows configuring your Astro site to include sitemaps for an externally-generated blog and help center along with the generated sitemap entries in sitemap-index.xml:

    Example:

    import { defineConfig } from 'astro/config';
    import sitemap from '@astrojs/sitemap';
    export default defineConfig({
    site: 'https://example.com',
    integrations: [
    sitemap({
    customSitemaps: [
    'https://example.com/blog/sitemap.xml',
    'https://example.com/helpcenter/sitemap.xml',
    ],
    }),
    ],
    });

    Learn more in the @astrojs/sitemap configuration documentation.

3.4.2

Patch Changes

3.4.1

Patch Changes

  • #13871 8a1e849 Thanks @​blimmer! - Uncaught errors in the filter method will now bubble, causing the astro build to fail.

3.4.0

... (truncated)

Commits

Updates @astrojs/svelte from 7.0.11 to 7.1.0

Changelog

Sourced from @​astrojs/svelte's changelog.

7.1.0

Minor Changes

  • #13809 3c3b492 Thanks @​ascorbic! - Increases minimum Node.js version to 18.20.8

    Node.js 18 has now reached end-of-life and should not be used. For now, Astro will continue to support Node.js 18.20.8, which is the final LTS release of Node.js 18, as well as Node.js 20 and Node.js 22 or later. We will drop support for Node.js 18 in a future release, so we recommend upgrading to Node.js 22 as soon as possible. See Astro's Node.js support policy for more details.

    ⚠️ Important note for users of Cloudflare Pages: The current build image for Cloudflare Pages uses Node.js 18.17.1 by default, which is no longer supported by Astro. If you are using Cloudflare Pages you should override the default Node.js version to Node.js 22. This does not affect users of Cloudflare Workers, which uses Node.js 22 by default.

7.0.13

Patch Changes

7.0.12

Patch Changes

Commits

Updates @swup/astro from 1.6.0 to 1.7.0

Release notes

Sourced from @​swup/astro's releases.

1.7.0

  • Add support for replacing dynamic fragments
  • Add option for native mode View Transitions
  • Optimize client script when not using ignore option (@​aleclarson)
Changelog

Sourced from @​swup/astro's changelog.

1.7.0

  • Add support for replacing dynamic fragments
  • Add option for native mode View Transitions
  • Optimize client script when not using ignore option (@​aleclarson)
Commits

Updates astro from 5.7.5 to 5.13.5

Release notes

Sourced from astro's releases.

astro@5.13.5

Patch Changes

  • #14286 09c5db3 Thanks @​ematipico! - BREAKING CHANGES only to the experimental CSP feature

    The following runtime APIs of the Astro global have been renamed:

    • Astro.insertDirective to Astro.csp.insertDirective
    • Astro.insertStyleResource to Astro.csp.insertStyleResource
    • Astro.insertStyleHash to Astro.csp.insertStyleHash
    • Astro.insertScriptResource to Astro.csp.insertScriptResource
    • Astro.insertScriptHash to Astro.csp.insertScriptHash

    The following runtime APIs of the APIContext have been renamed:

    • ctx.insertDirective to ctx.csp.insertDirective
    • ctx.insertStyleResource to ctx.csp.insertStyleResource
    • ctx.insertStyleHash to ctx.csp.insertStyleHash
    • ctx.insertScriptResource to ctx.csp.insertScriptResource
    • ctx.insertScriptHash to ctx.csp.insertScriptHash
  • #14283 3224637 Thanks @​ematipico! - Fixes an issue where CSP headers were incorrectly injected in the development server.

  • #14275 3e2f20d Thanks @​florian-lefebvre! - Adds support for experimental CSP when using experimental fonts

    Experimental fonts now integrate well with experimental CSP by injecting hashes for the styles it generates, as well as font-src directives.

    No action is required to benefit from it.

  • #14280 4b9fb73 Thanks @​ascorbic! - Fixes a bug that caused cookies to not be correctly set when using middleware sequences

  • #14276 77281c4 Thanks @​ArmandPhilippot! - Adds a missing export for resolveSrc, a documented image services utility.

astro@5.13.4

Patch Changes

  • #14260 86a1e40 Thanks @​jp-knj! - Fixes Astro.url.pathname to respect trailingSlash: 'never' configuration when using a base path. Previously, the root path with a base would incorrectly return /base/ instead of /base when trailingSlash was set to 'never'.

  • #14248 e81c4bd Thanks @​julesyoungberg! - Fixes a bug where actions named 'apply' do not work due to being a function prototype method.

astro@5.13.3

Patch Changes

  • #14239 d7d93e1 Thanks @​wtchnm! - Fixes a bug where the types for the live content collections were not being generated correctly in dev mode

  • #14221 eadc9dd Thanks @​delucis! - Fixes JSON schema support for content collections using the file() loader

  • #14229 1a9107a Thanks @​jonmichaeldarby! - Ensures Astro.currentLocale returns the correct locale during SSG for pages that use a locale param (such as [locale].astro or [locale]/index.astro, which produce [locale].html)

astro@5.13.2

... (truncated)

Changelog

Sourced from astro's changelog.

5.13.5

Patch Changes

  • #14286 09c5db3 Thanks @​ematipico! - BREAKING CHANGES only to the experimental CSP feature

    The following runtime APIs of the Astro global have been renamed:

    • Astro.insertDirective to Astro.csp.insertDirective
    • Astro.insertStyleResource to Astro.csp.insertStyleResource
    • Astro.insertStyleHash to Astro.csp.insertStyleHash
    • Astro.insertScriptResource to Astro.csp.insertScriptResource
    • Astro.insertScriptHash to Astro.csp.insertScriptHash

    The following runtime APIs of the APIContext have been renamed:

    • ctx.insertDirective to ctx.csp.insertDirective
    • ctx.insertStyleResource to ctx.csp.insertStyleResource
    • ctx.insertStyleHash to ctx.csp.insertStyleHash
    • ctx.insertScriptResource to ctx.csp.insertScriptResource
    • ctx.insertScriptHash to ctx.csp.insertScriptHash
  • #14283 3224637 Thanks @​ematipico! - Fixes an issue where CSP headers were incorrectly injected in the development server.

  • #14275 3e2f20d Thanks @​florian-lefebvre! - Adds support for experimental CSP when using experimental fonts

    Experimental fonts now integrate well with experimental CSP by injecting hashes for the styles it generates, as well as font-src directives.

    No action is required to benefit from it.

  • #14280 4b9fb73 Thanks @​ascorbic! - Fixes a bug that caused cookies to not be correctly set when using middleware sequences

  • #14276 77281c4 Thanks @​ArmandPhilippot! - Adds a missing export for resolveSrc, a documented image services utility.

5.13.4

Patch Changes

  • #14260 86a1e40 Thanks @​jp-knj! - Fixes Astro.url.pathname to respect trailingSlash: 'never' configuration when using a base path. Previously, the root path with a base would incorrectly return /base/ instead of /base when trailingSlash was set to 'never'.

  • #14248 e81c4bd Thanks @​julesyoungberg! - Fixes a bug where actions named 'apply' do not work due to being a function prototype method.

5.13.3

Patch Changes

  • #14239 d7d93e1 Thanks @​wtchnm! - Fixes a bug where the types for the live content collections were not being generated correctly in dev mode

  • #14221 eadc9dd Thanks @​delucis! - Fixes JSON schema support for content collections using the file() loader

  • #14229 1a9107a Thanks @​jonmichaeldarby! - Ensures Astro.currentLocale returns the correct locale during SSG for pages that use a locale param (such as [locale].astro or [locale]/index.astro, which produce [locale].html)

... (truncated)

Commits

Updates overlayscrollbars from 2.11.1 to 2.12.0

Changelog

Sourced from overlayscrollbars's changelog.

2.12.0

Improvements

  • Improve accessibility when the native scrollbars can't be hidden. This can happen when the browser isn't supporting scrollbar styling & the ScrollbarsHidingPlugin is not being used. In this case the custom scrollbars aren't rendered over the native scrollbars anymore. [SimpleBar #726](Grsmto/simplebar#726)

2.11.5

Bug Fixes

  • Sometimes when resizing the window, scrollbars applied to the body element werent updated accordingly.

2.11.4

Bug Fixes

  • Remove scrollbars click event when its no longer required. #720

2.11.3

Improvements

  • Introduce and document the new CSS Custom Properties: --os-viewport-overflow-x and --os-viewport-overflow-y which can be used to better control the overflow style of the viewport element.
  • Support for the auto value for overwrites of the overflow style of the viewport.

2.11.2

Improvements

  • Streamline css styles for the viewport and wrapper elements to allow overwrites of the overflow property. #718

Bug Fixes

  • Initialization bridging via data-overlayscrollbars-initialize attribute conflicted with the showNativeOverlaidScrollbars: true option when initialized to the body element. #713
Commits

Updates pagefind from 1.3.0 to 1.4.0

Changelog

Sourced from pagefind's changelog.

v1.4.0 (September 1, 2025)

Core Features & Improvements

  • Added the "Include Characters" option to allow indexing of specific special characters.
  • Reduced filesizes for the Pagefind WebAssembly modules.
  • Added FreeBSD as a supported platform (PR #813 — thanks @​nguthiru !)
  • Fixed an issue where matches in compound words could be ranked with zero weight. (PR #806 — thanks @​teamdandelion !)

Pagefind Playground

Modular UI Features & Improvements

  • Added option to hide images on result templates in the Modular UI (PR #874 — thanks @​HannesOberreiter !)
  • Added a data attribute for result count on the filter pills. (PR #827 — thanks @​cmahnke !)

Default UI Features & Improvements

  • Added title attribute to the default UI search input for improved accessibility (PR #798 — thanks @​rdela !)

UI Translations

Everything Else

  • Added a development justfile, and improved CONTRIBUTING.md (hint hint)
  • The Pagefind JavaScript should support running in Node.js a bit better (PR #828 — thanks @​justsml !)

Looking Forward

👋 from @​bglw — I thought I'd add a new section to these release notes talking about what's next.

The biggest item on my list is to improve the relevance of the Pagefind search results. With the current setup, you can tweak enough settings to get decent results for a given site, but it needs to better meet the goal of working more-than-good-enough out of the box.

The second-biggest item is to fill out the Modular UI and transition the default Pagefind experience to use that. This has been pending for a long time, and will be a much better base for those who wish to customize their search more than the Default UI currently allows.

Releases also now trigger a GitHub Discussion to be created, so please drop any general thoughts, comments, or feedback there 🙂

Commits
Maintainer changes

This version was pushed to npm by bglw, a new releaser for pagefind since your current version.


Updates sanitize-html from 2.16.0 to 2.17.0

Changelog

Sourced from sanitize-html's changelog.

2.17.0 (2025-05-14)

  • Add preserveEscapedAttributes, allowing attributes on escaped disallowed tags to be retained. Thanks to Ben Elliot for this new option.
Commits
  • 86efc06 Merge pull request #705 from apostrophecms/release-2.17.0
  • c487e77 release 2.17.0
  • da16903 Merge pull request #704 from apostrophecms/add-thanks-to-changelog
  • 0e5d881 Update CHANGELOG
  • 614e7df Merge pull request #668 from benelliott/feature/preserve-escaped-attributes-2
  • 8628cea Update README.md
  • f07ce9d README.md: Add warning on usage of preserveEscapedAttributes
  • 27de3a8 Add test demonstrating that preserveEscapedAttributes doesn't affect behaviou...
  • 3d2893e Add documentation for preserveEscapedAttributes option
  • ae1dc35 Add preserveEscapedAttributes option to allow attributes on escaped disallo...
  • See full diff in compare view

Updates @types/sanitize-html from 2.15.0 to 2.16.0

Commits

Updates svelte from 5.28.2 to 5.38.6

Release notes

Sourced from svelte's releases.

svelte@5.38.6

Patch Changes

  • fix: don't fail on flushSync while flushing effects (#16674)

svelte@5.38.5

Patch Changes

  • fix: ensure async deriveds always get dependencies from thennable (#16672)

svelte@5.38.3

Patch Changes

  • fix: ensure correct order of template effect values (#16655)

  • fix: allow async {@const} in more places (#16643)

  • fix: properly catch top level await errors (#16619)

  • perf: prune effects without dependencies (#16625)

  • fix: only emit for_await_track_reactivity_loss in async mode (#16644)

svelte@5.38.2

Patch Changes

  • perf: run blocks eagerly during flush instead of aborting (#16631)

  • fix: don't clone non-proxies in $inspect (#16617)

  • fix: avoid recursion error when tagging circular references (#16622)

svelte@5.38.1

Patch Changes

  • fix: wrap abort in without_reactive_context (#16570)

  • fix: add hint as a possible value for popover attribute (#16581)

  • fix: skip effects inside dynamic component that is about to be destroyed (#16601)

svelte@5.38.0

Minor Changes

  • feat: allow await inside @const declarations (#16542)

Patch Changes

  • fix: remount at any hydration error (#16248)

... (truncated)

Changelog

Sourced from svelte's changelog.

5.38.6

Patch Changes

  • fix: don't fail on flushSync while flushing effects (#16674)

5.38.5

Patch Changes

  • fix: ensure async deriveds always get dependencies from thennable (#16672)

5.38.4

Patch Changes

  • fix: place instance-level snippets inside async body (#16666)

  • fix: Add check for builtin custom elements in set_custom_element_data (#16592)

  • fix: restore batch along with effect context (#16668)

  • fix: wait until changes propagate before updating input selection state (#16649)

  • fix: add "Accept-CH" as valid value for http-equiv (#16671)

5.38.3

Patch Changes

  • fix: ensure correct order of template effect values (#16655)

  • fix: allow async {@const} in more places (#16643)

  • fix: properly catch top level await errors (#16619)

  • perf: prune effects without dependencies (#16625)

  • fix: only emit for_await_track_reactivity_loss in async mode (#16644)

5.38.2

Patch Changes

  • perf: run blocks eagerly during flush instead of aborting (#16631)

  • fix: don't clone non-proxies in $inspect (#16617)

  • fix: avoid recursion error when tagging circular references (#16622)

... (truncated)

Commits

Updates typescript from 5.8.3 to 5.9.2

Release notes

Sourced from typescript's releases.

TypeScript 5.9

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 RC

For release notes, check out the release announcement

Downloads are available on:

TypeScript 5.9 Beta

For release notes, check out the release announcement.

Downloads are available on:

Commits
  • be86783 Give more specific errors for verbatimModuleSyntax (#62113)
  • 22ef577 LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...
  • d5a414c Don't use noErrorTruncation when printing types with maximumLength set (#...
  • f14b5c8 Remove unused and confusing dom.iterable.d.ts file (#62037)
  • 2778e84 Restore AbortSignal.abort (#62086)
  • 65cb4bd LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...
  • 9e20e03 Clear out checker-level stacks on pop (#62016)
  • 87740bc Fix for Issue 61081 (#61221)
  • 833a8d4 Fix Symbol completion priority and cursor positioning (#61945)
  • 0018c9f LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...
  • Additional commits viewable in compare view

Updates @types/sanitize-html from 2.15.0 to 2.16.0

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

…updates

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

| Package | From | To |
| --- | --- | --- |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.3.1` | `3.5.1` |
| [@astrojs/svelte](https://github.com/withastro/astro/tree/HEAD/packages/integrations/svelte) | `7.0.11` | `7.1.0` |
| [@swup/astro](https://github.com/swup/astro) | `1.6.0` | `1.7.0` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.7.5` | `5.13.5` |
| [overlayscrollbars](https://github.com/KingSora/OverlayScrollbars/tree/HEAD/packages/overlayscrollbars) | `2.11.1` | `2.12.0` |
| [pagefind](https://github.com/pagefind/pagefind) | `1.3.0` | `1.4.0` |
| [sanitize-html](https://github.com/apostrophecms/sanitize-html) | `2.16.0` | `2.17.0` |
| [@types/sanitize-html](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/sanitize-html) | `2.15.0` | `2.16.0` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.28.2` | `5.38.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.3` | `5.9.2` |



Updates `@astrojs/sitemap` from 3.3.1 to 3.5.1
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/sitemap/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/sitemap@3.5.1/packages/integrations/sitemap)

Updates `@astrojs/svelte` from 7.0.11 to 7.1.0
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/integrations/svelte/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/@astrojs/svelte@7.1.0/packages/integrations/svelte)

Updates `@swup/astro` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/swup/astro/releases)
- [Changelog](https://github.com/swup/astro/blob/master/CHANGELOG.md)
- [Commits](swup/astro@1.6.0...1.7.0)

Updates `astro` from 5.7.5 to 5.13.5
- [Release notes](https://github.com/withastro/astro/releases)
- [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md)
- [Commits](https://github.com/withastro/astro/commits/astro@5.13.5/packages/astro)

Updates `overlayscrollbars` from 2.11.1 to 2.12.0
- [Release notes](https://github.com/KingSora/OverlayScrollbars/releases)
- [Changelog](https://github.com/KingSora/OverlayScrollbars/blob/master/packages/overlayscrollbars/CHANGELOG.md)
- [Commits](https://github.com/KingSora/OverlayScrollbars/commits/v2.12.0/packages/overlayscrollbars)

Updates `pagefind` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/pagefind/pagefind/releases)
- [Changelog](https://github.com/Pagefind/pagefind/blob/main/CHANGELOG.md)
- [Commits](Pagefind/pagefind@v1.3.0...v1.4.0)

Updates `sanitize-html` from 2.16.0 to 2.17.0
- [Changelog](https://github.com/apostrophecms/sanitize-html/blob/main/CHANGELOG.md)
- [Commits](apostrophecms/sanitize-html@2.16.0...2.17.0)

Updates `@types/sanitize-html` from 2.15.0 to 2.16.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/sanitize-html)

Updates `svelte` from 5.28.2 to 5.38.6
- [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/svelte@5.38.6/packages/svelte)

Updates `typescript` from 5.8.3 to 5.9.2
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.3...v5.9.2)

Updates `@types/sanitize-html` from 2.15.0 to 2.16.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/sanitize-html)

---
updated-dependencies:
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@astrojs/svelte"
  dependency-version: 7.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@swup/astro"
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: astro
  dependency-version: 5.13.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: overlayscrollbars
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: pagefind
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: sanitize-html
  dependency-version: 2.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@types/sanitize-html"
  dependency-version: 2.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: svelte
  dependency-version: 5.38.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: typescript
  dependency-version: 5.9.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: "@types/sanitize-html"
  dependency-version: 2.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

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

dependabot bot commented on behalf of github Sep 16, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Sep 19, 2025

None of your dependencies match this group anymore, you may need to update your configuration file to remove it or change its rules.

@dependabot dependabot bot closed this Sep 19, 2025
@dependabot dependabot bot deleted the dependabot-npm_and_yarn-minor-updates-f26c2522b7 branch September 19, 2025 04:28
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