chore(deps): bump the minor-updates group across 1 directory with 8 updates
Type: Pull Request
State: Open
Association: None
Comments: 0
(10 months ago)
(10 months ago)
dependencies javascript
Bumps the minor-updates group with 8 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.5 |
| overlayscrollbars | 2.11.4 |
2.12.0 |
| pagefind | 1.3.0 |
1.4.0 |
| svelte | 5.34.8 |
5.38.6 |
| 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.5
Release notes
Sourced from astro's releases.
astro@5.13.5
Patch Changes
#14286
09c5db3Thanks@ematipico! - BREAKING CHANGES only to the experimental CSP featureThe following runtime APIs of the
Astroglobal have been renamed:
Astro.insertDirectivetoAstro.csp.insertDirectiveAstro.insertStyleResourcetoAstro.csp.insertStyleResourceAstro.insertStyleHashtoAstro.csp.insertStyleHashAstro.insertScriptResourcetoAstro.csp.insertScriptResourceAstro.insertScriptHashtoAstro.csp.insertScriptHashThe following runtime APIs of the
APIContexthave been renamed:
ctx.insertDirectivetoctx.csp.insertDirectivectx.insertStyleResourcetoctx.csp.insertStyleResourcectx.insertStyleHashtoctx.csp.insertStyleHashctx.insertScriptResourcetoctx.csp.insertScriptResourcectx.insertScriptHashtoctx.csp.insertScriptHash#14283
3224637Thanks@ematipico! - Fixes an issue where CSP headers were incorrectly injected in the development server.#14275
3e2f20dThanks@florian-lefebvre! - Adds support for experimental CSP when using experimental fontsExperimental fonts now integrate well with experimental CSP by injecting hashes for the styles it generates, as well as
font-srcdirectives.No action is required to benefit from it.
#14280
4b9fb73Thanks@ascorbic! - Fixes a bug that caused cookies to not be correctly set when using middleware sequences#14276
77281c4Thanks@ArmandPhilippot! - Adds a missing export forresolveSrc, a documented image services utility.astro@5.13.4
Patch Changes
#14260
86a1e40Thanks@jp-knj! - FixesAstro.url.pathnameto respecttrailingSlash: 'never'configuration when using a base path. Previously, the root path with a base would incorrectly return/base/instead of/basewhentrailingSlashwas set to 'never'.#14248
e81c4bdThanks@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
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
... (truncated)
Changelog
Sourced from astro's changelog.
5.13.5
Patch Changes
#14286
09c5db3Thanks@ematipico! - BREAKING CHANGES only to the experimental CSP featureThe following runtime APIs of the
Astroglobal have been renamed:
Astro.insertDirectivetoAstro.csp.insertDirectiveAstro.insertStyleResourcetoAstro.csp.insertStyleResourceAstro.insertStyleHashtoAstro.csp.insertStyleHashAstro.insertScriptResourcetoAstro.csp.insertScriptResourceAstro.insertScriptHashtoAstro.csp.insertScriptHashThe following runtime APIs of the
APIContexthave been renamed:
ctx.insertDirectivetoctx.csp.insertDirectivectx.insertStyleResourcetoctx.csp.insertStyleResourcectx.insertStyleHashtoctx.csp.insertStyleHashctx.insertScriptResourcetoctx.csp.insertScriptResourcectx.insertScriptHashtoctx.csp.insertScriptHash#14283
3224637Thanks@ematipico! - Fixes an issue where CSP headers were incorrectly injected in the development server.#14275
3e2f20dThanks@florian-lefebvre! - Adds support for experimental CSP when using experimental fontsExperimental fonts now integrate well with experimental CSP by injecting hashes for the styles it generates, as well as
font-srcdirectives.No action is required to benefit from it.
#14280
4b9fb73Thanks@ascorbic! - Fixes a bug that caused cookies to not be correctly set when using middleware sequences#14276
77281c4Thanks@ArmandPhilippot! - Adds a missing export forresolveSrc, a documented image services utility.5.13.4
Patch Changes
#14260
86a1e40Thanks@jp-knj! - FixesAstro.url.pathnameto respecttrailingSlash: 'never'configuration when using a base path. Previously, the root path with a base would incorrectly return/base/instead of/basewhentrailingSlashwas set to 'never'.#14248
e81c4bdThanks@julesyoungberg! - Fixes a bug where actions named 'apply' do not work due to being a function prototype method.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)
... (truncated)
Commits
71562f2[ci] release (#14277)e21da85[ci] format4b9fb73fix: don't lose cookies in middleware sequences (#14280)77281c4fix: add missing export for a documented image service utility (#14276)72ab59b[ci] format09c5db3refactor(csp): move methods insidecspgetter (#14286)3224637fix(csp): CSP headers in development server (#14283)3e2f20dfeat(fonts): csp 2 (#14275)24b04c1[ci] release (#14267)4823c42feat(netlify): dev context (#14269)- 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 pagefind from 1.3.0 to 1.4.0
Release notes
Sourced from pagefind's releases.
v1.4.0
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
- Added the Pagefind Playground
- Optionally hosted as part of your site, the playground gives you a deeper look into how results are calculated.
- Check out the playground for the Pagefind docs at https://pagefind.app/pagefind/playground/
- See 📘 Pagefind Playground to configure and view the playground for your own site.
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
- Added Thai (th) translations (PR #801 — thanks
@Phon1209!)- Added Thai segmenter support when indexing (PR #807 — thanks
@anonymaew!)- Added Basque (eu) translations (PR #826 — thanks
@erral!)- Added Norwegian Bokmål (nb) and Norwegian Nynorsk (nn) translations (PR #878 — thanks
@altinnadmin!)- Added Burmese (my) translations (PR #768 — thanks
@harrymkt!)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 🙂
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
- Added the Pagefind Playground
- Optionally hosted as part of your site, the playground gives you a deeper look into how results are calculated.
- Check out the playground for the Pagefind docs at https://pagefind.app/pagefind/playground/
- See 📘 Pagefind Playground to configure and view the playground for your own site.
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
- Added Thai (th) translations (PR #801 — thanks
@Phon1209!)- Added Thai segmenter support when indexing (PR #807 — thanks
@anonymaew!)- Added Basque (eu) translations (PR #826 — thanks
@erral!)- Added Norwegian Bokmål (nb) and Norwegian Nynorsk (nn) translations (PR #878 — thanks
@altinnadmin!)- Added Burmese (my) translations (PR #768 — thanks
@harrymkt!)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
8c3de15Merge pull request #915 from Pagefind/final-touches09b2928Final tweakse960777Merge pull request #914 from Pagefind/fix-py-pubaa11a98Fix python publishing12c4e96Merge pull request #913 from Pagefind/no-freebsd-py03d494eOmit FreeBSD support for the python wrapper1fc0ce0Merge pull request #912 from Pagefind/sep-2025-changelog51bc746Changelogfb84a50Merge pull request #813 from nguthiru/maindcb914fMerge pull request #826 from erral/main- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by bglw, a new releaser for pagefind since your current version.
Updates svelte from 5.34.8 to 5.38.6
Release notes
Sourced from svelte's releases.
svelte@5.38.6
Patch Changes
- fix: don't fail on
flushSyncwhile 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_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)
... (truncated)
Changelog
Sourced from svelte's changelog.
5.38.6
Patch Changes
- fix: don't fail on
flushSyncwhile 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_lossin async mode (#16644)5.38.2
Patch Changes
... (truncated)
Commits
942eaf0Version Packages (#16677)bde51edfix: don't fail onflushSyncwhile flushing effects (#16674)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)- 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
b7aa111ThanksPull Request Statistics
Commits:
1Files Changed:
2Additions:
+1462Deletions:
-1384
Package Dependencies
Technical Details
| ID: | 6208512 |
| UUID: | 2789266009 |
| Node ID: | PR_kwDOPCBez86mQNJZ |
| Host: | GitHub |
| Repository: | hyglgithub/AstroBlog |
| Merge State: | Unknown |