gitlab-ai-provider 6.7.1 → 6.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 +5 -0
- package/dist/gitlab-ai-provider-6.8.0.tgz +0 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/gitlab-ai-provider-6.7.1.tgz +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
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
|
+
## 6.8.0 (2026-05-28)
|
|
6
|
+
|
|
7
|
+
- Merge branch 'feat/add-opus-4-8-model-mapping' into 'main' ([3ba92de](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/3ba92de))
|
|
8
|
+
- feat: add Claude Opus 4.8 model mapping ([be321b3](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/be321b3))
|
|
9
|
+
|
|
5
10
|
## <small>6.7.1 (2026-05-26)</small>
|
|
6
11
|
|
|
7
12
|
- Merge branch 'fix/anthropic-cache-token-counting' into 'main' ([298e2d0](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/298e2d0))
|
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -814,6 +814,7 @@ var import_openai = __toESM(require("openai"));
|
|
|
814
814
|
// src/model-mappings.ts
|
|
815
815
|
var MODEL_MAPPINGS = {
|
|
816
816
|
// Anthropic models
|
|
817
|
+
"duo-chat-opus-4-8": { provider: "anthropic", model: "claude-opus-4-8" },
|
|
817
818
|
"duo-chat-opus-4-7": { provider: "anthropic", model: "claude-opus-4-7" },
|
|
818
819
|
"duo-chat-opus-4-6": { provider: "anthropic", model: "claude-opus-4-6" },
|
|
819
820
|
"duo-chat-sonnet-4-6": { provider: "anthropic", model: "claude-sonnet-4-6" },
|
|
@@ -1684,7 +1685,7 @@ var GitLabOpenAILanguageModel = class {
|
|
|
1684
1685
|
var import_isomorphic_ws = __toESM(require("isomorphic-ws"));
|
|
1685
1686
|
|
|
1686
1687
|
// src/version.ts
|
|
1687
|
-
var VERSION = true ? "6.7.
|
|
1688
|
+
var VERSION = true ? "6.7.1" : "0.0.0-dev";
|
|
1688
1689
|
|
|
1689
1690
|
// src/gitlab-workflow-types.ts
|
|
1690
1691
|
var WorkflowType = /* @__PURE__ */ ((WorkflowType2) => {
|