chore(deps): bump the minor-updates group across 1 directory with 7 updates
Type: Pull Request
State: Closed
Association: None
Comments: 1
(10 months ago)
(10 months ago)
(10 months ago)
dependencies javascript
Bumps the minor-updates group with 7 updates in the / directory:
| Package | From | To |
|---|---|---|
| @astrojs/sitemap | 3.4.1 |
3.5.1 |
| @swup/astro | 1.6.0 |
1.7.0 |
| astro | 5.10.1 |
5.13.3 |
| overlayscrollbars | 2.11.4 |
2.12.0 |
| svelte | 5.34.8 |
5.38.5 |
| typescript | 5.8.3 |
5.9.2 |
| @biomejs/biome | 2.0.5 |
2.2.2 |
Updates @astrojs/sitemap from 3.4.1 to 3.5.1
Release notes
Sourced from @astrojs/sitemap's releases.
@astrojs/sitemap@3.5.1Patch Changes
- #14233
896886cThanks@gouravkhunger! - Fixes the issue with the optionlastmodwhere if it is defined it applies correctly to<url>entries in eachsitemap-${i}.xmlfile but not the<sitemap>entries in the rootsitemap-index.xmlfile.
@astrojs/sitemap@3.5.0Minor Changes
#13682
5824b32Thanks@gouravkhunger! - Adds acustomSitemapsoption to include extra sitemaps in thesitemap-index.xmlfile generated by Astro.This is useful for multi-framework setups on the same domain as your Astro site (
example.com), such as a blog atexample.com/blogwhose 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/sitemapconfiguration documentation.
@astrojs/sitemap@3.4.2Patch Changes
- #14127
2309adaThanks@florian-lefebvre! - Upgrades zod
Changelog
Sourced from @astrojs/sitemap's changelog.
3.5.1
Patch Changes
- #14233
896886cThanks@gouravkhunger! - Fixes the issue with the optionlastmodwhere if it is defined it applies correctly to<url>entries in eachsitemap-${i}.xmlfile but not the<sitemap>entries in the rootsitemap-index.xmlfile.3.5.0
Minor Changes
#13682
5824b32Thanks@gouravkhunger! - Adds acustomSitemapsoption to include extra sitemaps in thesitemap-index.xmlfile generated by Astro.This is useful for multi-framework setups on the same domain as your Astro site (
example.com), such as a blog atexample.com/blogwhose 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/sitemapconfiguration documentation.3.4.2
Patch Changes
- #14127
2309adaThanks@florian-lefebvre! - Upgrades zod
Commits
d471be5[ci] release (#14242)896886cfix(@astro/sitemap): includelastmodfor sitemap entries (#14233)a186848[ci] release (#14217)cad3cc6[ci] format5824b32feat(@astro/sitemap): custom sitemaps (#13682)c12e216[ci] release (#14128)2309adachore: upgrade zod (#14127)9cfccc7[ci] format33f2d15chore: upgrade to Biome v2 (#13984)- See full diff in compare view
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
b517654Merge pull request #40 from swup/version/automateddf64414Update changelog49c807eUpdate package versiona8f8211Merge pull request #39 from swup/feat/native5457624Merge pull request #38 from swup/feat/fragments82e3cacDocument native moded5d56a1Pass along native optionf04af0eExport fragment plugin from client script0a95106Document fragments optiond7e7798Include fragment plugin- Additional commits viewable in compare view
Updates astro from 5.10.1 to 5.13.3
Release notes
Sourced from astro's releases.
astro@5.13.3
Patch Changes
#14239
d7d93e1Thanks@wtchnm! - Fixes a bug where the types for the live content collections were not being generated correctly in dev mode#14221
eadc9ddThanks@delucis! - Fixes JSON schema support for content collections using thefile()loader#14229
1a9107aThanks@jonmichaeldarby! - EnsuresAstro.currentLocalereturns the correct locale during SSG for pages that use a locale param (such as[locale].astroor[locale]/index.astro, which produce[locale].html)astro@5.13.2
Patch Changes
4d16de7Thanks@ematipico! - Improves the detection of remote paths in the_imageendpoint. Nowhrefparameters that start with//are considered remote paths.Updated dependencies [
4d16de7]:astro@5.13.1
Patch Changes
astro@5.13.0
Minor Changes
#14173
39911b8Thanks@florian-lefebvre! - Adds an experimental flagstaticImportMetaEnvto disable the replacement ofimport.meta.envvalues withprocess.envcalls and their coercion of environment variable values. This supersedes therawEnvValuesexperimental flag, which is now removed.Astro allows you to configure a type-safe schema for your environment variables, and converts variables imported via
astro:envinto the expected type. This is the recommended way to use environment variables in Astro, as it allows you to easily see and manage whether your variables are public or secret, available on the client or only on the server at build time, and the data type of your values.However, you can still access environment variables through
process.envandimport.meta.envdirectly when needed. This was the only way to use environment variables in Astro beforeastro:envwas added in Astro 5.0, and Astro's default handling ofimport.meta.envincludes some logic that was only needed for earlier versions of Astro.The
experimental.staticImportMetaEnvflag updates the behavior ofimport.meta.envto align with Vite's handling of environment variables and for better ease of use with Astro's current implementations and features. This will become the default behavior in Astro 6.0, and this early preview is introduced as an experimental feature.Currently, non-public
import.meta.envenvironment variables are replaced by a reference toprocess.env. Additionally, Astro may also convert the value type of your environment variables used throughimport.meta.env, which can prevent access to some values such as the strings"true"(which is converted to a boolean value), and"1"(which is converted to a number).The
experimental.staticImportMetaEnvflag simplifies Astro's default behavior, making it easier to understand and use. Astro will no longer replace anyimport.meta.envenvironment variables with aprocess.envcall, nor will it coerce values.To enable this feature, add the experimental flag in your Astro config and remove
rawEnvValuesif it was enabled:// astro.config.mjs import { defineConfig } from "astro/config";export default defineConfig({
- experimental: {
- staticImportMetaEnv: true
- rawEnvValues: false
- } });
... (truncated)
Changelog
Sourced from astro's changelog.
5.13.3
Patch Changes
#14239
d7d93e1Thanks@wtchnm! - Fixes a bug where the types for the live content collections were not being generated correctly in dev mode#14221
eadc9ddThanks@delucis! - Fixes JSON schema support for content collections using thefile()loader#14229
1a9107aThanks@jonmichaeldarby! - EnsuresAstro.currentLocalereturns the correct locale during SSG for pages that use a locale param (such as[locale].astroor[locale]/index.astro, which produce[locale].html)5.13.2
Patch Changes
4d16de7Thanks@ematipico! - Improves the detection of remote paths in the_imageendpoint. Nowhrefparameters that start with//are considered remote paths.Updated dependencies [
4d16de7]:5.13.1
Patch Changes
5.13.0
Minor Changes
#14173
39911b8Thanks@florian-lefebvre! - Adds an experimental flagstaticImportMetaEnvto disable the replacement ofimport.meta.envvalues withprocess.envcalls and their coercion of environment variable values. This supersedes therawEnvValuesexperimental flag, which is now removed.Astro allows you to configure a type-safe schema for your environment variables, and converts variables imported via
astro:envinto the expected type. This is the recommended way to use environment variables in Astro, as it allows you to easily see and manage whether your variables are public or secret, available on the client or only on the server at build time, and the data type of your values.However, you can still access environment variables through
process.envandimport.meta.envdirectly when needed. This was the only way to use environment variables in Astro beforeastro:envwas added in Astro 5.0, and Astro's default handling ofimport.meta.envincludes some logic that was only needed for earlier versions of Astro.The
experimental.staticImportMetaEnvflag updates the behavior ofimport.meta.envto align with Vite's handling of environment variables and for better ease of use with Astro's current implementations and features. This will become the default behavior in Astro 6.0, and this early preview is introduced as an experimental feature.Currently, non-public
import.meta.envenvironment variables are replaced by a reference toprocess.env. Additionally, Astro may also convert the value type of your environment variables used throughimport.meta.env, which can prevent access to some values such as the strings"true"(which is converted to a boolean value), and"1"(which is converted to a number).The
experimental.staticImportMetaEnvflag simplifies Astro's default behavior, making it easier to understand and use. Astro will no longer replace anyimport.meta.envenvironment variables with aprocess.envcall, nor will it coerce values.To enable this feature, add the experimental flag in your Astro config and remove
rawEnvValuesif it was enabled:// astro.config.mjs import { defineConfig } from "astro/config";export default defineConfig({
- experimental: {
... (truncated)
Commits
d471be5[ci] release (#14242)d7d93e1fix(sync): add missing live check for generating content collections types (#...682d8b8[ci] format1a9107aProperly computecurrentLocalewhenpathsegment contains.html(#14229)eadc9ddFixfile()loader JSON schema (#14221)d95fbaf[ci] formatdd481c8chore(assets): compose source URL later (#14237)9288133[ci] release (#14232)1040510[ci] format4d16de7Merge commit from fork- Additional commits viewable in compare view
Updates overlayscrollbars from 2.11.4 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
ScrollbarsHidingPluginis 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.
Commits
b9ced78v2.12.05dbe819fix test505c71eimprove accessibility by hiding custom scrollbar when native scrollbars cant ...99c1d97Merge branch 'master' of https://github.com/KingSora/OverlayScrollbarsea0099esmall improvementscb63671changelog & package json9fd1f8cfix a bug where the scrollbar size was not update on body scrollbars- See full diff in compare view
Updates svelte from 5.34.8 to 5.38.5
Release notes
Sourced from svelte's releases.
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_lossin 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
abortinwithout_reactive_context(#16570)fix: add
hintas a possible value forpopoverattribute (#16581)fix: skip effects inside dynamic component that is about to be destroyed (#16601)
svelte@5.38.0
Minor Changes
- feat: allow
awaitinside@constdeclarations (#16542)Patch Changes
fix: remount at any hydration error (#16248)
chore: emit
await_reactivity_lossinfor awaitloops (#16521)fix: emit
snippet_invalid_exportinstead ofundefined_exportfor exported snippets (#16539)svelte@5.37.3
... (truncated)
Changelog
Sourced from svelte's changelog.
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_lossin 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)
5.38.1
Patch Changes
- fix: wrap
abortinwithout_reactive_context(#16570)
... (truncated)
Commits
5314f48Version Packages (#16673)5912754Version Packages (#16667)677af57fix: ensure async deriveds always get dependencies from thennable (#16672)967431cchore(elements.d.ts): add "Accept-CH" as valid value forhttp-equiv(#16671)0d48916fix: cursor jumps in input two way binding (#16649)6534aa0fix: Add check for builtin custom elements inset_custom_element_data(#16592)7105736fix: restore batch along with effect context (#16668)57fed6afix: place instance-level snippets inside async body (#16666)e883cd0Version Packages (#16642)d3cb148perf: better effect pruning (#16625)- Additional commits viewable in compare view
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
- fixed issues query for Typescript 5.9.0 (Beta).
- fixed issues query for Typescript 5.9.1 (RC).
- No specific changes for TypeScript 5.9.2 (Stable)
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
be86783Give more specific errors forverbatimModuleSyntax(#62113)22ef577LEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250714...d5a414cDon't usenoErrorTruncationwhen printing types withmaximumLengthset (#...f14b5c8Remove unused and confusing dom.iterable.d.ts file (#62037)2778e84Restore AbortSignal.abort (#62086)65cb4bdLEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250710...9e20e03Clear out checker-level stacks on pop (#62016)87740bcFix for Issue 61081 (#61221)833a8d4Fix Symbol completion priority and cursor positioning (#61945)0018c9fLEGO: Pull request from lego/hb_5378966c-b857-470a-8675-daebef4a6da1_20250702...- Additional commits viewable in compare view
Updates @biomejs/biome from 2.0.5 to 2.2.2
Release notes
Sourced from @biomejs/biome's releases.
Biome CLI v2.2.2
2.2.2
Patch Changes
#7266
b270bb5Thanks@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
6436180Thanks@ematipico! - Fixed an issue where the functionscanProjectwouldn't work as expected.#7285
1511d0cThanks@rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.#7249
dff85c0Thanks@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
b270bb5Thanks@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
679b70eThanks@patrickshipe! - Resolved an overcorrection inuseImportExtensionswhen 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 "./sub/index";
import "./sub/index.js";#7270
953f9c6Thanks@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
b7aa111Thanks@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
0b07f45Thanks@ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using--config-path.#7239
1d643d8Thanks@minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside.svelte.test.ts/jsand.svelte.spec.ts/jsfiles.#7264
62fdbc8Thanks@ematipico! - Fixed a regression where when using--log-kind-prettywasn't working anymore as expected.#7244
660031bThanks@JeetuSuthar! - Fixed #7225: ThenoExtraBooleanCastrule now preserves parentheses when removingBooleancalls 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
b270bb5Thanks@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
6436180Thanks@ematipico! - Fixed an issue where the functionscanProjectwouldn't work as expected.#7285
1511d0cThanks@rriski! - Partially fixed #6782: JSX node kinds are now supported in GritQL AST nodes.#7249
dff85c0Thanks@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
b270bb5Thanks@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
679b70eThanks@patrickshipe! - Resolved an overcorrection inuseImportExtensionswhen 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 "./sub/index";
import "./sub/index.js";#7270
953f9c6Thanks@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
b7aa111Thanks@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
0b07f45Thanks@ematipico! - Fixed #7236. Now Biome correctly migrates JSONC configuration files when they are passed using--config-path.#7239
1d643d8Thanks@minht11! - Fixed an issue where Svelte globals ($state and so on) were not properly recognized inside.svelte.test.ts/jsand.svelte.spec.ts/jsfiles.#7264
62fdbc8Thanks@ematipico! - Fixed a regression where when using--log-kind-prettywasn't working anymore as expected.#7244
660031bThanks@JeetuSuthar! - Fixed #7225: ThenoExtraBooleanCastrule now preserves parentheses when removingBooleancalls inside negations.// Before !Boolean(b0 && b1); // After !(b0 && b1); // instead of !b0 && b1
... (truncated)
Commits
dcdd819ci: release (#7303)7886c98chore: remove changeset, fix version number941cd73chore: revert version number0f5fb2fci: release (#7238)27c93e8docs: fix CHANGELOG to reflect operatorLinebreak (#7253)38795ebchore: fix image sponsor (#7250)1075b73fix(changelog): correct dead links in 2.2 (#7243)e1ba03cchore: restore version and use different runner1b783c8chore: revert versionee7ec19chore: update version and lockfile- Additional commits viewable in compare view
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
0
0
+0
-0
Package Dependencies
Technical Details
| ID: | 6153604 |
| UUID: | 3359786255 |
| Node ID: | PR_kwDOPCBez86ln3Qc |
| Host: | GitHub |
| Repository: | hyglgithub/AstroBlog |