diff --git a/.github/workflows/phpunit-mariadb.yml b/.github/workflows/phpunit-mariadb.yml
index 36aae81f..6faa6e27 100644
--- a/.github/workflows/phpunit-mariadb.yml
+++ b/.github/workflows/phpunit-mariadb.yml
@@ -68,7 +68,9 @@ jobs:
strategy:
matrix:
- php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
+ # Php 8.5 (supported by server's master) is not supported by Psalm 6.12.1
+ #php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
+ php-versions: ['8.4']
server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }}
mariadb-versions: ['10.6', '11.4']
diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml
index a39e0bf7..f926f838 100644
--- a/.github/workflows/phpunit-pgsql.yml
+++ b/.github/workflows/phpunit-pgsql.yml
@@ -68,7 +68,9 @@ jobs:
strategy:
matrix:
- php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
+ # Php 8.5 (supported by server's master) is not supported by Psalm 6.12.1
+ #php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
+ php-versions: ['8.4']
server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }}
name: PostgreSQL PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 66d22d1f..13067af6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
+## 4.1.0 - 2025-12-23
+
+### Added
+- add support for chat memories @marcelklehr [#310](https://github.com/nextcloud/integration_openai/pull/310)
+
+### Fixed
+- fix release archive: include Php dependencies, exclude stylelint and vite config files @julien-nc [#312](https://github.com/nextcloud/integration_openai/pull/312)
+
## 4.0.0 - 2025-12-09
### Added
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 8f26d1c2..0ca36060 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -101,7 +101,7 @@ Negative:
Learn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).
]]>
- 4.0.0
+ 4.1.0
agpl
Julien Veyssier
OpenAi