Skip to content

build(deps-dev): bump flatted from 3.3.3 to 3.4.2#42

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/flatted-3.4.2
Open

build(deps-dev): bump flatted from 3.3.3 to 3.4.2#42
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/flatted-3.4.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 21, 2026

Copy link
Copy Markdown

Bumps flatted from 3.3.3 to 3.4.2.

Commits
  • 3bf0909 3.4.2
  • 885ddcc fix CWE-1321
  • 0bdba70 added flatted-view to the benchmark
  • 2a02dce 3.4.1
  • fba4e8f Merge pull request #89 from WebReflection/python-fix
  • 5fe8648 added "when in Rome" also a test for PHP
  • 53517ad some minor improvement
  • b3e2a0c Fixing recursion issue in Python too
  • c4b46db Add SECURITY.md for security policy and reporting
  • f86d071 Create dependabot.yml for version updates
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR 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.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [flatted](https://github.com/WebReflection/flatted) from 3.3.3 to 3.4.2.
- [Commits](WebReflection/flatted@v3.3.3...v3.4.2)

---
updated-dependencies:
- dependency-name: flatted
  dependency-version: 3.4.2
  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 Mar 21, 2026
@dependabot dependabot Bot requested a review from a team as a code owner March 21, 2026 11:12
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 21, 2026
airadier added a commit that referenced this pull request Jun 18, 2026
## Problem

Every Dependabot dependency PR fails the `test-nix` check with a Nix
hash mismatch, e.g.:

```
error: hash mismatch for sysdig-vscode-ext-vsix-…-npm-deps
To correct the hash mismatch … use "sha256-…"
```

`vsix.nix` pins a fixed-output `npmDepsHash` derived from
`package-lock.json`. Any lockfile change (i.e. every dependency bump)
changes that hash, so the build fails until the hash is manually updated
— something Dependabot cannot do. This blocks PRs #40, #41, #42, #44,
#46 and every future bump.

## Fix

Replace the pinned `npmDepsHash` with `importNpmLock`, which reads
dependencies directly from `package-lock.json` with no fixed-output
hash:

```nix
npmDeps = importNpmLock { npmRoot = ./.; };
npmConfigHook = importNpmLock.npmConfigHook;
```

After this, dependency bumps no longer touch any Nix hash — `test-nix`
stays green on a plain rebase.

## Verification

Built locally on macOS against `nixpkgs-unstable`:

```
$ nix build .#sysdig-vscode-vsix
…
DONE  Packaged: sysdig-vscode-ext-0.2.16.vsix (198 files, 353.03 KB)
```

## Follow-up

Once merged, the open Dependabot PRs just need `@dependabot rebase` to
go green — no per-PR hash edits.
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