@gitlab/gitlab-ai-provider 3.4.1 → 3.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
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
|
+
## 3.5.0 (2026-02-06)
|
|
6
|
+
|
|
7
|
+
- Merge branch 'feat/add-opus-4-6' into 'main' ([b776bd7](https://gitlab.com/gitlab-org/editor-extensions/gitlab-ai-provider/commit/b776bd7))
|
|
8
|
+
- feat(models): add Claude Opus 4.6 model support ([e221e45](https://gitlab.com/gitlab-org/editor-extensions/gitlab-ai-provider/commit/e221e45))
|
|
9
|
+
|
|
5
10
|
## <small>3.4.1 (2026-02-06)</small>
|
|
6
11
|
|
|
7
12
|
- Merge branch 'vg/token_refresh_fix' into 'main' ([8c1f2c4](https://gitlab.com/gitlab-org/editor-extensions/gitlab-ai-provider/commit/8c1f2c4))
|
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -722,6 +722,7 @@ var import_openai = __toESM(require("openai"));
|
|
|
722
722
|
// src/model-mappings.ts
|
|
723
723
|
var MODEL_MAPPINGS = {
|
|
724
724
|
// Anthropic models
|
|
725
|
+
"duo-chat-opus-4-6": { provider: "anthropic", model: "claude-opus-4-6" },
|
|
725
726
|
"duo-chat-opus-4-5": { provider: "anthropic", model: "claude-opus-4-5-20251101" },
|
|
726
727
|
"duo-chat-sonnet-4-5": { provider: "anthropic", model: "claude-sonnet-4-5-20250929" },
|
|
727
728
|
"duo-chat-haiku-4-5": { provider: "anthropic", model: "claude-haiku-4-5-20251001" },
|
|
@@ -1679,7 +1680,7 @@ var GitLabOAuthManager = class {
|
|
|
1679
1680
|
};
|
|
1680
1681
|
|
|
1681
1682
|
// src/version.ts
|
|
1682
|
-
var VERSION = true ? "3.4.
|
|
1683
|
+
var VERSION = true ? "3.4.1" : "0.0.0-dev";
|
|
1683
1684
|
|
|
1684
1685
|
// src/gitlab-provider.ts
|
|
1685
1686
|
var fs = __toESM(require("fs"));
|