@elyracode/coding-agent 0.3.0 → 0.3.1
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 +9 -0
- package/examples/extensions/custom-provider-anthropic/package.json +2 -2
- package/examples/extensions/custom-provider-gitlab-duo/package.json +2 -2
- package/examples/extensions/sandbox/package.json +2 -2
- package/examples/extensions/with-deps/package.json +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.3.1] - 2026-05-10
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- Database tools package (`@elyracode/db-tools`): query MySQL and ClickHouse with schema awareness
|
|
9
|
+
- Read-only by default with `ELYRA_DB_ALLOW_WRITES` escape hatch
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- ClickHouse config uses granular env vars (HOST, PORT, HTTPS, timeouts) instead of a single URL
|
|
13
|
+
|
|
5
14
|
## [0.3.0] - 2026-05-10
|
|
6
15
|
|
|
7
16
|
### Added
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyracode/coding-agent",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"elyraConfig": {
|
|
7
7
|
"configDir": ".elyra"
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"prepublishOnly": "npm run clean && npm run build"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@elyracode/agent-core": "^0.3.
|
|
42
|
-
|
|
43
|
-
|
|
41
|
+
"@elyracode/agent-core": "^0.3.1",
|
|
42
|
+
"@elyracode/ai": "^0.3.1",
|
|
43
|
+
"@elyracode/tui": "^0.3.1",
|
|
44
44
|
"@silvia-odwyer/photon-node": "^0.3.4",
|
|
45
45
|
"chalk": "^5.5.0",
|
|
46
46
|
"cli-highlight": "^2.1.11",
|