Skip to content

Releases: HiDeoo/starlight-links-validator

[email protected]

01 Dec 10:53
17e41f3

Choose a tag to compare

Patch Changes

  • #131 14f4d8d Thanks @DaniFoldi! - Adds astro as a peer dependency to prevent potential build errors in monorepos with hoisting disabled.

[email protected]

04 Nov 08:57
4dca73e

Choose a tag to compare

Patch Changes

  • #127 2c0e83d Thanks @HiDeoo! - Fixes validation issues with links containing query strings when using the Astro trailingSlash option.

[email protected]

18 Oct 09:26
93838fe

Choose a tag to compare

Minor Changes

[email protected]

16 Oct 16:52
e8d203c

Choose a tag to compare

Patch Changes

  • #121 242bc28 Thanks @HiDeoo! - Setups trusted publishing using OpenID Connect (OIDC) authentication — no code changes.

[email protected]

18 Sep 13:37
1d04d00

Choose a tag to compare

Minor Changes

  • #118 efef54a Thanks @HiDeoo! - Adds hyperlinks (OSC 8) support to validation terminal output.

    In supported terminals, error slugs can be conveniently used (e.g. with Ctrl+Click, Opt+Click, Cmd+Click, or a context menu) to open the corresponding file using the default associated application.

[email protected]

28 Aug 09:12
99831fd

Choose a tag to compare

Patch Changes

  • #115 b042c61 Thanks @trueberryless! - Fixes validation issue for links to Starlight page's title anchor, e.g. /getting-started/#_top.

[email protected]

16 Aug 10:09
3a568c1

Choose a tag to compare

Patch Changes

[email protected]

17 Jun 09:17
affd2ac

Choose a tag to compare

Minor Changes

  • #108 82f8ec5 Thanks @HiDeoo! - Adds support for excluding links from validation using a function.

    When using the function syntax, the function should return true for any link that should be excluded from validation or false otherwise. The function will be called for each link to validate and will receive an object containing various properties to help determine whether to exclude the link or not.

    Check out the exclude configuration option documentation for more details and examples.

[email protected]

12 Apr 15:09
11c906d

Choose a tag to compare

Minor Changes

  • #104 cbeaa0f Thanks @HiDeoo! - Ignores query strings when checking for excluded links.

    Previously, to exclude links with query strings, you may have needed to rely on fairly loose glob patterns, e.g. /playground/** to exclude /playground/, /playground/?id=foo and /playground/?id=bar. With this change, excluding /playground/ will ignore all query strings, so /playground/, /playground/?id=foo and /playground/?id=bar will all be excluded.

[email protected]

09 Apr 14:14
8957a8c

Choose a tag to compare

Patch Changes

  • #102 88e66a8 Thanks @HiDeoo! - Fixes a regression with version 0.15.0 where the errorOnLocalLinks option was not being applied correctly.