diff --git a/CHANGELOG.md b/CHANGELOG.md index f8150877..ecce9b37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 6.0.3 (2025-02-25) + +### Bugfixes + +- Fixed Helm chart templates missing `namespace:` in resource metadata, causing some resources to appear in different namespaces under certain circumstances, specifically deployment scenarios using ArgoCD-deployed Helmfile with a release namespace set for Hookshot differently than the ArgoCD Application's namespace. Most other Helm deployment methods should continue to work as expected with your existing configuration, as the inferred namespace would have resulted in proper resource placement without this change. ([\#1013](https://github.com/matrix-org/matrix-hookshot/issues/1013)) +- Fix hookshot failing to handle incoming webhooks when it is unable to change a user's displayname. ([\#1019](https://github.com/matrix-org/matrix-hookshot/issues/1019)) +- GitLab merge request comments are now correctly filtered based on label include / exclude configuration. ([\#1756](https://github.com/matrix-org/matrix-hookshot/issues/1756)) + +### Improved Documentation + +- Explain how to edit room state for GitLab projects from within Element. ([\#1016](https://github.com/matrix-org/matrix-hookshot/issues/1016)) + +### Internal Changes + +- Update dependencies with security advisories. ([\#1024](https://github.com/matrix-org/matrix-hookshot/issues/1024)) + + # 6.0.2 (2025-01-23) **Security release**: It is strongly recommended that you upgrade to this release, as it contains security fixes. diff --git a/Cargo.toml b/Cargo.toml index b0637bb0..162d1fd8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-hookshot" -version = "6.0.2" +version = "6.0.3" edition = "2021" [lib] diff --git a/changelog.d/1013.bugfix b/changelog.d/1013.bugfix deleted file mode 100644 index f5cf3318..00000000 --- a/changelog.d/1013.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed Helm chart templates missing `namespace:` in resource metadata, causing some resources to appear in different namespaces under certain circumstances, specifically deployment scenarios using ArgoCD-deployed Helmfile with a release namespace set for Hookshot differently than the ArgoCD Application's namespace. Most other Helm deployment methods should continue to work as expected with your existing configuration, as the inferred namespace would have resulted in proper resource placement without this change. \ No newline at end of file diff --git a/changelog.d/1016.doc b/changelog.d/1016.doc deleted file mode 100644 index 120b4f23..00000000 --- a/changelog.d/1016.doc +++ /dev/null @@ -1 +0,0 @@ -Explain how to edit room state for GitLab projects from within Element. diff --git a/changelog.d/1019.bugfix b/changelog.d/1019.bugfix deleted file mode 100644 index 46a9366f..00000000 --- a/changelog.d/1019.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix hookshot failing to handle incoming webhooks when it is unable to change a user's displayname. diff --git a/changelog.d/1024.misc b/changelog.d/1024.misc deleted file mode 100644 index fe3a23e8..00000000 --- a/changelog.d/1024.misc +++ /dev/null @@ -1 +0,0 @@ -Update dependencies with security advisories. \ No newline at end of file diff --git a/changelog.d/1756.bugfix b/changelog.d/1756.bugfix deleted file mode 100644 index bf6cf434..00000000 --- a/changelog.d/1756.bugfix +++ /dev/null @@ -1 +0,0 @@ -GitLab merge request comments are now correctly filtered based on label include / exclude configuration. \ No newline at end of file diff --git a/package.json b/package.json index 430fd39a..157be7de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "6.0.2", + "version": "6.0.3", "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", "main": "lib/app.js", "repository": "https://github.com/matrix-org/matrix-hookshot",