Skip to content

🚨 [security] Update js-beautify 1.11.0 → 2.0.3 (major)#151

Open
depfu[bot] wants to merge 1 commit into
masterfrom
depfu/update/npm/js-beautify-2.0.3
Open

🚨 [security] Update js-beautify 1.11.0 → 2.0.3 (major)#151
depfu[bot] wants to merge 1 commit into
masterfrom
depfu/update/npm/js-beautify-2.0.3

Conversation

@depfu

@depfu depfu Bot commented Jul 1, 2026

Copy link
Copy Markdown

🚨 Your current dependencies have known security vulnerabilities 🚨

This dependency update fixes known security vulnerabilities. Please see the details below and assess their impact carefully. We recommend to merge and deploy this as soon as possible!


Here is everything you need to know about this upgrade. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ js-beautify (1.11.0 → 2.0.3) · Repo · Changelog

Release Notes

Too many releases to show here. View the full release notes.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

✳️ duti (0.15.2 → 0.15.3) · Repo · Changelog

Release Notes

0.15.3 (from changelog)

  • Update all mentions of futil-js to futil

Does any of this look wrong? Please let us know.

↗️ abbrev (indirect, 1.1.1 → 5.0.0) · Repo · Changelog

Release Notes

5.0.0

5.0.0 (2026-05-08)

⚠️ BREAKING CHANGES

  • abbrev now supports node ^22.22.2 || ^24.15.0 || >=26.0.0
  • template-oss-apply

Features

Chores

4.0.0

4.0.0 (2025-10-20)

⚠️ BREAKING CHANGES

  • abbrev now supports node ^20.17.0 || >=22.9.0

Features

Bug Fixes

Chores

3.0.1

3.0.1 (2025-04-10)

Bug Fixes

Chores

3.0.0

3.0.0 (2024-09-24)

⚠️ BREAKING CHANGES

  • abbrev now supports node ^18.17.0 || >=20.5.0

Bug Fixes

Chores

2.0.0

2.0.0 (2022-10-31)

⚠️ BREAKING CHANGES

  • Refactored with the following breaking changes:
    • abbrev is now compatible with the following semver range for node:
      ^14.17.0 || ^16.13.0 || >=18.0.0
    • monkeyPatch API has been removed

Features

Bug Fixes

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ config-chain (indirect, 1.1.12 → 1.1.13) · Repo

Sorry, we couldn't find anything useful about this release.

↗️ core-js (indirect, 2.6.11 → 2.6.12) · Repo · Changelog

Release Notes

2.6.12

  • Added code points / code units explicit feature detection in String#at for preventing breakage code which use obsolete String#at proposal polyfill
  • Added OPEN_SOURCE_CONTRIBUTOR detection in postinstall
  • Added Drone CI detection in postinstall

Does any of this look wrong? Please let us know.

↗️ editorconfig (indirect, 0.15.3 → 3.0.2) · Repo · Changelog

Release Notes

3.0.2

What's Changed

New Contributors

Full Changelog: v3.0.1...v3.0.2

3.0.1

What's Changed

  • Update dependencies. Stop at minimatch 10.0.1 pending issue. by @hildjj in #142

Full Changelog: v3.0.0...v3.0.1

3.0.0

What's Changed

New Contributors

Full Changelog: v2.0.1...v3.0.0

2.0.1

What's Changed

  • Update to latest eslint by @hildjj in #127
  • Update dependencies, including tests. Fixed nits. by @hildjj in #130

Full Changelog: v2.0.0...v2.0.1

2.0.0

  • Breaking: Now requires Node v16+
  • Enable extended globbing from minimatch. This means that some patterns will
    work in this version might not work in other editorconfig implementations.
    Fixes #84.
  • Add unset option to API and CLI. When enabled, properties with the value
    "unset" will be removed from the returned object. Defaults to false in all
    cases, since according to the core team, this is something that the editor
    plugin is supposed to do, and the tests reinforce this. An unset()
    function is now exported if you'd like to call it explicitly.
    Fixes #123.

1.0.3

  • Updated all dependencies, including security fixes for semver 7.3.8

1.0.2

  • Updated all dependencies, including breaking changes from minimatch and
    rimraf.
  • Removed @types/minimatch in favor of minimatch's built-in type definitions.

