Skip to content

chore: 🤖 bump the minor-and-patch group with 5 updates#116

Merged
phun-ky merged 1 commit intomainfrom
dependabot/npm_and_yarn/minor-and-patch-c8405b0275
Feb 17, 2026
Merged

chore: 🤖 bump the minor-and-patch group with 5 updates#116
phun-ky merged 1 commit intomainfrom
dependabot/npm_and_yarn/minor-and-patch-c8405b0275

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 16, 2026

Bumps the minor-and-patch group with 5 updates:

Package From To
@phun-ky/typeof 2.1.1 2.1.3
jsdom 28.0.0 28.1.0
prettier 3.6.2 3.8.1
putout 41.20.1 41.25.1
typedoc 0.28.16 0.28.17

Updates @phun-ky/typeof from 2.1.1 to 2.1.3

Release notes

Sourced from @​phun-ky/typeof's releases.

Release 2.1.3

2.1.3 (2026-02-12)

Tasks

  • 🤖 bump the minor-and-patch group across 1 directory with 7 updates (02bf682)

Release 2.1.2

2.1.2 (2026-02-12)

Tasks

  • 🤖 bump the major-updates group across 1 directory with 2 updates (4839465)
Changelog

Sourced from @​phun-ky/typeof's changelog.

2.1.3 (2026-02-12)

Tasks

  • 🤖 bump the minor-and-patch group across 1 directory with 7 updates (02bf682)

2.1.2 (2026-02-12)

Tasks

  • 🤖 bump the major-updates group across 1 directory with 2 updates (4839465)
Commits
  • 07519c1 chore: 🤖 release v2.1.3
  • f5a7303 Merge pull request #86 from phun-ky/dependabot/npm_and_yarn/minor-and-patch-0...
  • 02bf682 chore: 🤖 bump the minor-and-patch group across 1 directory with 7 updates
  • 15db592 chore: 🤖 release v2.1.2
  • 5ae1f22 Merge pull request #87 from phun-ky/dependabot/npm_and_yarn/major-updates-14c...
  • 4839465 chore: 🤖 bump the major-updates group across 1 directory with 2 updates
  • See full diff in compare view

Updates jsdom from 28.0.0 to 28.1.0

Release notes

Sourced from jsdom's releases.

Version 28.1.0

  • Added blob.text(), blob.arrayBuffer(), and blob.bytes() methods.
  • Improved getComputedStyle() to account for CSS specificity when multiple rules apply. (asamuzaK)
  • Improved synchronous XMLHttpRequest performance by using a persistent worker thread, avoiding ~400ms of setup overhead on every synchronous request after the first one.
  • Improved performance of node.getRootNode(), node.isConnected, and event.dispatchEvent() by caching the root node of document-connected trees.
  • Fixed getComputedStyle() to correctly handle !important priority. (asamuzaK)
  • Fixed document.getElementById() to return the first element in tree order when multiple elements share the same ID.
  • Fixed <svg> elements to no longer incorrectly proxy event handlers to the Window.
  • Fixed FileReader event timing and fileReader.result state to more closely follow the spec.
  • Fixed a potential hang when synchronous XMLHttpRequest encountered dispatch errors.
  • Fixed compatibility with environments where Node.js's built-in fetch() has been used before importing jsdom, by working around undici v6/v7 incompatibilities.
Changelog

Sourced from jsdom's changelog.

28.1.0

  • Added blob.text(), blob.arrayBuffer(), and blob.bytes() methods.
  • Improved getComputedStyle() to account for CSS specificity when multiple rules apply. (asamuzaK)
  • Improved synchronous XMLHttpRequest performance by using a persistent worker thread, avoiding ~400ms of setup overhead on every synchronous request after the first one.
  • Improved performance of node.getRootNode(), node.isConnected, and event.dispatchEvent() by caching the root node of document-connected trees.
  • Fixed getComputedStyle() to correctly handle !important priority. (asamuzaK)
  • Fixed document.getElementById() to return the first element in tree order when multiple elements share the same ID.
  • Fixed <svg> elements to no longer incorrectly proxy event handlers to the Window.
  • Fixed FileReader event timing and fileReader.result state to more closely follow the spec.
  • Fixed a potential hang when synchronous XMLHttpRequest encountered dispatch errors.
  • Fixed compatibility with environments where Node.js's built-in fetch() has been used before importing jsdom, by working around undici v6/v7 incompatibilities.
Commits
  • 12949b5 Version 28.1.0
  • ce4c58f Apply CSS specificity when computing styles
  • 7ed55a0 Skip single-byte-decoder encoding tests on Node 20
  • f3b1973 Generalize node version conditions in test expectations
  • 853c596 Rewrite getElementById ID caching for tree-order correctness
  • 5fbfde6 Fix potential sync XHR worker hang from unhandled dispatch errors
  • 82df38f Cache the root node for document-connected trees
  • ed7c5c0 Add documentation comment to create-event-accessor.js
  • b4562e9 Simplify Window.js installEventHandlers
  • 7da340f Centralize "determine the target of an event handler"
  • Additional commits viewable in compare view

Updates prettier from 3.6.2 to 3.8.1

Release notes

Sourced from prettier's releases.

3.8.1

🔗 Changelog

3.8.0

  • Support Angular v21.1

diff

🔗 Release note "Prettier 3.8: Support for Angular v21.1"

3.7.4

What's Changed

🔗 Changelog

3.7.3

What's Changed

🔗 Changelog

3.7.2

What's Changed

🔗 Changelog

3.7.1

🔗 Changelog

3.7.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.8.1

diff

Include available printers in plugin type declarations (#18706 by @​porada)

// Input
import * as prettierPluginEstree from "prettier/plugins/estree";
// Prettier 3.8.0
// Property 'printers' does not exist on type 'typeof import("prettier/plugins/estree")'. ts(2339)
prettierPluginEstree.printers.estree; //=> any
// Prettier 3.8.1
prettierPluginEstree.printers.estree; //=> Printer
prettierPluginEstree.printers["estree-json"]; //=> Printer

3.8.0

diff

🔗 Release Notes

3.7.4

diff

LWC: Avoid quote around interpolations (#18383 by @​kovsu)

<!-- Input -->
<div foo={bar}>   </div>
<!-- Prettier 3.7.3 (--embedded-language-formatting off) -->
<div foo="{bar}"></div>
<!-- Prettier 3.7.4 (--embedded-language-formatting off) -->
<div foo={bar}></div>

TypeScript: Fix comment inside union type gets duplicated (#18393 by @​fisker)

// Input
type Foo = (/** comment */ a | b) | c;
</tr></table> 

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for prettier since your current version.


Updates putout from 41.20.1 to 41.25.1

Release notes

Sourced from putout's releases.

putout v41.25.1

🐞 fix

  • 955c9995c putout: get back ignore

🔥 feature

  • 086aa95bd putout: ignore: apply mask
  • 18074252f @​putout/plugin-putout-config: sort-ignore: add
  • 0821779ac @​putout/operator-sort-ignore: report when property passed
  • dbf82a215 @​putout/operator-sort-ignore: __json: no property

putout v41.25.0

🐞 fix

  • 0309987e3 @​putout/plugin-converage: names

🔥 feature

  • 73b58c941 putout: simplify ignore
  • b324c6979 eslint-plugin-putout: private imports
  • 1fa23da58 @​putout/plugin-coverage: sort

putout v41.24.0

🐞 fix

  • e11e3a33a @​putout/operator-ignore: rm useless return
  • b2eb6629c @​putout/operator-ignore: description

🔥 feature

  • 641e945f8 @​putout/operator-sort-ignore: add
  • ea8c144b8 @​putout/plugin-putout: declare: sortIgnore
  • c3c22c8c5 @​putout/plugin-putout: apply-traverser-to-ignore
  • bff521c61 @​putout/plugin-remove-useless-map: eslint-plugin-putout v30.0.3
  • 78569cbba @​putout/operator-ignore: Replacer -> Traverser: improve reporting

putout v41.23.0

🐞 fix

  • b9e45abc6 @​putout/plugin-remove-useless-map: rm unused dependencies

🔥 feature

  • 6a606a6d7 @​putout/plugin-sort-ignore: add
  • 852676f71 @​putout/operator-ignore: match globs
  • 254f8dabb @​putout/operator-ignore: report

putout v41.22.0

🔥 feature

... (truncated)

Commits
  • cfa3b2b chore: putout: v41.25.1
  • 955c999 fix: putout: get back ignore
  • eb2fbcd docs: operators: add
  • 828bfa3 chore: @​putout/plugin-putout-config: v11.14.0
  • bd66629 chore: @​putout/operator-sort-ignore: v1.1.0
  • 086aa95 feature: putout: ignore: apply mask
  • 1807425 feature: @​putout/plugin-putout-config: sort-ignore: add
  • 0821779 feature: @​putout/operator-sort-ignore: report when property passed
  • a75bbeb chore: @​putout/operator-sort-ignore: v1.0.3
  • dbf82a2 feature: @​putout/operator-sort-ignore: __json: no property
  • Additional commits viewable in compare view

Updates typedoc from 0.28.16 to 0.28.17

Release notes

Sourced from typedoc's releases.

v0.28.17

Bug Fixes

  • Improved handling of comments for type aliases which have been declaration merged with functions, #3064.
  • Fixed anchor link generation to members named $, #3065.
  • Corrected typing of the plugin option to permit functions, #3066.
  • Warnings about unused @param tags will now be properly suppressed when they come from declaration files and the suppressCommentWarningsInDeclarationFiles option is enabled, #3070.
  • Fixed conversion of types referencing type parameters on functions, #3071.

Thanks!

Changelog

Sourced from typedoc's changelog.

v0.28.17 (2026-02-13)

Bug Fixes

  • Improved handling of comments for type aliases which have been declaration merged with functions, #3064.
  • Fixed anchor link generation to members named $, #3065.
  • Corrected typing of the plugin option to permit functions, #3066.
  • Warnings about unused @param tags will now be properly suppressed when they come from declaration files and the suppressCommentWarningsInDeclarationFiles option is enabled, #3070.
  • Fixed conversion of types referencing type parameters on functions, #3071.

Thanks!

Commits

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 minor-and-patch group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [@phun-ky/typeof](https://github.com/phun-ky/typeof) | `2.1.1` | `2.1.3` |
| [jsdom](https://github.com/jsdom/jsdom) | `28.0.0` | `28.1.0` |
| [prettier](https://github.com/prettier/prettier) | `3.6.2` | `3.8.1` |
| [putout](https://github.com/coderaiser/putout) | `41.20.1` | `41.25.1` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.28.16` | `0.28.17` |


Updates `@phun-ky/typeof` from 2.1.1 to 2.1.3
- [Release notes](https://github.com/phun-ky/typeof/releases)
- [Changelog](https://github.com/phun-ky/typeof/blob/main/CHANGELOG.md)
- [Commits](phun-ky/typeof@2.1.1...2.1.3)

Updates `jsdom` from 28.0.0 to 28.1.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@28.0.0...28.1.0)

Updates `prettier` from 3.6.2 to 3.8.1
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.6.2...3.8.1)

Updates `putout` from 41.20.1 to 41.25.1
- [Release notes](https://github.com/coderaiser/putout/releases)
- [Commits](coderaiser/putout@v41.20.1...v41.25.1)

Updates `typedoc` from 0.28.16 to 0.28.17
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.28.16...v0.28.17)

---
updated-dependencies:
- dependency-name: "@phun-ky/typeof"
  dependency-version: 2.1.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: jsdom
  dependency-version: 28.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: prettier
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: putout
  dependency-version: 41.25.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typedoc
  dependency-version: 0.28.17
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
...

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 Feb 16, 2026
@github-actions github-actions bot added mindless: dependencies Pull requests that update a dependency file section: repo For all changes in root dir release labels Feb 16, 2026
@github-actions github-actions bot requested a review from phun-ky February 16, 2026 03:45
@socket-security
Copy link

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatedjsdom@​28.0.0 ⏵ 28.1.092 -4100100 +197 +3100
Updated@​phun-ky/​typeof@​2.1.1 ⏵ 2.1.3100100100 +196 +1100

View full report

@socket-security
Copy link

Warning

Review the following alerts detected in dependencies.

According to your organization's Security Policy, it is recommended to resolve "Warn" alerts. Learn more about Socket for GitHub.

Action Severity Alert  (click "▶" to expand/collapse)
Warn High
Obfuscated code: npm jsdom is 98.0% likely obfuscated

Confidence: 0.98

Location: Package overview

From: package-lock.jsonnpm/jsdom@28.1.0

ℹ Read more on: This package | This alert | What is obfuscated code?

Next steps: Take a moment to review the security alert above. Review the linked package source code to understand the potential risk. Ensure the package is not malicious before proceeding. If you're unsure how to proceed, reach out to your security team or ask the Socket team for help at support@socket.dev.

Suggestion: Packages should not obfuscate their code. Consider not using packages with obfuscated code.

Mark the package as acceptable risk. To ignore this alert only in this pull request, reply with the comment @SocketSecurity ignore npm/jsdom@28.1.0. You can also ignore all packages with @SocketSecurity ignore-all. To ignore an alert for all future pull requests, use Socket's Dashboard to change the triage state of this alert.

View full report

@phun-ky phun-ky merged commit 1aed4d6 into main Feb 17, 2026
6 checks passed
@phun-ky phun-ky deleted the dependabot/npm_and_yarn/minor-and-patch-c8405b0275 branch February 17, 2026 09:01
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 mindless: dependencies Pull requests that update a dependency file release section: repo For all changes in root dir size: 👕 S

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant