Skip to content

Bump dorny/paths-filter from 3.0.2 to 4.0.1#2

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/dorny/paths-filter-4.0.1
Closed

Bump dorny/paths-filter from 3.0.2 to 4.0.1#2
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/dorny/paths-filter-4.0.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 28, 2026

Copy link
Copy Markdown

Bumps dorny/paths-filter from 3.0.2 to 4.0.1.

Release notes

Sourced from dorny/paths-filter's releases.

v4.0.1

What's Changed

New Contributors

Full Changelog: dorny/paths-filter@v4.0.0...v4.0.1

v4.0.0

What's Changed

New Contributors

Full Changelog: dorny/paths-filter@v3.0.3...v4.0.0

v3.0.3

What's Changed

New Contributors

Full Changelog: dorny/paths-filter@v3...v3.0.3

Changelog

Sourced from dorny/paths-filter's changelog.

Changelog

v4.0.0

v3.0.3

Commits
  • fbd0ab8 feat: add merge_group event support
  • efb1da7 feat: add dist/ freshness check to PR workflow
  • d8f7b06 Merge pull request #302 from dorny/issue-299
  • addbc14 Update README for v4
  • 9d7afb8 Update CHANGELOG for v4.0.0
  • 782470c Merge branch 'releases/v3'
  • d1c1ffe Update CHANGELOG for v3.0.3
  • ce10459 Merge pull request #294 from saschabratton/master
  • 5f40380 feat: update action runtime to node24
  • 668c092 Merge pull request #279 from wardpeet/patch-1
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [dorny/paths-filter](https://github.com/dorny/paths-filter) from 3.0.2 to 4.0.1.
- [Release notes](https://github.com/dorny/paths-filter/releases)
- [Changelog](https://github.com/dorny/paths-filter/blob/master/CHANGELOG.md)
- [Commits](dorny/paths-filter@v3.0.2...v4.0.1)

---
updated-dependencies:
- dependency-name: dorny/paths-filter
  dependency-version: 4.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Mar 28, 2026
@dependabot @github

dependabot Bot commented on behalf of github Mar 29, 2026

Copy link
Copy Markdown
Author

Looks like dorny/paths-filter is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Mar 29, 2026
@dependabot dependabot Bot deleted the dependabot/github_actions/dorny/paths-filter-4.0.1 branch March 29, 2026 10:38
tony added a commit that referenced this pull request May 10, 2026
…s only

why: External CSS expert recommendation #2. The previous prefix
wrapper rule re-fonted the entire `name (type)` portion to
monospace — including parens, brackets, commas, and ellipsis.  The
expert noted: only the parameter name and type cross-references are
truly "code"; structural punctuation around them should stay sans
so the syntax-vs-text boundary is clearer.  Reduces the optical
mass of each row without changing what's actually monospace.

what:
- .gp-sphinx-field-prefix: change `font-family: var(--font-stack
  --monospace)` to `font-family: inherit`. The wrapper becomes a
  presentational container for the prefix text run; its children
  pick their own font-family.
- Add `.gp-sphinx-field-prefix > strong` rule pinning the bold
  parameter name to monospace — it's the row's primary identifier
  and reads as code alongside the type.
- Inline `<code>` xref children continue to pick up monospace from
  Furo's `code.literal` rule in gp-furo-theme/.../code.css —
  unchanged, no new rule needed here.
- Trim the docstring on the wrapper rule to reflect the new intent.

verification: at 1280 px on the typehints-gp examples page,
getComputedStyle('.gp-sphinx-field-prefix').fontFamily returns
"IBM Plex Sans" (was "IBM Plex Mono"); strong child returns
"IBM Plex Mono"; code.literal child returns "IBM Plex Mono"; the
inline span.p (bracket/comma punctuation) returns "IBM Plex Sans".
tony added a commit that referenced this pull request May 10, 2026
…m name

why: External expert refinement #2. Pre-FE5 the row carried two
mono treatments: <strong> (param name) in mono bold black, and
<code class="xref"> (type chip) in mono regular blue with chip
background. Two distinct mono runs in the same row read busier
than necessary. Sans-bold for the param name lets it read as a
definition term; mono is then cleanly scoped to "code identifier
inside chip" — semantic match, single mono treatment per row.

what:
- Delete `.gp-sphinx-field-prefix > strong { font-family: var(
  --font-stack--monospace) }`. <strong> now inherits font-family
  from its .gp-sphinx-field-prefix parent (which is `inherit`,
  resolves to body sans). The browser's default `<strong>
  { font-weight: 700 }` keeps the bold weight.
- Trim the surrounding comment to reflect the new policy: the
  prefix wrapper now leaves all family resolution to inheritance;
  only the inline <code> children pick up monospace (via Furo's
  code.literal rule, no extra rule on our side).

verification: at 1280 px, getComputedStyle('.gp-sphinx-field-prefix
> strong').fontFamily returns "IBM Plex Sans" (was "IBM Plex Mono");
fontWeight stays 700. Type chips still render in IBM Plex Mono with
chip background (Furo's rule unaffected).

If the live preview reads as off (e.g. param names lose their
"identifier" feel without mono), revert this single commit; FE4's
chip-padding fix and the rest of the round-2 work stand on their own.
tony added a commit that referenced this pull request May 10, 2026
…s only

why: External CSS expert recommendation #2. The previous prefix
wrapper rule re-fonted the entire `name (type)` portion to
monospace — including parens, brackets, commas, and ellipsis.  The
expert noted: only the parameter name and type cross-references are
truly "code"; structural punctuation around them should stay sans
so the syntax-vs-text boundary is clearer.  Reduces the optical
mass of each row without changing what's actually monospace.

what:
- .gp-sphinx-field-prefix: change `font-family: var(--font-stack
  --monospace)` to `font-family: inherit`. The wrapper becomes a
  presentational container for the prefix text run; its children
  pick their own font-family.
- Add `.gp-sphinx-field-prefix > strong` rule pinning the bold
  parameter name to monospace — it's the row's primary identifier
  and reads as code alongside the type.
- Inline `<code>` xref children continue to pick up monospace from
  Furo's `code.literal` rule in gp-furo-theme/.../code.css —
  unchanged, no new rule needed here.
- Trim the docstring on the wrapper rule to reflect the new intent.

verification: at 1280 px on the typehints-gp examples page,
getComputedStyle('.gp-sphinx-field-prefix').fontFamily returns
"IBM Plex Sans" (was "IBM Plex Mono"); strong child returns
"IBM Plex Mono"; code.literal child returns "IBM Plex Mono"; the
inline span.p (bracket/comma punctuation) returns "IBM Plex Sans".
tony added a commit that referenced this pull request May 10, 2026
…m name

why: External expert refinement #2. Pre-FE5 the row carried two
mono treatments: <strong> (param name) in mono bold black, and
<code class="xref"> (type chip) in mono regular blue with chip
background. Two distinct mono runs in the same row read busier
than necessary. Sans-bold for the param name lets it read as a
definition term; mono is then cleanly scoped to "code identifier
inside chip" — semantic match, single mono treatment per row.

what:
- Delete `.gp-sphinx-field-prefix > strong { font-family: var(
  --font-stack--monospace) }`. <strong> now inherits font-family
  from its .gp-sphinx-field-prefix parent (which is `inherit`,
  resolves to body sans). The browser's default `<strong>
  { font-weight: 700 }` keeps the bold weight.
- Trim the surrounding comment to reflect the new policy: the
  prefix wrapper now leaves all family resolution to inheritance;
  only the inline <code> children pick up monospace (via Furo's
  code.literal rule, no extra rule on our side).

verification: at 1280 px, getComputedStyle('.gp-sphinx-field-prefix
> strong').fontFamily returns "IBM Plex Sans" (was "IBM Plex Mono");
fontWeight stays 700. Type chips still render in IBM Plex Mono with
chip background (Furo's rule unaffected).

If the live preview reads as off (e.g. param names lose their
"identifier" feel without mono), revert this single commit; FE4's
chip-padding fix and the rest of the round-2 work stand on their own.
tony added a commit that referenced this pull request May 10, 2026
…s only

why: External CSS expert recommendation #2. The previous prefix
wrapper rule re-fonted the entire `name (type)` portion to
monospace — including parens, brackets, commas, and ellipsis.  The
expert noted: only the parameter name and type cross-references are
truly "code"; structural punctuation around them should stay sans
so the syntax-vs-text boundary is clearer.  Reduces the optical
mass of each row without changing what's actually monospace.

what:
- .gp-sphinx-field-prefix: change `font-family: var(--font-stack
  --monospace)` to `font-family: inherit`. The wrapper becomes a
  presentational container for the prefix text run; its children
  pick their own font-family.
- Add `.gp-sphinx-field-prefix > strong` rule pinning the bold
  parameter name to monospace — it's the row's primary identifier
  and reads as code alongside the type.
- Inline `<code>` xref children continue to pick up monospace from
  Furo's `code.literal` rule in gp-furo-theme/.../code.css —
  unchanged, no new rule needed here.
- Trim the docstring on the wrapper rule to reflect the new intent.

verification: at 1280 px on the typehints-gp examples page,
getComputedStyle('.gp-sphinx-field-prefix').fontFamily returns
"IBM Plex Sans" (was "IBM Plex Mono"); strong child returns
"IBM Plex Mono"; code.literal child returns "IBM Plex Mono"; the
inline span.p (bracket/comma punctuation) returns "IBM Plex Sans".
tony added a commit that referenced this pull request May 10, 2026
…m name

why: External expert refinement #2. Pre-FE5 the row carried two
mono treatments: <strong> (param name) in mono bold black, and
<code class="xref"> (type chip) in mono regular blue with chip
background. Two distinct mono runs in the same row read busier
than necessary. Sans-bold for the param name lets it read as a
definition term; mono is then cleanly scoped to "code identifier
inside chip" — semantic match, single mono treatment per row.

what:
- Delete `.gp-sphinx-field-prefix > strong { font-family: var(
  --font-stack--monospace) }`. <strong> now inherits font-family
  from its .gp-sphinx-field-prefix parent (which is `inherit`,
  resolves to body sans). The browser's default `<strong>
  { font-weight: 700 }` keeps the bold weight.
- Trim the surrounding comment to reflect the new policy: the
  prefix wrapper now leaves all family resolution to inheritance;
  only the inline <code> children pick up monospace (via Furo's
  code.literal rule, no extra rule on our side).

verification: at 1280 px, getComputedStyle('.gp-sphinx-field-prefix
> strong').fontFamily returns "IBM Plex Sans" (was "IBM Plex Mono");
fontWeight stays 700. Type chips still render in IBM Plex Mono with
chip background (Furo's rule unaffected).

If the live preview reads as off (e.g. param names lose their
"identifier" feel without mono), revert this single commit; FE4's
chip-padding fix and the rest of the round-2 work stand on their own.
tony added a commit that referenced this pull request May 10, 2026
…s only

why: External CSS expert recommendation #2. The previous prefix
wrapper rule re-fonted the entire `name (type)` portion to
monospace — including parens, brackets, commas, and ellipsis.  The
expert noted: only the parameter name and type cross-references are
truly "code"; structural punctuation around them should stay sans
so the syntax-vs-text boundary is clearer.  Reduces the optical
mass of each row without changing what's actually monospace.

what:
- .gp-sphinx-field-prefix: change `font-family: var(--font-stack
  --monospace)` to `font-family: inherit`. The wrapper becomes a
  presentational container for the prefix text run; its children
  pick their own font-family.
- Add `.gp-sphinx-field-prefix > strong` rule pinning the bold
  parameter name to monospace — it's the row's primary identifier
  and reads as code alongside the type.
- Inline `<code>` xref children continue to pick up monospace from
  Furo's `code.literal` rule in gp-furo-theme/.../code.css —
  unchanged, no new rule needed here.
- Trim the docstring on the wrapper rule to reflect the new intent.

verification: at 1280 px on the typehints-gp examples page,
getComputedStyle('.gp-sphinx-field-prefix').fontFamily returns
"IBM Plex Sans" (was "IBM Plex Mono"); strong child returns
"IBM Plex Mono"; code.literal child returns "IBM Plex Mono"; the
inline span.p (bracket/comma punctuation) returns "IBM Plex Sans".
tony added a commit that referenced this pull request May 10, 2026
…m name

why: External expert refinement #2. Pre-FE5 the row carried two
mono treatments: <strong> (param name) in mono bold black, and
<code class="xref"> (type chip) in mono regular blue with chip
background. Two distinct mono runs in the same row read busier
than necessary. Sans-bold for the param name lets it read as a
definition term; mono is then cleanly scoped to "code identifier
inside chip" — semantic match, single mono treatment per row.

what:
- Delete `.gp-sphinx-field-prefix > strong { font-family: var(
  --font-stack--monospace) }`. <strong> now inherits font-family
  from its .gp-sphinx-field-prefix parent (which is `inherit`,
  resolves to body sans). The browser's default `<strong>
  { font-weight: 700 }` keeps the bold weight.
- Trim the surrounding comment to reflect the new policy: the
  prefix wrapper now leaves all family resolution to inheritance;
  only the inline <code> children pick up monospace (via Furo's
  code.literal rule, no extra rule on our side).

verification: at 1280 px, getComputedStyle('.gp-sphinx-field-prefix
> strong').fontFamily returns "IBM Plex Sans" (was "IBM Plex Mono");
fontWeight stays 700. Type chips still render in IBM Plex Mono with
chip background (Furo's rule unaffected).

If the live preview reads as off (e.g. param names lose their
"identifier" feel without mono), revert this single commit; FE4's
chip-padding fix and the rest of the round-2 work stand on their own.
tony added a commit that referenced this pull request May 11, 2026
…s only

why: External CSS expert recommendation #2. The previous prefix
wrapper rule re-fonted the entire `name (type)` portion to
monospace — including parens, brackets, commas, and ellipsis.  The
expert noted: only the parameter name and type cross-references are
truly "code"; structural punctuation around them should stay sans
so the syntax-vs-text boundary is clearer.  Reduces the optical
mass of each row without changing what's actually monospace.

what:
- .gp-sphinx-field-prefix: change `font-family: var(--font-stack
  --monospace)` to `font-family: inherit`. The wrapper becomes a
  presentational container for the prefix text run; its children
  pick their own font-family.
- Add `.gp-sphinx-field-prefix > strong` rule pinning the bold
  parameter name to monospace — it's the row's primary identifier
  and reads as code alongside the type.
- Inline `<code>` xref children continue to pick up monospace from
  Furo's `code.literal` rule in gp-furo-theme/.../code.css —
  unchanged, no new rule needed here.
- Trim the docstring on the wrapper rule to reflect the new intent.

verification: at 1280 px on the typehints-gp examples page,
getComputedStyle('.gp-sphinx-field-prefix').fontFamily returns
"IBM Plex Sans" (was "IBM Plex Mono"); strong child returns
"IBM Plex Mono"; code.literal child returns "IBM Plex Mono"; the
inline span.p (bracket/comma punctuation) returns "IBM Plex Sans".
tony added a commit that referenced this pull request May 11, 2026
…m name

why: External expert refinement #2. Pre-FE5 the row carried two
mono treatments: <strong> (param name) in mono bold black, and
<code class="xref"> (type chip) in mono regular blue with chip
background. Two distinct mono runs in the same row read busier
than necessary. Sans-bold for the param name lets it read as a
definition term; mono is then cleanly scoped to "code identifier
inside chip" — semantic match, single mono treatment per row.

what:
- Delete `.gp-sphinx-field-prefix > strong { font-family: var(
  --font-stack--monospace) }`. <strong> now inherits font-family
  from its .gp-sphinx-field-prefix parent (which is `inherit`,
  resolves to body sans). The browser's default `<strong>
  { font-weight: 700 }` keeps the bold weight.
- Trim the surrounding comment to reflect the new policy: the
  prefix wrapper now leaves all family resolution to inheritance;
  only the inline <code> children pick up monospace (via Furo's
  code.literal rule, no extra rule on our side).

verification: at 1280 px, getComputedStyle('.gp-sphinx-field-prefix
> strong').fontFamily returns "IBM Plex Sans" (was "IBM Plex Mono");
fontWeight stays 700. Type chips still render in IBM Plex Mono with
chip background (Furo's rule unaffected).

If the live preview reads as off (e.g. param names lose their
"identifier" feel without mono), revert this single commit; FE4's
chip-padding fix and the rest of the round-2 work stand on their own.
tony added a commit that referenced this pull request May 11, 2026
…s only

why: External CSS expert recommendation #2. The previous prefix
wrapper rule re-fonted the entire `name (type)` portion to
monospace — including parens, brackets, commas, and ellipsis.  The
expert noted: only the parameter name and type cross-references are
truly "code"; structural punctuation around them should stay sans
so the syntax-vs-text boundary is clearer.  Reduces the optical
mass of each row without changing what's actually monospace.

what:
- .gp-sphinx-field-prefix: change `font-family: var(--font-stack
  --monospace)` to `font-family: inherit`. The wrapper becomes a
  presentational container for the prefix text run; its children
  pick their own font-family.
- Add `.gp-sphinx-field-prefix > strong` rule pinning the bold
  parameter name to monospace — it's the row's primary identifier
  and reads as code alongside the type.
- Inline `<code>` xref children continue to pick up monospace from
  Furo's `code.literal` rule in gp-furo-theme/.../code.css —
  unchanged, no new rule needed here.
- Trim the docstring on the wrapper rule to reflect the new intent.

verification: at 1280 px on the typehints-gp examples page,
getComputedStyle('.gp-sphinx-field-prefix').fontFamily returns
"IBM Plex Sans" (was "IBM Plex Mono"); strong child returns
"IBM Plex Mono"; code.literal child returns "IBM Plex Mono"; the
inline span.p (bracket/comma punctuation) returns "IBM Plex Sans".
tony added a commit that referenced this pull request May 11, 2026
…m name

why: External expert refinement #2. Pre-FE5 the row carried two
mono treatments: <strong> (param name) in mono bold black, and
<code class="xref"> (type chip) in mono regular blue with chip
background. Two distinct mono runs in the same row read busier
than necessary. Sans-bold for the param name lets it read as a
definition term; mono is then cleanly scoped to "code identifier
inside chip" — semantic match, single mono treatment per row.

what:
- Delete `.gp-sphinx-field-prefix > strong { font-family: var(
  --font-stack--monospace) }`. <strong> now inherits font-family
  from its .gp-sphinx-field-prefix parent (which is `inherit`,
  resolves to body sans). The browser's default `<strong>
  { font-weight: 700 }` keeps the bold weight.
- Trim the surrounding comment to reflect the new policy: the
  prefix wrapper now leaves all family resolution to inheritance;
  only the inline <code> children pick up monospace (via Furo's
  code.literal rule, no extra rule on our side).

verification: at 1280 px, getComputedStyle('.gp-sphinx-field-prefix
> strong').fontFamily returns "IBM Plex Sans" (was "IBM Plex Mono");
fontWeight stays 700. Type chips still render in IBM Plex Mono with
chip background (Furo's rule unaffected).

If the live preview reads as off (e.g. param names lose their
"identifier" feel without mono), revert this single commit; FE4's
chip-padding fix and the rest of the round-2 work stand on their own.
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 github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants