Compare commits

..

2 Commits

Author SHA1 Message Date
gitea-actions
b66caf6824 chore: bump version to v0.3.5
All checks were successful
Auto Tag Develop / tag (push) Successful in 4s
Build Release Artefact / build (push) Successful in 1m18s
2026-03-18 16:58:27 +00:00
Matthieu
96cbb45e61 fix(api) : fix mark-all-read using undefined executeStatement on DQL query
All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-18 17:47:31 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
parameters:
app.version: '0.3.4'
app.version: '0.3.5'

View File

@@ -40,7 +40,7 @@ class NotificationRepository extends ServiceEntityRepository
->andWhere('n.isRead = false')
->setParameter('user', $user)
->getQuery()
->executeStatement()
->execute()
;
}
}