Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
edbe52f
refactor: use structuredClone instead of JSON stringify
seonghobae Jun 10, 2026
b9090f9
ci: fix trivy scanner failure by ignoring .venv
seonghobae Jun 10, 2026
f06d7bc
Merge branch 'develop' into perf/structured-clone-mock-update-1182504โ€ฆ
seonghobae Jun 10, 2026
48783ec
ci: fix trivy scanner failure by ignoring .venv correctly
seonghobae Jun 10, 2026
3dcbc76
chore: upgrade urllib3 to >=2.2.3 to fix vulnerability
seonghobae Jun 10, 2026
8ecf019
chore: remove agent artifact .jules/bolt.md
seonghobae Jun 11, 2026
8fb29f4
refactor: use structuredClone instead of JSON stringify
seonghobae Jun 11, 2026
ef02359
ci: skip venv directory in trivy-fs-scan
seonghobae Jun 11, 2026
37c3bbd
ci: upgrade dependency-review-action to v5.0.0
seonghobae Jun 11, 2026
9fe8540
ci: upgrade urllib3 to 2.7.0 and dependency-review-action to v5.0.0
seonghobae Jun 11, 2026
d26b00e
Merge remote-tracking branch 'origin/develop' into perf/structured-clโ€ฆ
seonghobae Jun 11, 2026
be5e574
โšก [Replace JSON.parse with structuredClone for mock updates]
seonghobae Jun 11, 2026
6c0951a
โšก [Replace JSON.parse with structuredClone for mock updates]
seonghobae Jun 11, 2026
001ff73
fix: keep structured clone change focused
seonghobae Jun 11, 2026
36621dd
Merge branch 'develop' into perf/structured-clone-mock-update-1182504โ€ฆ
seonghobae Jun 11, 2026
046ca62
โšก [Replace JSON.parse with structuredClone for mock updates]
seonghobae Jun 11, 2026
12934b1
โšก [Replace JSON.parse with structuredClone for mock updates]
seonghobae Jun 11, 2026
c3af40d
fix: keep structured clone PR focused
seonghobae Jun 11, 2026
457cd04
โšก [Replace JSON.parse with structuredClone for mock updates]
seonghobae Jun 11, 2026
94faf01
fix: restore focused structured clone diff
seonghobae Jun 11, 2026
0b17df0
โšก [Replace JSON.parse with structuredClone for mock updates]
seonghobae Jun 11, 2026
df79887
fix: keep structured clone diff focused
seonghobae Jun 11, 2026
873f693
โšก Replace JSON.parse with structuredClone for mock updates
seonghobae Jun 11, 2026
c7a4015
Merge branch 'develop' into perf/structured-clone-mock-update-1182504โ€ฆ
seonghobae Jun 11, 2026
af0ab6d
Merge branch 'develop' into perf/structured-clone-mock-update-1182504โ€ฆ
seonghobae Jun 11, 2026
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
2 changes: 1 addition & 1 deletion apps/desktop/src/lib/job_runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const mockListeners = new Set<MockListener>();
* Triggers a mock workspace update to all listeners.
*/
function triggerMockUpdate() {
const payload = JSON.parse(JSON.stringify(mockWorkspace));
const payload = structuredClone(mockWorkspace);
mockListeners.forEach(listener => listener({ payload }));
}

Expand Down
Loading