Skip to content

build(deps): bump the npm group with 10 updates#28

Merged
polyipseity merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm-7a8b25ac22
Feb 5, 2026
Merged

build(deps): bump the npm group with 10 updates#28
polyipseity merged 1 commit intomainfrom
dependabot/npm_and_yarn/npm-7a8b25ac22

Conversation

@dependabot
Copy link
Contributor

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

Bumps the npm group with 10 updates:

Package From To
@codemirror/state 6.5.2 6.5.4
@codemirror/view 6.37.1 6.39.12
@ts-morph/bootstrap 0.27.0 0.28.1
i18next 25.8.0 25.8.3
obsidian 1.4.11 1.11.4
promise-pool-executor 1.1.1 2.0.0
workerpool 9.3.2 10.0.1
@commitlint/cli 20.4.0 20.4.1
@commitlint/config-conventional 20.4.0 20.4.1
@polyipseity/obsidian 1.4.11 1.8.7

Updates @codemirror/state from 6.5.2 to 6.5.4

Changelog

Sourced from @​codemirror/state's changelog.

6.5.4 (2026-01-14)

Bug fixes

Make SelectionRange.eq return false when the ranges have different goal columns.

6.5.3 (2025-12-22)

Bug fixes

Fix an issue where RangeValue.eq could get called with a value of a different class.

EditorState.charCategorizer now only uses the highest-precedence set of word characters from the language data, to allow overriding these.

Commits
  • 8897323 Mark version 6.5.4
  • 75518c0 Include goal column when comparing selection ranges
  • a0889f8 Use git+https format for package.json repository field
  • b2cbf25 Mark version 6.5.3
  • 386d55d Make charCategorizer only use the highest-precedence set of word chars
  • aa4ca3c Document RangeCursor.goto
  • 32c46fa Don't call RangeValue.eq on values of different class
  • 127f07c Fix superfluous calls to boundChange
  • c24cde9 Remove some trailing whitespace
  • fc068ed Fix mapPos documentation
  • Additional commits viewable in compare view

Updates @codemirror/view from 6.37.1 to 6.39.12

Changelog

Sourced from @​codemirror/view's changelog.

6.39.12 (2026-01-30)

Bug fixes

Fix a bug where the visual selection drawn by drawSelection could fail to update properly in some circumstances.

Fix a bug where PageUp/PageDown near the edge of the viewport might completely skip to the start/end of the document.

Fix a regression that caused mark decorations to be split on text node chunk boundaries again.

6.39.11 (2026-01-14)

Bug fixes

Avoid handling copy events for parent editors.

6.39.10 (2026-01-13)

Bug fixes

Fix a regression in the way widget are reused when content next to them changes.

Make sure font metrics get recomputed on fonts.ready even if the line height doesn't change.

Fix an issue where compositions next to a widget that create a new text node could get needlessly interrupted during an editor update.

6.39.9 (2026-01-06)

Bug fixes

Fix a bug where EditorSelection.cursor() with a non-zero assoc value would not be visually respected at soft-wrap boundaries on initial view creation.

Fix error caused by hover tooltips running a scheduled timeout after their editor has been destroyed.

Fix a bug that caused EditorView.outerDecorations to not affect the content height map.

Fix an issue where composition near a widget could get unnecessarily interrupted.

6.39.8 (2025-12-30)

Bug fixes

Fix a bug that cause coordsAtPos to use the dimensions of widget buffers when there were more meaningful elements to use nearby.

Fix a data structure corruption that could cause crashes during viewport changes.

6.39.7 (2025-12-24)

Bug fixes

... (truncated)

Commits
  • f14dcd5 Mark version 6.39.12
  • 16a0c29 Fix another issue around chunked large text nodes
  • 4b908ab Fix poor handling of vertical motion exiting the viewport
  • e147626 Fix negative computed width in RectangleMarker.forRange
  • 6fcf2e1 Mark version 6.39.11
  • 95fd570 Use a custom selection comparison when only the position should be compared
  • 4c56500 Remove a loop that never loops anymore
  • 01fbc42 Avoid handling copy events for parent elements
  • 74c9e9b Mark version 6.39.10
  • 9656641 Fix another way widgets could be reused across a composition
  • Additional commits viewable in compare view

Updates @ts-morph/bootstrap from 0.27.0 to 0.28.1

