Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2955,7 +2955,7 @@
"ws": "7.5.11"
},
"d3-color": "3.1.0",
"flatted": "3.4.2",
"flatted": "3.4.4",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🩺 Stability & Availability | 🟠 Major | ⚑ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

for version in 3.4.4 3.4.3; do
  if npm view "flatted@${version}" version dist.tarball; then
    echo "Published: ${version}"
  else
    echo "Unavailable: ${version}"
  fi
done

Repository: deepnote/vscode-deepnote

Length of output: 990


🏁 Script executed:

#!/bin/bash
set -euo pipefail

printf '%s\n' '--- npm registry configuration ---'
npm config get registry

printf '%s\n' '--- flatted references ---'
rg -n -C 2 '"flatted"|flatted-3\.4\.[34]' package.json package-lock.json 2>/dev/null || true

printf '%s\n' '--- package metadata ---'
python3 - <<'PY'
import json
for name in ("package.json", "package-lock.json"):
    try:
        with open(name) as f:
            data = json.load(f)
    except FileNotFoundError:
        print(f"{name}: absent")
        continue
    print(f"{name}:")
    if name == "package.json":
        print("  overrides:", data.get("overrides", {}).get("flatted"))
    else:
        for key, value in data.get("packages", {}).items():
            if key.endswith("node_modules/flatted") or key == "":
                if key.endswith("node_modules/flatted"):
                    print(" ", key, "version=", value.get("version"), "resolved=", value.get("resolved"))
PY

Repository: deepnote/vscode-deepnote

Length of output: 2945


🏁 Script executed:

#!/bin/bash
set -euo pipefail

for version in 3.4.4 3.4.3; do
  printf '%s\n' "--- public registry: ${version} ---"
  npm view --registry=https://registry.npmjs.org "flatted@${version}" version dist.tarball 2>&1 || true
done

printf '%s\n' '--- public tarball status ---'
for version in 3.4.4 3.4.3; do
  url="https://registry.npmjs.org/flatted/-/flatted-${version}.tgz"
  status="$(curl -L -sS -o /dev/null -w '%{http_code}' "$url" || true)"
  printf '%s %s\n' "$version" "$status"
done

Repository: deepnote/vscode-deepnote

Length of output: 154


🌐 Web query:

npm flatted 3.4.4 published version registry.npmjs.org

πŸ’‘ Result:

As of August 2, 2026, version 3.4.4 of the npm package "flatted" has not been published to the npm registry. The current latest version of "flatted" is 3.4.2, which was published on March 17, 2026 [1][2][3]. While some automated systems or search results may occasionally reference version 3.4.4 in unrelated contexts (such as updates to other packages like "react-scripts" [4] or "composer/semver" [5][6]), there is no evidence of a 3.4.4 release for the "flatted" circular JSON parser package. Official records from the npm registry show version history ending at 3.4.2 [7][2][8].

Citations:


Use a public flatted release.

package-lock.json resolves flatted@3.4.4 from https://registry.npmjs.org, but that version is not published there. Use published version 3.4.2 and regenerate the lockfile, or lock against the private registry that provides 3.4.4.

πŸ€– Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@package.json` at line 2951, Update the flatted dependency entry from the
unavailable public version 3.4.4 to the published 3.4.2 release, then regenerate
package-lock.json so its resolved version and registry metadata match the public
npm registry.

"vega-embed": "^7.1.0",
"@mermaid-js/layout-elk": "npm:empty-pkg@1.0.0",
"tar": "7.5.21",
Expand Down
Loading