1.0.1 (from changelog)

  • Fixed #111 by updating to latest version of one-ini. Config files that contained empty comment lines would cause parse failures.

1.0.0

  • Upgrade dependencies, including moving to modern TS linting with eslint,
    using minimap directly, and removing now-unneeded dependencies.
  • Moved to @one-ini/wasm as the parser
  • Moved to GitHub Actions for CI
  • Added automated API testing, with coverage statistics
  • Ensured that all tests pass on Windows
  • Added an option to receive information about which config files were used to
    produce the combined parameters
  • Added an option for caching (including negative caching)
  • Breaking: Now requires Node v14+

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ ini (indirect, 1.3.5 → 1.3.8) · Repo · Changelog

Security Advisories 🚨

🚨 ini before 1.3.6 vulnerable to Prototype Pollution via ini.parse

Overview

The ini npm package before version 1.3.6 has a Prototype Pollution vulnerability.

If an attacker submits a malicious INI file to an application that parses it with ini.parse, they will pollute the prototype on the application. This can be exploited further depending on the context.

Patches

This has been patched in 1.3.6.

Steps to reproduce

payload.ini

[__proto__]
polluted = "polluted"

poc.js:

var fs = require('fs')
var ini = require('ini')

var parsed = ini.parse(fs.readFileSync('./payload.ini', 'utf-8'))
console.log(parsed)
console.log(parsed.proto)
console.log(polluted)

> node poc.js
{}
{ polluted: 'polluted' }
{ polluted: 'polluted' }
polluted
Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ nopt (indirect, 4.0.3 → 10.0.1) · Repo · Changelog

Release Notes

10.0.1

10.0.1 (2026-06-04)

Documentation

Chores

10.0.0

10.0.0 (2026-05-15)

⚠️ BREAKING CHANGES

  • nopt now supports node ^22.22.2 || ^24.15.0 || >=26.0.0
  • template-oss-apply
  • debug console.error output has been removed
  • this package now uses URL.parse, as the original url.parse was deprecated.

Features

Bug Fixes

Dependencies

Chores

9.0.0

9.0.0 (2025-10-22)

⚠️ BREAKING CHANGES

  • nopt now supports node ^20.17.0 || >=22.9.0

Bug Fixes

Dependencies

Chores

8.1.0

8.1.0 (2025-01-21)

Features

Bug Fixes

Dependencies

Chores

8.0.0

8.0.0 (2024-09-03)

⚠️ BREAKING CHANGES

  • nopt now supports node ^18.17.0 || >=20.5.0

Bug Fixes

Chores

7.2.1

7.2.1 (2024-05-04)

Bug Fixes

Chores

7.2.0

7.2.0 (2023-06-15)

Features

Bug Fixes

7.1.0

7.1.0 (2023-03-08)

Features

Bug Fixes

7.0.0

7.0.0 (2022-11-02)

⚠️ BREAKING CHANGES

  • nopt is now compatible with the following semver range for node: ^14.17.0 || ^16.13.0 || >=18.0.0

Features

Dependencies

6.0.0

6.0.0 (2022-07-20)

⚠ BREAKING CHANGES

  • This drops support for node 6 through 10 and non-LTS versions of node12 and node14

Bug Fixes

Dependencies

  • fix abbrev requirement to use proper spec (b8c751a)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ regenerator-runtime (indirect, 0.10.5 → 0.13.11) · Repo

Sorry, we couldn't find anything useful about this release.

↗️ underscore.string (indirect, 3.3.5 → 3.3.6) · Repo · Changelog

Release Notes

3.3.6 (from changelog)

  • Rebuild all assets for the release packages

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

🆕 @​babel/polyfill (added, 7.12.1)

🆕 @​one-ini/wasm (added, 0.2.1)

🆕 futil (added, 1.76.4)

🆕 js-cookie (added, 3.0.8)

🆕 minipass (added, 7.1.3)

🆕 path-scurry (added, 2.0.2)

🗑️ babel-polyfill (removed)

🗑️ babel-runtime (removed)

🗑️ futil-js (removed)

🗑️ mkdirp (removed)

🗑️ osenv (removed)

🗑️ sigmund (removed)


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

@depfu depfu Bot added the depfu label Jul 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants