@rozenite/sqlite-plugin 1.7.0-rc.2 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -0
- package/dist/devtools/assets/{panel-B3paLkwG.js → panel-DjRs5NTl.js} +28 -28
- package/dist/devtools/panel.html +1 -1
- package/dist/react-native/chunks/useRozeniteSqlitePlugin.require.cjs +1 -1
- package/dist/react-native/chunks/useRozeniteSqlitePlugin.require.js +208 -97
- package/dist/react-native/index.cjs +1 -1
- package/dist/react-native/index.d.ts +1 -1
- package/dist/react-native/index.js +2 -2
- package/dist/rozenite.json +1 -1
- package/package.json +6 -5
- package/react-native.ts +1 -1
- package/src/react-native/useRozeniteSqlitePlugin.ts +3 -0
- package/src/react-native/useSqliteAgentTools.ts +152 -0
- package/vite.config.ts +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @rozenite/sqlite-plugin
|
|
2
2
|
|
|
3
|
+
## 1.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#228](https://github.com/callstackincubator/rozenite/pull/228) [`0b373c7`](https://github.com/callstackincubator/rozenite/commit/0b373c7e1b3ebf0a80f87f0a7871d55dcf300992) Thanks [@V3RON](https://github.com/V3RON)! - Add agent tool support to the SQLite plugin. LLM agents can now use `list-databases` to discover registered databases and `execute-sql` to run any SQL — including multi-statement scripts — against a specific database.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`404244b`](https://github.com/callstackincubator/rozenite/commit/404244bab0600761ed82e5a7e8072b933c46f80a), [`404244b`](https://github.com/callstackincubator/rozenite/commit/404244bab0600761ed82e5a7e8072b933c46f80a)]:
|
|
12
|
+
- @rozenite/agent-bridge@1.8.0
|
|
13
|
+
- @rozenite/plugin-bridge@1.8.0
|
|
14
|
+
|
|
15
|
+
## 1.7.0
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- [#210](https://github.com/callstackincubator/rozenite/pull/210) [`45877af`](https://github.com/callstackincubator/rozenite/commit/45877af273f007434679029ff46fd767797aa2e3) Thanks [@V3RON](https://github.com/V3RON)! - Add a new plugin for interacting with SQLite databases, making it possible to inspect database structure, browse tables, and run queries through the Rozenite plugin system.
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies []:
|
|
24
|
+
- @rozenite/plugin-bridge@1.7.0
|
|
25
|
+
|
|
3
26
|
## 1.6.0
|
|
4
27
|
|
|
5
28
|
- Initial release.
|