@gitlab/opencode-gitlab-plugin 1.6.0 → 1.6.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
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
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
|
+
## [1.6.1](https://gitlab.com/gitlab-org/editor-extensions/opencode-gitlab-plugin/compare/v1.6.0...v1.6.1) (2026-02-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
|
|
10
|
+
* use typeof check for resolved filter to handle [secure] correctly ([7db6bf2](https://gitlab.com/gitlab-org/editor-extensions/opencode-gitlab-plugin/commit/7db6bf2e222a28edf576e823575c7799d17fae9b))
|
|
11
|
+
|
|
5
12
|
## [1.6.0](https://gitlab.com/gitlab-org/editor-extensions/opencode-gitlab-plugin/compare/v1.5.9...v1.6.0) (2026-02-04)
|
|
6
13
|
|
|
7
14
|
|
|
Binary file
|
package/dist/index.js
CHANGED
|
@@ -3389,7 +3389,7 @@ Can update title, description, state, labels, and assignees.`,
|
|
|
3389
3389
|
import { tool as tool12 } from "@opencode-ai/plugin";
|
|
3390
3390
|
var z12 = tool12.schema;
|
|
3391
3391
|
function filterDiscussionsByResolved(result, resolved) {
|
|
3392
|
-
if (resolved
|
|
3392
|
+
if (typeof resolved !== "boolean") {
|
|
3393
3393
|
return result;
|
|
3394
3394
|
}
|
|
3395
3395
|
return {
|
|
@@ -3718,7 +3718,7 @@ Use after addressing feedback to indicate the discussion is complete.`,
|
|
|
3718
3718
|
import { tool as tool13 } from "@opencode-ai/plugin";
|
|
3719
3719
|
var z13 = tool13.schema;
|
|
3720
3720
|
function filterNotesByResolved(result, resolved) {
|
|
3721
|
-
if (resolved
|
|
3721
|
+
if (typeof resolved !== "boolean") {
|
|
3722
3722
|
return result;
|
|
3723
3723
|
}
|
|
3724
3724
|
return {
|
package/package.json
CHANGED
|
Binary file
|