gitlab-ai-provider 6.9.3 → 6.10.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 +11 -0
- package/dist/gitlab-ai-provider-6.10.1.tgz +0 -0
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/gitlab-ai-provider-6.9.3.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## <small>6.10.1 (2026-07-01)</small>
|
|
6
|
+
|
|
7
|
+
- Merge branch 'docs-add-gitlab-model-mr-pr-steps' into 'main' ([b22c0bd](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/b22c0bd))
|
|
8
|
+
- docs(skill): add MR, models.dev PR, and opencode bump steps ([3b4f366](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/3b4f366))
|
|
9
|
+
|
|
10
|
+
## 6.10.0 (2026-07-01)
|
|
11
|
+
|
|
12
|
+
- Merge branch 'feature-add-claude-sonnet-5' into 'main' ([5294b5e](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/5294b5e))
|
|
13
|
+
- feat(models): add Claude Sonnet 5 model mappings ([85976b4](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/85976b4))
|
|
14
|
+
- chore(skill): add add-gitlab-model skill to automate model onboarding ([6bbfc4d](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/6bbfc4d))
|
|
15
|
+
|
|
5
16
|
## <small>6.9.3 (2026-06-11)</small>
|
|
6
17
|
|
|
7
18
|
- Merge branch 'fix/concurrent-auth-token-race' into 'main' ([7306083](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/7306083))
|
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -1461,6 +1461,7 @@ var MODEL_MAPPINGS = {
|
|
|
1461
1461
|
"duo-chat-opus-4-8": { provider: "anthropic", model: "claude-opus-4-8" },
|
|
1462
1462
|
"duo-chat-opus-4-7": { provider: "anthropic", model: "claude-opus-4-7" },
|
|
1463
1463
|
"duo-chat-opus-4-6": { provider: "anthropic", model: "claude-opus-4-6" },
|
|
1464
|
+
"duo-chat-sonnet-5": { provider: "anthropic", model: "claude-sonnet-5" },
|
|
1464
1465
|
"duo-chat-sonnet-4-6": { provider: "anthropic", model: "claude-sonnet-4-6" },
|
|
1465
1466
|
"duo-chat-opus-4-5": { provider: "anthropic", model: "claude-opus-4-5-20251101" },
|
|
1466
1467
|
"duo-chat-sonnet-4-5": { provider: "anthropic", model: "claude-sonnet-4-5-20250929" },
|
|
@@ -1500,6 +1501,7 @@ var MODEL_MAPPINGS = {
|
|
|
1500
1501
|
provider: "workflow",
|
|
1501
1502
|
model: "anthropic/claude-sonnet-4-5-20250929"
|
|
1502
1503
|
},
|
|
1504
|
+
"duo-workflow-sonnet-5": { provider: "workflow", model: "claude_sonnet_5" },
|
|
1503
1505
|
"duo-workflow-sonnet-4-6": { provider: "workflow", model: "claude_sonnet_4_6" },
|
|
1504
1506
|
"duo-workflow-opus-4-5": {
|
|
1505
1507
|
provider: "workflow",
|
|
@@ -2501,7 +2503,7 @@ var import_node_async_hooks = require("async_hooks");
|
|
|
2501
2503
|
var import_isomorphic_ws = __toESM(require("isomorphic-ws"));
|
|
2502
2504
|
|
|
2503
2505
|
// src/version.ts
|
|
2504
|
-
var VERSION = true ? "6.
|
|
2506
|
+
var VERSION = true ? "6.10.0" : "0.0.0-dev";
|
|
2505
2507
|
|
|
2506
2508
|
// src/gitlab-workflow-client.ts
|
|
2507
2509
|
var WS_CONNECT_TIMEOUT_MS = 3e4;
|