Skip to content

[v24.x backport] inspector: support storage inspection and webstorage events - #63176

Merged
aduh95 merged 5 commits into
nodejs:v24.x-stagingfrom
thisalihassan:backport-61139-to-v24.x
May 9, 2026
Merged

[v24.x backport] inspector: support storage inspection and webstorage events#63176
aduh95 merged 5 commits into
nodejs:v24.x-stagingfrom
thisalihassan:backport-61139-to-v24.x

Conversation

@nodejs-github-bot

Copy link
Copy Markdown
Collaborator

Review requested:

  • @nodejs/config
  • @nodejs/gyp
  • @nodejs/inspector
  • @nodejs/startup

@nodejs-github-botnodejs-github-bot added c++ Issues and PRs that require attention from people who are familiar with C++. lib / src Issues and PRs related to general changes in the lib or src directory. needs-ci PRs that need a full CI run. v24.x Issues that can be reproduced on v24.x or PRs targeting the v24.x-staging branch. labels May 7, 2026
@thisalihassan

Copy link
Copy Markdown
ContributorAuthor

@aduh95 I believe this #62660 PR fixes this (generates localstorage temp file) check https://github.com/nodejs/node/actions/runs/25511424629/job/74870924115?pr=63176 now there's a CI #62661 which enforces clean git tree

Want me to backport that commit too?

@codecov

codecovBot commented May 7, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 92.11009% with 43 lines in your changes missing coverage. Please review.
✅ Project coverage is 89.92%. Comparing base (8752b60) to head (b881658).
⚠️ Report is 5 commits behind head on v24.x-staging.

Files with missing linesPatch %Lines
src/inspector/dom_storage_agent.cc86.32%14 Missing and 15 partials ⚠️
src/inspector/inspector_object_utils.cc89.79%0 Missing and 5 partials ⚠️
src/node_webstorage.cc77.27%1 Missing and 4 partials ⚠️
src/inspector/network_agent.cc96.92%2 Missing ⚠️
src/inspector/notification_emitter.cc90.00%0 Missing and 1 partial ⚠️
src/inspector_agent.cc95.00%0 Missing and 1 partial ⚠️
Additional details and impacted files
@@ Coverage Diff @@## v24.x-staging #63176 +/- ##
=================================================
+ Coverage 89.85% 89.92% +0.06% 
=================================================
Files 680 686 +6 Lines 207901 208389 +488 Branches 40000 40077 +77 =================================================
+ Hits 186816 187387 +571 + Misses 13283 13238 -45 + Partials 7802 7764 -38 
Files with missing linesCoverage Δ
lib/inspector.js97.22% <100.00%> (+0.12%)⬆️
lib/internal/inspector/webstorage.js100.00% <100.00%> (ø)
lib/internal/webstorage.js100.00% <100.00%> (ø)
src/inspector/notification_emitter.h100.00% <100.00%> (ø)
src/inspector/storage_agent.cc100.00% <100.00%> (ø)
src/node_builtins.cc76.33% <ø> (+0.38%)⬆️
src/node_options.cc76.28% <100.00%> (+0.12%)⬆️
src/node_options.h97.88% <100.00%> (+0.01%)⬆️
src/node_webstorage.h50.00% <ø> (ø)
src/inspector/notification_emitter.cc90.00% <90.00%> (ø)
... and 5 more

... and 33 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@aduh95

Copy link
Copy Markdown
Contributor

Want me to backport that commit too?

Yes please, otherwise we cannot land this without breaking CI for every other backport PR

Comment threadsrc/inspector/domain_dom_storage.pdl
Comment threadsrc/inspector/network_agent.cc Outdated
Comment threadsrc/inspector/network_agent.cc Outdated
Comment threadsrc/inspector/network_agent.cc Outdated
@thisalihassan
thisalihassanforce-pushed the backport-61139-to-v24.x branch from 2837841 to 1fbb5a9CompareMay 7, 2026 20:50
@aduh95aduh95 added author ready PRs that have at least one approval, no pending requests for changes, and a CI started. request-ci Add this label to start a Jenkins CI on a PR. labels May 7, 2026
@github-actionsgithub-actionsBot removed the request-ci Add this label to start a Jenkins CI on a PR. label May 7, 2026
@nodejs-github-bot

Copy link
Copy Markdown
Collaborator

@nodejs-github-bot

Copy link
Copy Markdown
Collaborator

@nodejs-github-bot

Copy link
Copy Markdown
Collaborator

islandryuand others added 5 commits May 9, 2026 09:32
PR-URL: nodejs#61139
Backport-PR-URL: nodejs#63176
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: nodejs#62145
Backport-PR-URL: nodejs#63176
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: nodejs#62162
Backport-PR-URL: nodejs#63176
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Signed-off-by: Ali Hassan <ali-hassan27@outlook.com>
PR-URL: nodejs#62616
Backport-PR-URL: nodejs#63176
Refs: nodejs#62145
Refs: nodejs#62162
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Co-Authored-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Signed-off-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: nodejs#62660
Backport-PR-URL: nodejs#63176
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
@aduh95
aduh95force-pushed the backport-61139-to-v24.x branch from 1fbb5a9 to b881658CompareMay 9, 2026 07:32
@aduh95

aduh95 commented May 9, 2026

Copy link
Copy Markdown
Contributor

Landed in 8752b60...b881658

@aduh95
aduh95 merged commit b881658 into nodejs:v24.x-stagingMay 9, 2026
18 of 19 checks passed
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

author readyPRs that have at least one approval, no pending requests for changes, and a CI started.c++Issues and PRs that require attention from people who are familiar with C++.lib / srcIssues and PRs related to general changes in the lib or src directory.needs-ciPRs that need a full CI run.v24.xIssues that can be reproduced on v24.x or PRs targeting the v24.x-staging branch.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants

@thisalihassan@nodejs-github-bot@aduh95@islandryu@legendecas