@elyracode/coding-agent 0.3.0 → 0.3.2

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 CHANGED
@@ -2,6 +2,21 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.3.2] - 2026-05-10
6
+
7
+ ### Fixed
8
+ - `@elyracode/db-tools`: Auto-loads `.env` file from project root with Laravel/Docker key mapping (DB_HOST, DB_DATABASE, CLICKHOUSE_HOST, etc.)
9
+ - `@elyracode/db-tools`: Explicit `ELYRA_*` env vars always take precedence over `.env` values
10
+
11
+ ## [0.3.1] - 2026-05-10
12
+
13
+ ### Added
14
+ - Database tools package (`@elyracode/db-tools`): query MySQL and ClickHouse with schema awareness
15
+ - Read-only by default with `ELYRA_DB_ALLOW_WRITES` escape hatch
16
+
17
+ ### Fixed
18
+ - ClickHouse config uses granular env vars (HOST, PORT, HTTPS, timeouts) instead of a single URL
19
+
5
20
  ## [0.3.0] - 2026-05-10
6
21
 
7
22
  ### Added
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "elyra-extension-custom-provider-anthropic",
3
3
  "private": true,
4
- "version": "0.3.0",
5
- "type": "module",
4
+ "version": "0.3.2",
5
+ "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
8
8
  "build": "echo 'nothing to build'",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "elyra-extension-custom-provider-gitlab-duo",
3
3
  "private": true,
4
- "version": "0.3.0",
5
- "type": "module",
4
+ "version": "0.3.2",
5
+ "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
8
8
  "build": "echo 'nothing to build'",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "elyra-extension-sandbox",
3
3
  "private": true,
4
- "version": "0.3.0",
5
- "type": "module",
4
+ "version": "0.3.2",
5
+ "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
8
8
  "build": "echo 'nothing to build'",
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "elyra-extension-with-deps",
3
3
  "private": true,
4
- "version": "0.3.0",
5
- "type": "module",
4
+ "version": "0.3.2",
5
+ "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
8
8
  "build": "echo 'nothing to build'",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@elyracode/coding-agent",
3
- "version": "0.3.0",
4
- "description": "Coding agent CLI with read, bash, edit, write tools and session management",
3
+ "version": "0.3.2",
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.0",
42
- "@elyracode/ai": "^0.3.0",
43
- "@elyracode/tui": "^0.3.0",
41
+ "@elyracode/agent-core": "^0.3.2",
42
+ "@elyracode/ai": "^0.3.2",
43
+ "@elyracode/tui": "^0.3.2",
44
44
  "@silvia-odwyer/photon-node": "^0.3.4",
45
45
  "chalk": "^5.5.0",
46
46
  "cli-highlight": "^2.1.11",