Commits
  • 182fe76 0.28.1 - Revert accidentally changed peer dependency.
  • 35f578a 0.28.0 - #32 - Fix "Cannot find name Constructor"
  • See full diff in compare view

Updates i18next from 25.8.0 to 25.8.3

Release notes

Sourced from i18next's releases.

v25.8.3

  • ts: document option to suppress the support message 2385

v25.8.2

  • option to suppress the support message 2385

v25.8.1

  • fix(types): Selector API - fix Namespace inference for selector ns option 2384
Changelog

Sourced from i18next's changelog.

25.8.3

  • ts: document option to suppress the support message 2385

25.8.2

  • option to suppress the support message 2385

25.8.1

  • fix(types): Selector API - fix Namespace inference for selector ns option 2384
Commits

Updates obsidian from 1.4.11 to 1.11.4

Changelog

Sourced from obsidian's changelog.

Changelog

This CHANGELOG details any breaking changes to the API or new additions that require additional context. The versions listed below correspond to the versions of the Obsidian app. There may not be a corresponding package version for the version listed below.

v1.7.2 (Insider)

Workspace changes

  • New function Plugin#onUserEnable gives you a place to performance one-time initialize after the user installs and enables your plugin. If your plugin has a custom view, this is a good place to initialize it rather than recreating the view in Plugin#onload.
  • Workspace#ensureSideLeaf is now public. This function is a shorthand way to create a leaf in the sidebar if one does not already exist.
  • Added WorkspaceLeaf#isDeferred and WorkspaceLeaf#loadIfDeferred. As of Obsidian v1.7.2, Obsidian will now defer tabs by default. We published a guide on how to handle deferred views in the developer docs.

Housekeeping

We've updated the API to prefer unknown to any. Using any causes Typescript to disable typechecking entirely on the returned value, so this change could uncover some hidden typing issues.

We also removed prepareQuery, fuzzySearch, and PreparedQuery from the API. If your plugin is using one of these functions, you should migrate to prepareFuzzySearch.

// Old
let pq: PreparedQuery = prepareQuery(q);
...
fuzzySearch(pq, text);
// New
let fuzzy = prepareFuzzySearch(q);
...
fuzzy(text);

Misc

  • New Plugin#removeCommand is now available if your plugin needs to dynamically remove commands (for example, if your plugin allows for user-created commands).
  • SuggestModal#selectActiveSuggestion is now public. This is useful to provide an alternative hotkey to your SuggestModal that still triggers the selected item.

v1.7.0 (Insider)

  • Fixed FileSystemAdapter#rmdir(dirPath, false) always throwing an error when attempting to delete an empty directory.
  • Added a data-type to the Markdown embed container using subpath type.

v1.5.11

  • Fixed revealLeaf failing to focus the correct window.
  • If you are using the SliderComponent in your app, be aware, the behavior of the component has changed in 1.5.9. Now, instead of updating the value when the slider is dragged, it will only update the value when the slider is released. If your plugin was relying on the old behavior, you will need to update your plugin code to call .setInstant(true) on the slider. Note: Because setInstant is a new function, you'll also need to check to see if the function exists before calling it. This will ensure your plugin maintains backwards compatibility when being run on older versions of Obsidian.

v1.5.7

Plugin#onExternalSettingsChange

... (truncated)

Commits

Updates promise-pool-executor from 1.1.1 to 2.0.0

Changelog

Sourced from promise-pool-executor's changelog.

Changelog for promise-batcher

Commits
Maintainer changes

This version was pushed to npm by wesvanvugt, a new releaser for promise-pool-executor since your current version.


Updates workerpool from 9.3.2 to 10.0.1

Changelog

Sourced from workerpool's changelog.

2025-11-19, version 10.0.1

  • Fix: #523 make WorkerHandler resilient against errors without message property.

2025-10-21, version 10.0.0

