Skip to content

build(deps): bump jodit from 4.2.50 to 4.13.10 - #305

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/jodit-4.13.10
Open

build(deps): bump jodit from 4.2.50 to 4.13.10#305
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/jodit-4.13.10

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps jodit from 4.2.50 to 4.13.10.

Release notes

Sourced from jodit's releases.

4.13.10

🏠 Internal

  • Repository: added a funding field (and a GitHub Sponsor button) pointing to Jodit PRO, refreshed the README header, pinned all GitHub Actions to commit SHAs, and added Dependabot (actions + npm), a PR path-labeler, a first-interaction greeting, a surgical stale-issue bot and release-note categories. No runtime changes.

4.13.9

🐛 Bug Fix

  • Mobile / adaptive toolbar: with a custom buttons list and the default buttonsMD/buttonsSM/buttonsXS, resizing the editor narrower surfaced buttons that were never requested — the breakpoint sets are group-based defaults independent of buttons. The responsive breakpoint set is now constrained to buttons: resizing only ever drops buttons, never adds ones outside buttons. Set buttonsMD/buttonsSM/buttonsXS explicitly if you want a different per-breakpoint set. The default configuration (where buttons is the full superset) is unchanged. Fixes #1389.

4.13.8

🏠 Internal

  • Dependencies: security/maintenance bumps — axios 1.18.0, webpack-dev-server 5.2.6, tar 7.5.21, svgo 4.0.2, fast-uri 3.1.4 (Dependabot). All dev/build-only. (#1384, #1385, #1386, #1387, #1388)

4.13.7

🐛 Bug Fix

  • Dialog: event handlers passed via options.events are now attached to the dialog's emitter (as FileBrowser already does). A dialog fires afterOpen/beforeClose on its own emitter — unlike popups, which fire on the editor emitter — so those events were previously unreachable from the editor. Plugins that open dialogs (e.g. the PRO Button Generator) can now forward the editor's events config so afterOpen/beforeClose can be observed. Reported by Ralf Pichler (uniquare.com, Jodit OEM).

4.13.6

🐛 Bug Fix

  • Security / clean-html: a <script> nested directly inside <svg> (or MathML) is now removed by denyTags. The deny/allow tag filter matched node.nodeName against an upper-cased hash, but foreign-namespaced elements keep their original case (an SVG <script> reports "script", not "SCRIPT"), so the script slipped through the default denyTags and executed when the value was loaded into the editor. The lookup now normalises the tag name to upper case, so namespace can't bypass the filter — while still honouring allowTags. Fixes GHSA-45qg-252v-3f7p. Thanks to Roman Kis for the report.
  • Toolbar: fixed TypeError: Cannot redefine property: component thrown when the editor is created with cache: false. ToolbarButton.createContainer (decorated with @cacheHTML) defined the component back-reference on the button element without configurable, i.e. non-configurable. With caching enabled the container is cloned (which drops the property), hiding the problem; with cache: false the container isn't cloned, so a button built after an editor became ready reached the constructor still carrying that non-configurable property and the constructor's redefine threw. The property is now defined as configurable, matching the base UIElement.

4.13.5

🏠 Internal

  • Build: pin the ESM build to the project's TypeScript (node_modules/.bin/tsc) instead of a bare tsc resolved from PATH. The 4.13.4 publish build broke after the GitHub runner image began shipping a newer global TypeScript that rejects options (baseUrl, downlevelIteration, moduleResolution: "node") which the project's pinned TypeScript 6.0.2 still accepts. This re-releases the 4.13.4 security fixes, which never reached npm.

4.13.3

🚀 New Feature

  • AsyncStorage: AsyncStorage.makeStorage(persistentOrStrategy, suffix, options?) now accepts a third options argument with a defaultProvider field that overrides which provider backs the storage — 'local' (localStorage), 'memory', or a custom IAsyncStorage implementation. When omitted the behaviour is unchanged (persistent IndexedDB with an in-memory fallback). The same option is exposed on the editor as the asyncStorage config option (Jodit.make('#editor', { asyncStorage: { defaultProvider: 'local' } })), so jodit.asyncStorage can be pointed at localStorage, memory, or your own backend without subclassing.
  • Slots: a new above workplace slot (editor.currentPlace.slots.above) that always stays above the toolbar — the spot Google-Docs-style presence bars and banners live in. The toolbar box used to re-pin itself as the container's first child on every toolbarContainer access; it now keeps itself below any container children flagged with the data-jodit-above-toolbar attribute (the new slot carries the flag). The slot renders as nothing while empty and gets the standard border-bottom once filled, like the other slots.

🐛 Bug Fix

  • Storage: LocalStorageProvider.delete(key) removed the entire storage scope (every key sharing the same rootKey/suffix) instead of just the requested key — delete behaved identically to clear. It now reads the JSON blob, drops only that key and writes the rest back. Affects Jodit.modules.Storage/buffer/storage and the @persistent decorator when a single key is deleted.

🏠 Internal

... (truncated)

Changelog

Sourced from jodit's changelog.

4.13.10

🏠 Internal

  • Repository: added a funding field (and a GitHub Sponsor button) pointing to Jodit PRO, refreshed the README header, pinned all GitHub Actions to commit SHAs, and added Dependabot (actions + npm), a PR path-labeler, a first-interaction greeting, a surgical stale-issue bot and release-note categories. No runtime changes.

4.13.9

🐛 Bug Fix

  • Mobile / adaptive toolbar: with a custom buttons list and the default buttonsMD/buttonsSM/buttonsXS, resizing the editor narrower surfaced buttons that were never requested — the breakpoint sets are group-based defaults independent of buttons. The responsive breakpoint set is now constrained to buttons: resizing only ever drops buttons, never adds ones outside buttons. Set buttonsMD/buttonsSM/buttonsXS explicitly if you want a different per-breakpoint set. The default configuration (where buttons is the full superset) is unchanged. Fixes #1389.

4.13.8

🏠 Internal

  • Dependencies: security/maintenance bumps — axios 1.18.0, webpack-dev-server 5.2.6, tar 7.5.21, svgo 4.0.2, fast-uri 3.1.4 (Dependabot). All dev/build-only. (#1384, #1385, #1386, #1387, #1388)

4.13.7

🐛 Bug Fix

  • Dialog: event handlers passed via options.events are now attached to the dialog's emitter (as FileBrowser already does). A dialog fires afterOpen/beforeClose on its own emitter — unlike popups, which fire on the editor emitter — so those events were previously unreachable from the editor. Plugins that open dialogs (e.g. the PRO Button Generator) can now forward the editor's events config so afterOpen/beforeClose can be observed. Reported by Ralf Pichler (uniquare.com, Jodit OEM).

4.13.6

🐛 Bug Fix

  • Security / clean-html: a <script> nested directly inside <svg> (or MathML) is now removed by denyTags. The deny/allow tag filter matched node.nodeName against an upper-cased hash, but foreign-namespaced elements keep their original case (an SVG <script> reports "script", not "SCRIPT"), so the script slipped through the default denyTags and executed when the value was loaded into the editor. The lookup now normalises the tag name to upper case, so namespace can't bypass the filter — while still honouring allowTags. Fixes GHSA-45qg-252v-3f7p. Thanks to Roman Kis for the report.
  • Toolbar: fixed TypeError: Cannot redefine property: component thrown when the editor is created with cache: false. ToolbarButton.createContainer (decorated with @cacheHTML) defined the component back-reference on the button element without configurable, i.e. non-configurable. With caching enabled the container is cloned (which drops the property), hiding the problem; with cache: false the container isn't cloned, so a button built after an editor became ready reached the constructor still carrying that non-configurable property and the constructor's redefine threw. The property is now defined as configurable, matching the base UIElement.

4.13.5

🏠 Internal

  • Build: pin the ESM build to the project's TypeScript (node_modules/.bin/tsc) instead of a bare tsc resolved from PATH. The 4.13.4 publish build broke after the GitHub runner image began shipping a newer global TypeScript that rejects options (baseUrl, downlevelIteration, moduleResolution: "node") which the project's pinned TypeScript 6.0.2 still accepts. This re-releases the 4.13.4 security fixes, which never reached npm.

4.13.4

🐛 Bug Fix

  • Security / clean-html: HTML smuggled into MathML/SVG (e.g. <math><mglyph><html><body onload>) is now stripped even when clean-html parses the fragment in a disconnected sandbox (useIframeSandbox: false). The guard used isConnected, which is false for a detached parse box, so the smuggled node slipped through; it now uses box.contains(). Fixes GHSA-rxcw-mc6f-6hr3 (mutation XSS via MathML/style rawtext carrier). Thanks @​MatrixNeoKozak (#1380).
  • safeHTML: guard location access when neutralising javascript: links so sanitizeHTMLElement no longer throws a ReferenceError in SSR / Node environments where location is undefined (#1380).

🏠 Internal

  • Dependencies: security bumps for tar 7.5.16, form-data 4.0.6, js-yaml 4.3.0, launch-editor 2.14.1, webpack-dev-server 5.2.5 (+ http-proxy-middleware 2.0.9), ws 8.21.1 / engine.io 6.6.9 / socket.io-adapter 2.5.8, and websocket-driver 0.7.5 (Dependabot alerts #189#197). All dev/test-only. (#1373, #1374, #1375, #1376, #1377, #1382, #1383)

4.13.3

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for jodit since your current version.


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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [jodit](https://github.com/xdan/jodit) from 4.2.50 to 4.13.10.
- [Release notes](https://github.com/xdan/jodit/releases)
- [Changelog](https://github.com/xdan/jodit/blob/main/CHANGELOG.md)
- [Commits](xdan/jodit@4.2.50...4.13.10)

---
updated-dependencies:
- dependency-name: jodit
  dependency-version: 4.13.10
  dependency-type: indirect
...

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 Aug 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