Skip to content

Bump the development group across 1 directory with 3 updates - #57

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

Bump the development group across 1 directory with 3 updates#57
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/development-fefd5c9c4d

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-docs-theme and postcss-discard-comments.

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-docs-theme from 4.5.0 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

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
  • See full diff in compare view

Updates postcss-discard-comments from 7.0.8 to 8.0.4

Release notes

Sourced from postcss-discard-comments's releases.

v8.0.4

What's Changed

Bug Fixes

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@8.0.3...cssnano@8.0.4

v8.0.3

What's Changed

Bug Fixes

  • postcss-reduce-initial: update initial properties
  • potcss-minify-gradients: handle more than two stops
  • postcss-normalize-whitespace: preserve whitespace in custom prop
  • postcss-normalize-url: ensure trailing slash is preserved

Other Changes

  • packages now define an exports field in package.json. This prevents any file added to the package to automatically be exposed as a possible import. The has been done in a backward compatible way, so you should be able to import every file you did in the previous release.

  • types have also been regenerated with TypeScript 7.

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@8.0.2...cssnano@8.0.3

v8.0.2

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@8.0.1...cssnano@8.0.2

v8.0.1

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@8.0.0...cssnano@8.0.1

v8.0.0

What's Changed

... (truncated)

Commits
  • 6b64af9 chore: update types
  • 6a2ed8b Publish cssnano 8.0.4
  • cb09239 fix(postcss-svgo): use built-in URI encoder
  • e1a7419 fix(postcss-svgo): improve character encoding
  • dceffee chore: update lockfile after creating devEngines field in package.json
  • dca50f7 docs: add devengines field to website package.json
  • c169273 docs: remove unused website dependency
  • bca3dad docs: add browserslist query for building the website
  • 67c666e chore: remove unused package.json field
  • c24a5a4 chore(ci): update devTools packageManger and use pnpm/setup everywhere
  • 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

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


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-docs-theme` from 4.5.0 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.5.0...v4.6.0)

Updates `postcss-discard-comments` from 7.0.8 to 8.0.4
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-discard-comments@7.0.8...cssnano@8.0.4)

---
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-docs-theme
  dependency-version: 4.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development
- dependency-name: postcss-discard-comments
  dependency-version: 8.0.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  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