Skip to content

chore(deps-dev): bump the development group across 1 directory with 3 updates - #9

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-278478b9b5
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-278478b9b5

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the development group with 3 updates in the / directory: eslint, poops and poops-docs-theme.

Updates eslint from 9.39.5 to 10.8.1

Release notes

Sourced from eslint's releases.

v10.8.1

Bug Fixes

  • 18eb0a7 fix: prevent ASI hazard in no-unused-labels autofix (#21173) (dongkyu lee)
  • 151ba3f fix: false positives in getter-return and accessor-pairs (#21163) (Grit)
  • 6898df9 fix: ignore meta-property names in id-denylist (#21166) (Pixel)
  • 4d7db66 fix: ignore meta-property names in id-match (#21167) (Pixel)
  • 677214e fix: handle ASI hazards in no-unused-vars removeVar suggestion (#20935) (kuldeep kumar)

Documentation

  • 7d0cbf8 docs: Update README (GitHub Actions Bot)
  • 0a05812 docs: add missing backticks to no-duplicate-imports.js (#21183) (Lee Daeun)
  • 678c90b docs: Update README (GitHub Actions Bot)
  • 8a10424 docs: Update README (GitHub Actions Bot)
  • 69bb948 docs: Update README (GitHub Actions Bot)

Chores

  • 0a14800 chore: update github/codeql-action action to v4.37.4 (#21196) (renovate[bot])
  • 05adcb1 test: fix failing ecosystem test for eslint-plugin-unicorn (#21191) (Lazizbek Ergashev)
  • 5611035 test: add error locations info to no-void (#21185) (Lee Daeun)
  • ee47333 ci: bump github/codeql-action from 4 to 4.37.3 (#21176) (dependabot[bot])
  • f131c03 chore: improve ecosystem test failure reporting (#20937) (crimsonjay0)
  • 1f6edde chore: update ecosystem plugins (#21182) (ESLint Bot)
  • d3266fb chore: unpin webpack dependency (#21172) (Francesco Trotta)
  • 65a6519 chore: add allowScripts field to package.json (#21092) (GiHoon Noh)
  • 22e5256 ci: add triage:no label to Dependabot PRs (#21141) (lumir)
  • 55c9038 ci: bump actions/labeler from 6 to 7 (#21159) (dependabot[bot])
  • 7280e78 chore: update dependency prettier to v3.9.6 (#21162) (renovate[bot])
  • eddbad6 test: fix failing ecosystem test for eslint-plugin-unicorn (#21156) (Francesco Trotta)
  • 60a178d chore: update ecosystem plugins (#21150) (ESLint Bot)
  • f9f61dc test: add error locations to no-unreachable (#21151) (JIYEON)
  • d086293 test: add error locations to no-undef (#21147) (JIYEON)
  • cc01b67 test: add error locations to no-useless-catch (#21144) (devoil)
  • 688e75e chore: add missing backticks in JSDoc (#21143) (Bo Hyun Kim)
  • 7c1e175 test: add error locations to require-await (#21145) (Grit)
  • 588a26d test: add error locations to no-extra-label (#21139) (dongkyu lee)
  • 059aa89 test: add error locations to no-useless-concat (#21140) (dongkyu lee)
  • 5a452a8 test: add error locations to no-const-assign (#21138) (dongkyu lee)

v10.8.0

Features

  • 2fee9bb feat: export ConfigObject from eslint/config (#21082) (sethamus)

Bug Fixes

  • 6b8d2f7 fix: escape reserved characters in rule id in html formatter (#21129) (Francesco Trotta)
  • 9091071 fix: prevent no-unreachable-loop crash when all loop types are ignored (#21116) (Pixel)
  • e23fafe fix: prefer-object-spread add semicolon when adding parenthesis (#21081) (synthex-byte)
  • 20b5ad0 fix: quadratic-time regex in prefer-template (#21096) (Milos Djermanovic)
  • 8b6f6c0 fix: apply ignore configs to computed methods in class-methods-use-this (#21094) (Pixel)
  • b2c608c fix: NewExpression with parenthesized callee in preserve-caught-error (#21083) (Francesco Trotta)

... (truncated)

Commits

Updates poops from 2.3.0 to 2.5.0

Release notes

Sourced from poops's releases.

v2.5.0

A page whose body was built from template tags described itself with their source. # {{ site.title }} over {{ site.description }} shipped an og:description reading "site.description" and an anchor at #site-title, while the page itself rendered the real title and the real description right underneath. The build stayed green through both, and the only symptom was a link preview nobody looks at until someone shares the page.

Added

  • A description filter emits <meta name="description">, escaped. {{ page | description(site) }} (Liquid: {{ page | description: site }}) reads the same chain og and jsonld do — front matter description, then the page's auto-excerpt, then site.description — so the three cannot disagree, and emits nothing when none of them is set. Poops renders with autoescape off, so a layout writing that tag by hand ships the front matter verbatim: one " in a sentence closes the attribute and truncates the description to the words before it, silently, on a green build. Poops' own v2.4.0 post described itself as A for exactly that reason. Escaping now happens in one named place rather than in every layout that remembers.

Fixed

  • page.excerpt is taken after the template engine has run. A first paragraph written as {{ site.description }}, or supplied by an {% include %} ahead of the prose, is resolved before the text is taken, so the description is the one a reader gets. The excerpt now reads the rendered body's first <p> rather than guessing at the markdown source — headings, comments, code fences and tables are skipped because they are not paragraphs, and link text comes through without its URL. When nothing usable resolves the excerpt is empty and og/jsonld/<meta name="description"> fall through to site.description — the old behaviour was to strip the braces and ship site.description as a literal string, which then beat the very value it was standing in front of. Only pages whose first paragraph is a tag pay for the extra render.

    A collection item is read without a page context, so its excerpt is empty in that case rather than resolved; listings and feeds fall back to the item's description. The item's own page still resolves it.

  • Heading ids are slugged from the rendered heading. # {{ site.title }}, # {{ page.title }} and # My Site now all anchor at #my-site, so swapping which variable feeds a heading no longer remints every bookmarked URL. The toc filter slugs from the same text, so its links still land.

Full Changelog: stamat/poops@v2.4.0...v2.5.0

v2.4.0

A "last updated" line under a post had two ways to get its date and both were

... (truncated)

Changelog

Sourced from poops's changelog.

[2.5.0] - 2026-08-11 — metadata describes what the reader gets

A page whose body was built from template tags described itself with their source. # {{ site.title }} over {{ site.description }} shipped an og:description reading "site.description" and an anchor at #site-title, while the page itself rendered the real title and the real description right underneath. The build stayed green through both, and the only symptom was a link preview nobody looks at until someone shares the page.

Added

  • A description filter emits <meta name="description">, escaped. {{ page | description(site) }} (Liquid: {{ page | description: site }}) reads the same chain og and jsonld do — front matter description, then the page's auto-excerpt, then site.description — so the three cannot disagree, and emits nothing when none of them is set. Poops renders with autoescape off, so a layout writing that tag by hand ships the front matter verbatim: one " in a sentence closes the attribute and truncates the description to the words before it, silently, on a green build. Poops' own v2.4.0 post described itself as A for exactly that reason. Escaping now happens in one named place rather than in every layout that remembers.

Fixed

  • page.excerpt is taken after the template engine has run. A first paragraph written as {{ site.description }}, or supplied by an {% include %} ahead of the prose, is resolved before the text is taken, so the description is the one a reader gets. The excerpt now reads the rendered body's first <p> rather than guessing at the markdown source — headings, comments, code fences and tables are skipped because they are not paragraphs, and link text comes through without its URL. When nothing usable resolves the excerpt is empty and og/jsonld/<meta name="description"> fall through to site.description — the old behaviour was to strip the braces and ship site.description as a literal string, which then beat the very value it was standing in front of. Only pages whose first paragraph is a tag pay for the extra render.

    A collection item is read without a page context, so its excerpt is empty in that case rather than resolved; listings and feeds fall back to the item's description. The item's own page still resolves it.

  • Heading ids are slugged from the rendered heading. # {{ site.title }}, # {{ page.title }} and # My Site now all anchor at #my-site, so swapping which variable feeds a heading no longer remints every bookmarked URL. The toc filter slugs from the same text, so its links still land.

[2.4.0] - 2026-08-10 — last updated dates that survive a clone

A "last updated" line under a post had two ways to get its date and both were bad. Keep updated current by hand and it is one more thing to forget in every

... (truncated)

Commits
  • 103eba0 Build version 2.5.0
  • 4b065f5 Bump version to 2.5.0
  • dcd33cd ad escaping guidance for attribute values in templating HTML documentation
  • 4ebcdf2 escape filter for description meta
  • e2769d1 fix #56 - excerpt and heading slug generation fixes when nunjucks/liquid temp...
  • e3831d9 bump poops-docs-theme to v4.1.0
  • c7b6f1a Build version 2.4.0
  • a0de0d5 Bump version to 2.4.0
  • 75b0640 true lastUpdated timestamp
  • 55a0831 bump poops-docs-theme v4.0.2
  • Additional commits viewable in compare view

Updates poops-docs-theme from 4.0.2 to 4.6.0

Release notes

Sourced from poops-docs-theme's releases.

v4.6.0

Both layouts carried their own copy of the footer line, so the two had to be edited in step. Neither had a copyright, and neither had a seam: a site that wanted one more name in the "Built with" list had to restate the whole line through site.footer. Across the sites doing that, the version is what went missing on the way — the hand-written string had no {{ version }} in it, and nothing failed to say so.

Added

  • site.builtWith appends to the credits. An array of { title, url } — the shape site.links already uses — joined onto Poops and this theme with commas and a final and. A site adding code-preview-element writes one entry instead of restating the brand, the version, the licence and the two credits it did not want to change.

  • The footer names the author. MIT © @you where it used to say MIT licensed, read from package.json's author. A @handle in the email slot of npm's string form ("Ada Lovelace <@ada>") is read as a GitHub account and linked there; npm's object form is linked to its url; anything else prints the bare name unlinked, and a package.json with no author at all still renders MIT licensed. exactly as before. The handle wins over a url when both are given.

Changed

  • The footer moved into footer.html, imported by both layouts. One source for a line that was duplicated in docs.html and prose.html. Nothing about the markup it emits changed — same <footer class="page-footer">, same place in the document — so a site styling or scripting against it needs no change. The {% block footer %} in prose.html is still there and still overridable.

  • A missing version drops its clause instead of printing v. The old line printed the v unconditionally, so a package.json without a version rendered brand v — MIT.

Full Changelog: stamat/poops-docs-theme@v4.5.1...v4.6.0

v4.5.1

tbd

v4.5.0

The in-nav table of contents was a list of links and nothing more: on a long page it told you where you could go and never where you were. Reading past the fold meant scrolling the article with one eye on the sidebar, counting headings.

Added

  • The table of contents marks the section being read. The entry for the section under the reading line gets aria-current="location" as you scroll — the reading line being where a clicked entry parks its heading, which is the root's scroll-padding-top plus the heading's own scroll-margin-top, both already declared. location rather than page: the sidebar link this list

... (truncated)

Changelog

Sourced from poops-docs-theme's changelog.

[4.6.0] - 2026-08-23 — the footer says who wrote it, and adding a credit no longer costs the version

Both layouts carried their own copy of the footer line, so the two had to be edited in step. Neither had a copyright, and neither had a seam: a site that wanted one more name in the "Built with" list had to restate the whole line through site.footer. Across the sites doing that, the version is what went missing on the way — the hand-written string had no {{ version }} in it, and nothing failed to say so.

Added

  • site.builtWith appends to the credits. An array of { title, url } — the shape site.links already uses — joined onto Poops and this theme with commas and a final and. A site adding code-preview-element writes one entry instead of restating the brand, the version, the licence and the two credits it did not want to change.

  • The footer names the author. MIT © @you where it used to say MIT licensed, read from package.json's author. A @handle in the email slot of npm's string form ("Ada Lovelace <@ada>") is read as a GitHub account and linked there; npm's object form is linked to its url; anything else prints the bare name unlinked, and a package.json with no author at all still renders MIT licensed. exactly as before. The handle wins over a url when both are given.

Changed

  • The footer moved into footer.html, imported by both layouts. One source for a line that was duplicated in docs.html and prose.html. Nothing about the markup it emits changed — same <footer class="page-footer">, same place in the document — so a site styling or scripting against it needs no change. The {% block footer %} in prose.html is still there and still overridable.

  • A missing version drops its clause instead of printing v. The old line printed the v unconditionally, so a package.json without a version rendered brand v — MIT.

[4.5.1] - 2026-08-23 — a code block in an admonition is no longer flush against the border

An admonition carried no padding of its own, so the title's tint could reach its own border, and the inset was handed down to the children — but only to p. Anything else inside a note or a warning ran edge to edge: a pre, a list, a table. The bottom was uneven for the same reason: a note ending in a paragraph closed at 0.75rem and one ending in a code block at the 1.75rem a pre takes out in the open.

Fixed

  • The admonition body is padded, and the title bleeds back out over it. The box now takes padding: 0 1rem 1rem, so every child is inset by the box rather than by a rule naming its tag, and the last child drops its bottom margin so the box's padding is the only gap under it — 1rem, the same as the sides, where a note ending in a paragraph used to close at 0.75rem. The title cancels the inline pair with margin: 0 -1rem 0.75rem, which is what keeps its tint running border to border. Block-start stays 0 so the tint still sits on the top border. Verified in Chromium: title flush at both ends, children

... (truncated)

Commits
  • 67ec1eb Bump version to 4.6.0
  • 2d8806a generalize the docs footer into one macro that names the author
  • 6f5e004 restore the changelog example fence and cut the 4.5.1 entry
  • 9ee050d stop the changelog cut on an unclosed fence
  • 467536b Bump version to 4.5.1
  • b6d467c match the admonition bottom padding to the sides
  • 860dcbf pad the admonition body and bleed the title back out over it
  • c688413 keep the admonition block spacing, inset only the inline sides
  • 1c4ee55 inset every child of an admonition, not just the paragraphs
  • 51f86bf Bump version to 4.5.0
  • Additional commits viewable in compare view

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

… updates

Bumps the development group with 3 updates in the / directory: [eslint](https://github.com/eslint/eslint), [poops](https://github.com/stamat/poops) and [poops-docs-theme](https://github.com/stamat/poops-docs-theme).


Updates `eslint` from 9.39.5 to 10.8.1
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.5...v10.8.1)

Updates `poops` from 2.3.0 to 2.5.0
- [Release notes](https://github.com/stamat/poops/releases)
- [Changelog](https://github.com/stamat/poops/blob/main/CHANGELOG.md)
- [Commits](stamat/poops@v2.3.0...v2.5.0)

Updates `poops-docs-theme` from 4.0.2 to 4.6.0
- [Release notes](https://github.com/stamat/poops-docs-theme/releases)
- [Changelog](https://github.com/stamat/poops-docs-theme/blob/main/CHANGELOG.md)
- [Commits](stamat/poops-docs-theme@v4.0.2...v4.6.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 10.8.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development
- dependency-name: poops
  dependency-version: 2.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: poops-docs-theme
  dependency-version: 4.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 1, 2026
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.

0 participants