From 4496c424c5241c0dfb331e15cd9d7efc4c7c8c23 Mon Sep 17 00:00:00 2001 From: TrueCharts Bot Date: Sun, 3 Nov 2024 13:23:39 +0100 Subject: [PATCH] =?UTF-8?q?fix(website):=20update=20starlight-links-valida?= =?UTF-8?q?tor=200.12.4=20=E2=86=92=200.13.0=20(#28760)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [starlight-links-validator](https://redirect.github.com/HiDeoo/starlight-links-validator) | dependencies | minor | [`0.12.4` -> `0.13.0`](https://renovatebot.com/diffs/npm/starlight-links-validator/0.12.4/0.13.0) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Release Notes
HiDeoo/starlight-links-validator (starlight-links-validator) ### [`v0.13.0`](https://redirect.github.com/HiDeoo/starlight-links-validator/releases/tag/v0.13.0) [Compare Source](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.12.4...v0.13.0) #####    🚨 Breaking Changes - Adds errors for local links, e.g. URLs with a hostname of `localhost` or `127.0.0.1`  -  by [@​HiDeoo](https://redirect.github.com/HiDeoo) [(80636)](https://redirect.github.com/HiDeoo/starlight-links-validator/commit/806366c) In previous versions, such links were silently ignored. They are now considered as invalid links as they are usually used for development purposes and should not be present in production. If you want to preserve the previous behaviour, you can set the `errorOnLocalLinks` option to `false` in your `astro.config.mjs` file: ```ts export default defineConfig({ integrations: [ starlight({ plugins: [ starlightLinksValidator({ errorOnLocalLinks: false, }), ], }), ], }); ``` #####     [View changes on GitHub](https://redirect.github.com/HiDeoo/starlight-links-validator/compare/v0.12.4...v0.13.0)
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). --- website/package-lock.json | 8 ++++---- website/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/website/package-lock.json b/website/package-lock.json index 39b4d5ce14359..58fd8c4a5c960 100644 --- a/website/package-lock.json +++ b/website/package-lock.json @@ -23,7 +23,7 @@ "sharp": "0.33.5", "starlight-blog": "0.14.1", "starlight-image-zoom": "0.8.0", - "starlight-links-validator": "0.12.4", + "starlight-links-validator": "0.13.0", "tailwindcss": "3.4.14", "typescript": "5.6.3" } @@ -8541,9 +8541,9 @@ } }, "node_modules/starlight-links-validator": { - "version": "0.12.4", - "resolved": "https://registry.npmjs.org/starlight-links-validator/-/starlight-links-validator-0.12.4.tgz", - "integrity": "sha512-4MJ/BoTpdlKxfCL/pk931TGHYf7kNt812gRyNbhnIdwubjjzUy4J6J57TBY1yXcDVizWjHpGqHrqTeK0QhbemQ==", + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/starlight-links-validator/-/starlight-links-validator-0.13.0.tgz", + "integrity": "sha512-+kG/SO3j5190k7du5dd1Lcj9ZWvrjk9dhpsedEFC8AhfujkwuSkYm0b3u/jl3Yu9mA6zYA2JPlizAr9GtQssRg==", "license": "MIT", "dependencies": { "@types/picomatch": "2.3.3", diff --git a/website/package.json b/website/package.json index 340f3b8b75d2d..3d1076fa42df2 100644 --- a/website/package.json +++ b/website/package.json @@ -32,7 +32,7 @@ "sharp": "0.33.5", "starlight-blog": "0.14.1", "starlight-image-zoom": "0.8.0", - "starlight-links-validator": "0.12.4", + "starlight-links-validator": "0.13.0", "tailwindcss": "3.4.14", "typescript": "5.6.3" }