@elyracode/coding-agent 0.9.12 → 0.9.13

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
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.13] - 2026-07-08
4
+
5
+ ### Changed
6
+ - Upgraded to TypeScript 7.0 (the native compiler) across the workspace, bumping the `typescript` devDependency from `^6.0.3` to `^7.0.2`
7
+
3
8
  ## [0.9.12] - 2026-06-30
4
9
 
5
10
  ### Changed
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "elyra-extension-custom-provider",
3
- "version": "0.9.12",
3
+ "version": "0.9.13",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "elyra-extension-custom-provider",
9
- "version": "0.9.12",
9
+ "version": "0.9.13",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sdk": "^0.52.0"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "elyra-extension-custom-provider-anthropic",
3
3
  "private": true,
4
- "version": "0.9.12",
4
+ "version": "0.9.13",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "elyra-extension-custom-provider-gitlab-duo",
3
3
  "private": true,
4
- "version": "0.9.12",
4
+ "version": "0.9.13",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "elyra-extension-sandbox",
3
- "version": "0.9.12",
3
+ "version": "0.9.13",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "elyra-extension-sandbox",
9
- "version": "0.9.12",
9
+ "version": "0.9.13",
10
10
  "dependencies": {
11
11
  "@anthropic-ai/sandbox-runtime": "^0.0.26"
12
12
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "elyra-extension-sandbox",
3
3
  "private": true,
4
- "version": "0.9.12",
4
+ "version": "0.9.13",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "elyra-extension-with-deps",
3
- "version": "0.9.12",
3
+ "version": "0.9.13",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "elyra-extension-with-deps",
9
- "version": "0.9.12",
9
+ "version": "0.9.13",
10
10
  "dependencies": {
11
11
  "ms": "^2.1.3"
12
12
  },
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "elyra-extension-with-deps",
3
3
  "private": true,
4
- "version": "0.9.12",
4
+ "version": "0.9.13",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "clean": "echo 'nothing to clean'",
@@ -26,7 +26,7 @@ if (process.env.MY_ANTHROPIC_KEY) {
26
26
  // Model registry with no custom models.json
27
27
  const modelRegistry = ModelRegistry.inMemory(authStorage);
28
28
 
29
- const model = getModel("anthropic", "claude-sonnet-4-20250514");
29
+ const model = getModel("anthropic", "claude-sonnet-5");
30
30
  if (!model) throw new Error("Model not found");
31
31
 
32
32
  // In-memory settings with overrides
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyracode/coding-agent",
3
- "version": "0.9.12",
3
+ "version": "0.9.13",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "elyraConfig": {
@@ -38,9 +38,9 @@
38
38
  "prepublishOnly": "npm run clean && npm run build"
39
39
  },
40
40
  "dependencies": {
41
- "@elyracode/agent-core": "^0.9.12",
42
- "@elyracode/ai": "^0.9.12",
43
- "@elyracode/tui": "^0.9.12",
41
+ "@elyracode/agent-core": "^0.9.13",
42
+ "@elyracode/ai": "^0.9.13",
43
+ "@elyracode/tui": "^0.9.13",
44
44
  "@silvia-odwyer/photon-node": "^0.3.4",
45
45
  "chalk": "^5.5.0",
46
46
  "cli-highlight": "^2.1.11",
@@ -67,7 +67,7 @@
67
67
  }
68
68
  },
69
69
  "optionalDependencies": {
70
- "@elyracode/clipboard": "^0.9.12"
70
+ "@elyracode/clipboard": "^0.9.13"
71
71
  },
72
72
  "devDependencies": {
73
73
  "@types/diff": "^7.0.2",
@@ -76,7 +76,7 @@
76
76
  "@types/node": "^24.3.0",
77
77
  "@types/proper-lockfile": "^4.1.4",
78
78
  "shx": "^0.4.0",
79
- "typescript": "^6.0.3",
79
+ "typescript": "^7.0.2",
80
80
  "vitest": "^4.1.8"
81
81
  },
82
82
  "keywords": [