From c581651b2e3c8b2ceb4ba799a88ce8d9af282624 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 17 Jun 2024 14:28:58 +0200 Subject: [PATCH] fix(deps): update dependency starlight-blog to ^0.9.0 (#2303) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: FabianLars --- package.json | 2 +- pnpm-lock.yaml | 14 +++++++------- src/content/config.ts | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/package.json b/package.json index 492fc1764..94f480560 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "semver": "^7.6.0", "sharp": "^0.33.2", "shiki": "^1.1.7", - "starlight-blog": "^0.8.2", + "starlight-blog": "^0.9.0", "starlight-links-validator": "^0.9.0" }, "packageManager": "pnpm@9.3.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2f5a2f552..53d9f0116 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -60,8 +60,8 @@ importers: specifier: ^1.1.7 version: 1.7.0 starlight-blog: - specifier: ^0.8.2 - version: 0.8.3(@astrojs/starlight@0.24.2(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)))(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)) + specifier: ^0.9.0 + version: 0.9.0(@astrojs/starlight@0.24.2(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)))(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)) starlight-links-validator: specifier: ^0.9.0 version: 0.9.0(@astrojs/starlight@0.24.2(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)))(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)) @@ -3476,12 +3476,12 @@ packages: sprintf-js@1.0.3: resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} - starlight-blog@0.8.3: - resolution: {integrity: sha512-8Htu5KU5Z257ilsTxo1ozcU9pEjxui7TlCa6TgLxENhls98yIXIEunrseS9XYBiivxtL6Ly7BKx5qYGtXmyrEQ==} + starlight-blog@0.9.0: + resolution: {integrity: sha512-SpQulRfi8/lQ1XYz+YZ26/4o/gCeCqQ/IsMNRYD8erpxcBNq0/iGax32E3TsJVO2E9iM32LHvMrp0pF+vwk7fg==} engines: {node: '>=18.14.1'} peerDependencies: - '@astrojs/starlight': '>=0.22.1' - astro: '>=4.2.7' + '@astrojs/starlight': '>=0.24.0' + astro: '>=4.8.6' starlight-links-validator@0.9.0: resolution: {integrity: sha512-DJQDncEJBuuguPHJKP/SMmYdToWCFeEpZuRV5z9Qqgif3njJiF7dBRDAFdNIM2TCNADAZdseMOcR0iUpnvvjLQ==} @@ -8079,7 +8079,7 @@ snapshots: sprintf-js@1.0.3: {} - starlight-blog@0.8.3(@astrojs/starlight@0.24.2(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)))(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)): + starlight-blog@0.9.0(@astrojs/starlight@0.24.2(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)))(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)): dependencies: '@astrojs/rss': 4.0.5 '@astrojs/starlight': 0.24.2(astro@4.10.2(@types/node@20.14.2)(sass@1.77.5)(terser@5.31.0)(typescript@5.4.5)) diff --git a/src/content/config.ts b/src/content/config.ts index 7550b18ee..55ae1f9a1 100644 --- a/src/content/config.ts +++ b/src/content/config.ts @@ -3,6 +3,6 @@ import { docsSchema, i18nSchema } from '@astrojs/starlight/schema'; import { blogSchema } from 'starlight-blog/schema'; export const collections = { - docs: defineCollection({ schema: docsSchema({ extend: blogSchema() }) }), + docs: defineCollection({ schema: docsSchema({ extend: (context) => blogSchema(context) }) }), i18n: defineCollection({ type: 'data', schema: i18nSchema() }), };