Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
68487ef
Minor Tailwind CSS linting fixes
NuroDev Feb 10, 2026
7f43d5c
Minor Tailwind CSS linting fixes
NuroDev Feb 10, 2026
334acbe
Added initial D1 route plumbing
NuroDev Feb 10, 2026
43a6b47
Added `lodash` dependency
NuroDev Feb 10, 2026
ae30d73
Added `@types/lodash` dev dependency
NuroDev Feb 10, 2026
c7deb47
Add initial (D1) driver plumbing
NuroDev Feb 10, 2026
e1526b4
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 10, 2026
d3082c0
Added changeset
NuroDev Feb 10, 2026
87bb21c
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 10, 2026
c0bef86
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 10, 2026
50d44ec
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 10, 2026
93ac650
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 11, 2026
ca30e3f
Removed placeholder driver logic from D1 database route
NuroDev Feb 11, 2026
fb7bbf7
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 11, 2026
22a69e6
Minor refactoring
NuroDev Feb 11, 2026
09133d9
Minor `StudioSQLiteExplainTab` refactoring
NuroDev Feb 11, 2026
f3187e7
Minor SQLite driver generator refactoring
NuroDev Feb 11, 2026
39c88ec
Improve driver JSDoc's
NuroDev Feb 11, 2026
1e7e857
Removed `mysql` dialect support
NuroDev Feb 11, 2026
12138db
Minor refactoring / code cleanup
NuroDev Feb 11, 2026
2e810b3
Added explicit returns to `CursorV2`
NuroDev Feb 11, 2026
e26192d
Fixed Devin critical suggestions
NuroDev Feb 11, 2026
355e6b9
Fixed Devin minor suggestions
NuroDev Feb 11, 2026
44b98b8
Replaced `Promise.all` with `Promise.allSettled`
NuroDev Feb 11, 2026
0c86976
Improved data fetching error message
NuroDev Feb 11, 2026
5e9789f
Added granular data fetching error handling
NuroDev Feb 11, 2026
589b7bd
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 11, 2026
0f61c9c
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 11, 2026
31dd02b
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 11, 2026
3cd4e28
Fix `TOKEN_IDENTIFIER` & `TOKEN_STRING_LITERAL` regex pattern parenth…
NuroDev Feb 11, 2026
4525660
[C3] bump sv from 0.11.4 to 0.12.1 in /packages/create-cloudflare/src…
dependabot[bot] Feb 11, 2026
cbd2e8c
fix(wrangler): don't proxy localhost requests during dev (#12516)
edmundhung Feb 11, 2026
9378280
[wrangler] Use project's package manager in wrangler setup (#12437)
MattieTK Feb 11, 2026
17fdca7
Skip TurboRepo running builds in Vite playground packages (#12450)
jamesopstad Feb 11, 2026
ac29fe9
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 11, 2026
23656ba
Refactored sidebar to have re-usable item group component
NuroDev Feb 12, 2026
1bafa14
Refactored to use a unified breadcrumb component
NuroDev Feb 12, 2026
82536b7
Added basic unit tests for SQLite driver + utils
NuroDev Feb 12, 2026
a82a064
Fixed React fragment missing key
NuroDev Feb 12, 2026
b516b8d
Replaced `lodash` with inline forks
NuroDev Feb 12, 2026
fa79a07
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 12, 2026
690d78a
Improved changeset description
NuroDev Feb 12, 2026
bcb4087
Merge branch 'main' into NuroDev/local-explorer-studio-plumbing
NuroDev Feb 12, 2026
d934801
Replaced `String(...)` with `JSON.stringify(...)`
NuroDev Feb 12, 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
9 changes: 9 additions & 0 deletions .changeset/chilly-pans-follow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
"@cloudflare/local-explorer-ui": minor
---

Implemented initial data studio driver support.

This provides the initial plumbing needed to add the complete data studio component to the local explorer in a later PR. D1 databases will now appear in the sidebar alongside KV namespaces when running the local explorer.

This is an experimental WIP feature.
8 changes: 6 additions & 2 deletions packages/local-explorer-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@
"dev": "concurrently -n api,ui,worker -c green,blue,orange \"openapi-ts --watch\" \"vite\" \"pnpm --filter @fixture/worker-with-resources start\"",
"dev:ui": "concurrently -n api,ui -c green,blue \"openapi-ts --watch\" \"vite\"",
"postinstall": "openapi-ts",
"preview": "vite preview"
"preview": "vite preview",
"test": "vitest",
"test:ci": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
Expand All @@ -36,6 +39,7 @@
"concurrently": "^9.0.0",
"typescript": "catalog:default",
"vite": "catalog:default",
"vite-plugin-svgr": "^4.3.0"
"vite-plugin-svgr": "^4.3.0",
"vitest": "catalog:default"
}
}
Loading
Loading