Skip to content

build(deps-dev): bump starlight-llms-txt from 0.9.0 to 0.10.0#100

Merged
theagenticguy merged 1 commit into
mainfrom
dependabot/npm_and_yarn/starlight-llms-txt-0.9.0
May 14, 2026
Merged

build(deps-dev): bump starlight-llms-txt from 0.9.0 to 0.10.0#100
theagenticguy merged 1 commit into
mainfrom
dependabot/npm_and_yarn/starlight-llms-txt-0.9.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 13, 2026

Bumps starlight-llms-txt from 0.9.0 to 0.10.0.

Release notes

Sourced from starlight-llms-txt's releases.

starlight-llms-txt@0.10.0

Minor Changes

  • #105 aa7f8cf Thanks @​IEvangelist! - Extend the customSelectors option to support per-output control.

    The option is now exposed at the top level of the plugin configuration and accepts either of two shapes:

    • Array (legacy) — selectors apply to llms-small.txt only, matching the existing scope of minify.customSelectors.
    • Object with optional small, full, and all arrays — small applies to llms-small.txt, full applies to llms-full.txt and any customSets outputs, and all applies to both (merged with small and full).

    The deprecated minify.customSelectors option keeps working: selectors listed there are merged additively into the small bucket so existing configurations are unaffected.

    Use the new object shape to strip transient HTML injected by docs-site rendering plugins (for example, hover popovers from expressive-code-twoslash) from every generated output:

    starlightLlmsTxt({
      customSelectors: {
        all: ['.twoslash-popup-container', '.twoslash-error-box'],
      },
    }),
Changelog

Sourced from starlight-llms-txt's changelog.

0.10.0

Minor Changes

  • #105 aa7f8cf Thanks @​IEvangelist! - Extend the customSelectors option to support per-output control.

    The option is now exposed at the top level of the plugin configuration and accepts either of two shapes:

    • Array (legacy) — selectors apply to llms-small.txt only, matching the existing scope of minify.customSelectors.
    • Object with optional small, full, and all arrays — small applies to llms-small.txt, full applies to llms-full.txt and any customSets outputs, and all applies to both (merged with small and full).

    The deprecated minify.customSelectors option keeps working: selectors listed there are merged additively into the small bucket so existing configurations are unaffected.

    Use the new object shape to strip transient HTML injected by docs-site rendering plugins (for example, hover popovers from expressive-code-twoslash) from every generated output:

    starlightLlmsTxt({
      customSelectors: {
        all: ['.twoslash-popup-container', '.twoslash-error-box'],
      },
    }),
Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 13, 2026
@dependabot dependabot Bot requested a review from theagenticguy as a code owner May 13, 2026 08:34
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels May 13, 2026
theagenticguy added a commit that referenced this pull request May 14, 2026
## Summary

Consolidates all 11 open Dependabot PRs into one unified update so the
lockfile resolves once, CI runs once, and review is a single place.

**Supersedes:** #98, #99, #100, #101, #102, #103, #104, #105, #106,
#107, #108.

### npm_and_yarn group

- `@biomejs/biome` 2.4.14 → 2.4.15 (root)
- `@commitlint/cli` 21.0.0 → 21.0.1 (root)
- `@commitlint/config-conventional` 20.5.3 → 21.0.1 (root)
- `@types/node` 25.6.0 / 25.6.2 → 25.7.0 (root + 17 workspace packages)
- `@astrojs/starlight` ^0.38.4 → ^0.39.2 (packages/docs)
- `astro` ^6.2.1 → ^6.3.1 (packages/docs)
- `playwright` ^1.59.1 → ^1.60.0 (packages/docs)
- `starlight-llms-txt` ^0.8.1 → ^0.9.0 (packages/docs)
- `fast-xml-parser` 5.7.3 → 5.8.0 (packages/ingestion)
- `yaml` 2.8.4 → 2.9.0 (cli, frameworks, policy, sarif)
- `@chonkiejs/core` ^0.0.9 → ^0.0.10 (packages/pack)

### github_actions group

- `actions/cache` v4.2.3 → v5.0.5
(`.github/workflows/och-self-scan.yml`)
- `sigstore/cosign-installer` v3.7.0 → v4.1.2
(`.github/workflows/release.yml`)

