Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 25, 2025

Bumps the patch-updates group with 5 updates:

Package From To
@astrojs/sitemap 3.5.0 3.5.1
@iconify-json/material-symbols 1.2.32 1.2.33
astro 5.13.2 5.13.3
svelte 5.38.2 5.38.3
@biomejs/biome 2.2.0 2.2.2

Updates @astrojs/sitemap from 3.5.0 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.
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.
Commits

Updates @iconify-json/material-symbols from 1.2.32 to 1.2.33

Commits

Updates astro from 5.13.2 to 5.13.3

Release notes

Sourced from astro's releases.

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)

Changelog

Sourced from astro's changelog.

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)

Commits

Updates svelte from 5.38.2 to 5.38.3

Release notes

Sourced from svelte's releases.

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)

Changelog

Sourced from svelte's changelog.

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)

Commits

Updates @biomejs/biome from 2.2.0 to 2.2.2

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.2.2

2.2.2

Patch Changes

  • #7266 b270bb5 Thanks @​ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.

  • #7281 6436180 Thanks @​ematipico! - Fixed an issue where the function scanProject wouldn't work as expected.

  • #7285 1511d0c Thanks @​rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.

  • #7249 dff85c0 Thanks @​ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.

  • #7266 b270bb5 Thanks @​ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.

  • #7209 679b70e Thanks @​patrickshipe! - Resolved an overcorrection in useImportExtensions when importing explicit index files.

    Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.

    Example

    // Before
    -      import "./sub/index";
    +      import "./sub/index/index.js";
    // After
    
    
     import &quot;./sub/index&quot;;
    
    
    
    
    
     import &quot;./sub/index.js&quot;;
    
    
    

  • #7270 953f9c6 Thanks @​arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.

  • #7234 b7aa111 Thanks @​JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().

    The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.

  • #7283 0b07f45 Thanks @​ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using --config-path.

  • #7239 1d643d8 Thanks @​minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside .svelte.test.ts/js and .svelte.spec.ts/js files.

  • #7264 62fdbc8 Thanks @​ematipico! - Fixed a regression where when using --log-kind-pretty wasn't working anymore as expected.

  • #7244 660031b Thanks @​JeetuSuthar! - Fixed #7225: The noExtraBooleanCast rule now preserves parentheses when removing Boolean calls inside negations.

    // Before
    !Boolean(b0 && b1);
    // After
    !(b0 && b1); // instead of !b0 && b1

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.2.2

Patch Changes

  • #7266 b270bb5 Thanks @​ematipico! - Fixed an issue where Biome got stuck when analyzing some files. This is usually caused by a bug in the inference engine. Now Biome has some guards in place in case the number of types grows too much, and if that happens, a diagnostic is emitted and the inference is halted.

  • #7281 6436180 Thanks @​ematipico! - Fixed an issue where the function scanProject wouldn't work as expected.

  • #7285 1511d0c Thanks @​rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.

  • #7249 dff85c0 Thanks @​ematipico! - Fixed #748, where Biome Language Server didn't show the unsafe fixes when requesting the quick fixes. Now all LSP editors will show also opt-in, unsafe fixes.

  • #7266 b270bb5 Thanks @​ematipico! - Fixed #7020: Resolved an issue with analysing types of static member expressions involving unions. If the object type was a union that referenced nested unions, it would trigger an infinite loop as it tried to keep expanding nested unions, and the set of types would grow indefinitely.

  • #7209 679b70e Thanks @​patrickshipe! - Resolved an overcorrection in useImportExtensions when importing explicit index files.

    Imports that explicitly reference an index file are now preserved and no longer rewritten to nested index paths.

    Example

    // Before
    -      import "./sub/index";
    +      import "./sub/index/index.js";
    // After
    
    
     import &quot;./sub/index&quot;;
    
    
    
    
    
     import &quot;./sub/index.js&quot;;
    
    
    

  • #7270 953f9c6 Thanks @​arendjr! - Fixed #6172: Resolved an issue with inferring types for rest parameters. This issue caused rest-parameter types to be incorrect, and in some cases caused extreme performance regressions in files that contained many methods with rest-parameter definitions.

  • #7234 b7aa111 Thanks @​JeetuSuthar! - Fixed #7233: The useIndexOf rule now correctly suggests using indexOf() instead of findIndex().

    The diagnostic message was incorrectly recommending Array#findIndex() over Array#indexOf(), when it should recommend the opposite for simple equality checks.

  • #7283 0b07f45 Thanks @​ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using --config-path.

  • #7239 1d643d8 Thanks @​minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside .svelte.test.ts/js and .svelte.spec.ts/js files.

  • #7264 62fdbc8 Thanks @​ematipico! - Fixed a regression where when using --log-kind-pretty wasn't working anymore as expected.

  • #7244 660031b Thanks @​JeetuSuthar! - Fixed #7225: The noExtraBooleanCast rule now preserves parentheses when removing Boolean calls inside negations.

    // Before
    !Boolean(b0 && b1);
    // After
    !(b0 && b1); // instead of !b0 && b1

... (truncated)

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 25, 2025
Copy link

cloudflare-workers-and-pages bot commented Aug 25, 2025

Deploying blog with  Cloudflare Pages  Cloudflare Pages

Latest commit: fd10e10
Status: ✅  Deploy successful!
Preview URL: https://f7f6aa31.blog-62m.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-patc-g16x.blog-62m.pages.dev

View logs

Bumps the patch-updates group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@astrojs/sitemap](https://github.com/withastro/astro/tree/HEAD/packages/integrations/sitemap) | `3.5.0` | `3.5.1` |
| [@iconify-json/material-symbols](https://github.com/iconify/icon-sets) | `1.2.32` | `1.2.33` |
| [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro) | `5.13.2` | `5.13.3` |
| [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) | `5.38.2` | `5.38.3` |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.2.0` | `2.2.2` |


Updates `@astrojs/sitemap` from 3.5.0 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 `@iconify-json/material-symbols` from 1.2.32 to 1.2.33
- [Commits](https://github.com/iconify/icon-sets/commits)

Updates `astro` from 5.13.2 to 5.13.3
- [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.3/packages/astro)

Updates `svelte` from 5.38.2 to 5.38.3
- [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.3/packages/svelte)

Updates `@biomejs/biome` from 2.2.0 to 2.2.2
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/biome@2.2.2/packages/@biomejs/biome)

---
updated-dependencies:
- dependency-name: "@astrojs/sitemap"
  dependency-version: 3.5.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@iconify-json/material-symbols"
  dependency-version: 1.2.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: astro
  dependency-version: 5.13.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: svelte
  dependency-version: 5.38.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-updates
- dependency-name: "@biomejs/biome"
  dependency-version: 2.2.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: patch-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot-npm_and_yarn-patch-updates-42d2a3e8d1 branch from ff6c365 to fd10e10 Compare August 26, 2025 03:23
@fishcpy fishcpy merged commit 5c1466b into main Aug 26, 2025
1 check passed
@dependabot dependabot bot deleted the dependabot-npm_and_yarn-patch-updates-42d2a3e8d1 branch August 26, 2025 17:28
fishcpy added a commit that referenced this pull request Sep 7, 2025
…ates-42d2a3e8d1

Bump the patch-updates group with 5 updates
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.

1 participant