BREAKING CHANGES:

  • Feat: implement queueStrategy option (FIFO / LIFO / custom) (#518, #517). This is a new feature without changes in the public API, but the internal property pool.tasks is changed into pool.taskQueue. So, changes are required if you rely on this internal property. Thanks @​amaneru55
  • Feat: introduce a new TerminateError class to differentiate between a crash and a regular error (see #519, #520). The TerminateError class extends from the class Error so no breaking changes in that regard. But some of the error messages are changed so if you have code that depends on the exact error messages you may need to change your code accordingly. Thanks @​Julusian.

2025-09-10, version 9.3.4

  • Fix: #516 improve error handling for errors containing nested classes by using their .toJSON method when available.

2025-06-27, version 9.3.3

Commits

Updates @commitlint/cli from 20.4.0 to 20.4.1

Release notes

Sourced from @​commitlint/cli's releases.

v20.4.1

20.4.1 (2026-02-02)

Reverts

Chore

Full Changelog: conventional-changelog/commitlint@v20.4.0...v20.4.1

Changelog

Sourced from @​commitlint/cli's changelog.

20.4.1 (2026-02-02)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 20.4.0 to 20.4.1

Release notes

Sourced from @​commitlint/config-conventional's releases.

v20.4.1

20.4.1 (2026-02-02)

Reverts

Chore

Full Changelog: conventional-changelog/commitlint@v20.4.0...v20.4.1

Changelog

Sourced from @​commitlint/config-conventional's changelog.

20.4.1 (2026-02-02)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @polyipseity/obsidian from 1.4.11 to 1.8.7

Changelog

Sourced from @​polyipseity/obsidian's changelog.

Changelog

This CHANGELOG details any breaking changes to the API or new additions that require additional context. The versions listed below correspond to the versions of the Obsidian app. There may not be a corresponding package version for the version listed below.

v1.7.2 (Insider)

Workspace changes

  • New function Plugin#onUserEnable gives you a place to performance one-time initialize after the user installs and enables your plugin. If your plugin has a custom view, this is a good place to initialize it rather than recreating the view in Plugin#onload.
  • Workspace#ensureSideLeaf is now public. This function is a shorthand way to create a leaf in the sidebar if one does not already exist.
  • Added WorkspaceLeaf#isDeferred and WorkspaceLeaf#loadIfDeferred. As of Obsidian v1.7.2, Obsidian will now defer tabs by default. We published a guide on how to handle deferred views in the developer docs.

Housekeeping

We've updated the API to prefer unknown to any. Using any causes Typescript to disable typechecking entirely on the returned value, so this change could uncover some hidden typing issues.

We also removed prepareQuery, fuzzySearch, and PreparedQuery from the API. If your plugin is using one of these functions, you should migrate to prepareFuzzySearch.

// Old
let pq: PreparedQuery = prepareQuery(q);
...
fuzzySearch(pq, text);
// New
let fuzzy = prepareFuzzySearch(q);
...
fuzzy(text);

Misc

  • New Plugin#removeCommand is now available if your plugin needs to dynamically remove commands (for example, if your plugin allows for user-created commands).
  • SuggestModal#selectActiveSuggestion is now public. This is useful to provide an alternative hotkey to your SuggestModal that still triggers the selected item.

v1.7.0 (Insider)

  • Fixed FileSystemAdapter#rmdir(dirPath, false) always throwing an error when attempting to delete an empty directory.
  • Added a data-type to the Markdown embed container using subpath type.

v1.5.11

  • Fixed revealLeaf failing to focus the correct window.
  • If you are using the SliderComponent in your app, be aware, the behavior of the component has changed in 1.5.9. Now, instead of updating the value when the slider is dragged, it will only update the value when the slider is released. If your plugin was relying on the old behavior, you will need to update your plugin code to call .setInstant(true) on the slider. Note: Because setInstant is a new function, you'll also need to check to see if the function exists before calling it. This will ensure your plugin maintains backwards compatibility when being run on older versions of Obsidian.

v1.5.7

Plugin#onExternalSettingsChange

... (truncated)

Commits
  • aa65247 Merge commit '103ff76a0712a02dd0da28646b5a6b0ba6686d66' into forks/polyipseity
  • 441c38d Merge commit '23947b58d372ea02225324308e31d36b4aa95869' into forks/polyipseity
  • 96c98d8 Merge commit 'f20b17e38ccf12a8d7f62231255cb0608436dfbf' into forks/polyipseity
  • 1c9f1ce Update package.json
  • 52ac2ee Merge commit '8b2eda0f24285636c8aa116972643e5233a23dc1' into forks/polyipseity
  • 1ab481a Merge commit '2218ab28555795ed1912698c6bf3c864caf056c4' into forks/polyipseity
  • b699ad9 Add pnpm-lock.yaml to .gitignore
  • f1388fb Merge commit 'bbb696aeb8bf5126bf2ecbf84fc8284fe133bc20' into forks/polyipseity
  • 103ff76 docs: fix private link in changelog
  • 9ab497e Fix hoverPopover types.
  • 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Feb 5, 2026
@polyipseity
Copy link
Owner

@dependabot rebase

Bumps the npm group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [@codemirror/state](https://github.com/codemirror/state) | `6.5.2` | `6.5.4` |
| [@codemirror/view](https://github.com/codemirror/view) | `6.37.1` | `6.39.12` |
| [@ts-morph/bootstrap](https://github.com/dsherret/ts-morph) | `0.27.0` | `0.28.1` |
| [i18next](https://github.com/i18next/i18next) | `25.8.0` | `25.8.3` |
| [obsidian](https://github.com/obsidianmd/obsidian-api) | `1.4.11` | `1.11.4` |
| [promise-pool-executor](https://github.com/WesVanVugt/promise-batcher) | `1.1.1` | `2.0.0` |
| [workerpool](https://github.com/josdejong/workerpool) | `9.3.2` | `10.0.1` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `20.4.0` | `20.4.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `20.4.0` | `20.4.1` |
| [@polyipseity/obsidian](https://github.com/polyipseity/obsidian-api) | `1.4.11` | `1.8.7` |


Updates `@codemirror/state` from 6.5.2 to 6.5.4
- [Changelog](https://github.com/codemirror/state/blob/main/CHANGELOG.md)
- [Commits](codemirror/state@6.5.2...6.5.4)

Updates `@codemirror/view` from 6.37.1 to 6.39.12
- [Changelog](https://github.com/codemirror/view/blob/main/CHANGELOG.md)
- [Commits](codemirror/view@6.37.1...6.39.12)

Updates `@ts-morph/bootstrap` from 0.27.0 to 0.28.1
- [Release notes](https://github.com/dsherret/ts-morph/releases)
- [Commits](dsherret/ts-morph@tsa-0.27.0...tsa-0.28.1)

Updates `i18next` from 25.8.0 to 25.8.3
- [Release notes](https://github.com/i18next/i18next/releases)
- [Changelog](https://github.com/i18next/i18next/blob/master/CHANGELOG.md)
- [Commits](i18next/i18next@v25.8.0...v25.8.3)

Updates `obsidian` from 1.4.11 to 1.11.4
- [Changelog](https://github.com/obsidianmd/obsidian-api/blob/master/CHANGELOG.md)
- [Commits](https://github.com/obsidianmd/obsidian-api/commits)

Updates `promise-pool-executor` from 1.1.1 to 2.0.0
- [Changelog](https://github.com/WesVanVugt/promise-batcher/blob/master/changelog.md)
- [Commits](https://github.com/WesVanVugt/promise-batcher/commits)

Updates `workerpool` from 9.3.2 to 10.0.1
- [Changelog](https://github.com/josdejong/workerpool/blob/master/HISTORY.md)
- [Commits](https://github.com/josdejong/workerpool/commits/v10.0.1)

Updates `@commitlint/cli` from 20.4.0 to 20.4.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.4.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 20.4.0 to 20.4.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v20.4.1/@commitlint/config-conventional)

Updates `@polyipseity/obsidian` from 1.4.11 to 1.8.7
- [Changelog](https://github.com/polyipseity/ext.obsidian-api/blob/master/CHANGELOG.md)
- [Commits](polyipseity/ext.obsidian-api@v1.4.11...v1.8.7)

---
updated-dependencies:
- dependency-name: "@codemirror/state"
  dependency-version: 6.5.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@codemirror/view"
  dependency-version: 6.39.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@ts-morph/bootstrap"
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: i18next
  dependency-version: 25.8.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: obsidian
  dependency-version: 1.11.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: promise-pool-executor
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: workerpool
  dependency-version: 10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: npm
- dependency-name: "@commitlint/cli"
  dependency-version: 20.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@commitlint/config-conventional"
  dependency-version: 20.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@polyipseity/obsidian"
  dependency-version: 1.8.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-7a8b25ac22 branch from 504ce15 to fd8275d Compare February 5, 2026 09:52
@polyipseity polyipseity merged commit fd8275d into main Feb 5, 2026
4 of 6 checks passed
@polyipseity polyipseity deleted the dependabot/npm_and_yarn/npm-7a8b25ac22 branch February 5, 2026 10:11
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