### Follow-ups (required for Starlight 0.39)

- `biome.json`: bump `$schema` URL to `2.4.15` so Biome stops emitting
the
  mismatch info diagnostic.
- `packages/docs/astro.config.mjs`: migrate sidebar groups to the
  v0.39 shape (`items: [{ autogenerate: { directory: ... } }]`).
  Starlight 0.39 removed support for `autogenerate` on a label-only
  group; the docs build fails without this change.

## Test plan

- [x] `pnpm install --lockfile-only` regenerates the lockfile cleanly.
- [x] `pnpm install` succeeds (no peer-dep breakage).
- [x] `pnpm typecheck` passes across all 19 workspace projects.
- [x] `pnpm lint` passes (Biome 2.4.15 — 0 findings after `$schema`
bump).
- [x] `pnpm -r build` passes, including `@opencodehub/docs` on Starlight
0.39.2.
- [x] `pnpm -r test` passes (full suite green; the earlier storage
failure
  was stale `dist/` from the prior lockfile — rebuilt and re-tested).
- [x] Pre-push hook (`verdict` + `typecheck` + `test`) passed on the
final push.
@dependabot dependabot Bot changed the title build(deps-dev): bump starlight-llms-txt from 0.8.1 to 0.9.0 build(deps-dev): bump starlight-llms-txt from 0.9.0 to 0.10.0 May 14, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/starlight-llms-txt-0.9.0 branch from 4a13ac4 to 4b10d0a Compare May 14, 2026 14:22
theagenticguy added a commit that referenced this pull request May 14, 2026
## Summary

Unblocks Dependabot PRs from tripping commitlint's `scope-enum` rule.

Dependabot groups its PRs under three scopes:
- `deps` — production-dep bumps (already allowed)
- `deps-dev` — devDependency-only bumps (**was blocked**)
- `github_actions` — action version bumps (**was blocked**)

PR #100 (`starlight-llms-txt 0.9.0 → 0.10.0`) surfaced this gap: 35/36
checks green, only commitlint failed because \`build(deps-dev): ...\` is
not in the scope enum. Every future devDependency bump would have hit
the same wall.

## Change

Adds `deps-dev` and `github_actions` to the \`scope-enum\` list in
\`commitlint.config.mjs\`. No change to the other rules.

## Verified locally

Against the live lefthook rule, right after the edit:

| Commit header | Expected | Actual |
|---|---|---|
| \`build(deps-dev): bump X from ...\` | pass | pass |
| \`build(github_actions): bump X from ...\` | pass | pass |
| \`feat(cli): add flag\` | pass | pass (regression) |
| \`feat(bogus): should fail\` | fail | fail — \`scope must be one of
[...]\` |

## Test plan

- [x] \`pnpm exec commitlint\` passes on \`build(deps-dev): ...\` and
      \`build(github_actions): ...\`.
- [x] Unknown scopes still fail (rule still enforced).
- [x] CI \`commitlint\` job will cover the change once this PR itself
runs.
@theagenticguy
Copy link
Copy Markdown
Owner

@dependabot rebase

Bumps [starlight-llms-txt](https://github.com/delucis/starlight-llms-txt/tree/HEAD/packages/starlight-llms-txt) from 0.9.0 to 0.10.0.
- [Release notes](https://github.com/delucis/starlight-llms-txt/releases)
- [Changelog](https://github.com/delucis/starlight-llms-txt/blob/main/packages/starlight-llms-txt/CHANGELOG.md)
- [Commits](https://github.com/delucis/starlight-llms-txt/commits/starlight-llms-txt@0.10.0/packages/starlight-llms-txt)

---
updated-dependencies:
- dependency-name: starlight-llms-txt
  dependency-version: 0.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/starlight-llms-txt-0.9.0 branch from 4b10d0a to 8f6de92 Compare May 14, 2026 18:00
@theagenticguy theagenticguy merged commit 40ec81d into main May 14, 2026
37 checks passed
@theagenticguy theagenticguy deleted the dependabot/npm_and_yarn/starlight-llms-txt-0.9.0 branch May 14, 2026 18:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant