gitlab-ai-provider 6.4.2 → 6.5.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.5.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.4.2.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.5.0 (2026-04-17)
|
|
6
|
+
|
|
7
|
+
- Merge branch 'add-opus-4-7-model-mapping' into 'main' ([f95e21a](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/f95e21a))
|
|
8
|
+
- feat: add Claude Opus 4.7 model mapping ([dbb697f](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/dbb697f))
|
|
9
|
+
|
|
5
10
|
## <small>6.4.2 (2026-04-09)</small>
|
|
6
11
|
|
|
7
12
|
- fix: prevent auto-generated flowConfig from breaking DWS flow resolution ([e653dfc](https://gitlab.com/vglafirov/gitlab-ai-provider/commit/e653dfc))
|
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -785,6 +785,7 @@ var import_openai = __toESM(require("openai"));
|
|
|
785
785
|
// src/model-mappings.ts
|
|
786
786
|
var MODEL_MAPPINGS = {
|
|
787
787
|
// Anthropic models
|
|
788
|
+
"duo-chat-opus-4-7": { provider: "anthropic", model: "claude-opus-4-7" },
|
|
788
789
|
"duo-chat-opus-4-6": { provider: "anthropic", model: "claude-opus-4-6" },
|
|
789
790
|
"duo-chat-sonnet-4-6": { provider: "anthropic", model: "claude-sonnet-4-6" },
|
|
790
791
|
"duo-chat-opus-4-5": { provider: "anthropic", model: "claude-opus-4-5-20251101" },
|
|
@@ -1653,7 +1654,7 @@ var GitLabOpenAILanguageModel = class {
|
|
|
1653
1654
|
var import_isomorphic_ws = __toESM(require("isomorphic-ws"));
|
|
1654
1655
|
|
|
1655
1656
|
// src/version.ts
|
|
1656
|
-
var VERSION = true ? "6.4.
|
|
1657
|
+
var VERSION = true ? "6.4.2" : "0.0.0-dev";
|
|
1657
1658
|
|
|
1658
1659
|
// src/gitlab-workflow-types.ts
|
|
1659
1660
|
var WorkflowType = /* @__PURE__ */ ((WorkflowType2) => {
|