kolaente
9b78584734
fix(events): only trigger task.updated once when marking task done
...
Resolves https://github.com/go-vikunja/vikunja/issues/1724
2025-11-16 11:01:15 +01:00
kolaente
f96601bf18
fix(webhook): make sure the payload always contains a fully loaded project
2025-11-16 10:48:53 +01:00
Copilot
7729a3dcad
fix: HTML entity double-escaping in email notifications ( #1829 )
...
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: kolaente <13721712+kolaente@users.noreply.github.com >
2025-11-15 21:37:09 +01:00
Copilot
f2a1348c51
feat: add thread IDs to task notification emails for client-side threading ( #1826 )
...
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: kolaente <13721712+kolaente@users.noreply.github.com >
Co-authored-by: kolaente <k@knt.li >
2025-11-15 18:58:32 +01:00
Biagio00
5b42724205
fix(kanban): repeating tasks dates won't update when moved in done bucket ( #1638 )
2025-11-14 16:57:53 +00:00
Frederick [Bot]
7a0b55307b
chore(i18n): update translations via Crowdin
2025-11-13 00:56:40 +00:00
Copilot
9c81afb7b2
feat: replace PNG-based initials avatar with SVG generation ( #1802 )
...
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: kolaente <13721712+kolaente@users.noreply.github.com >
2025-11-12 22:26:52 +00:00
kolaente
dcfd096588
feat: allow setting dark custom logo
...
Resolves https://github.com/go-vikunja/vikunja/issues/1799
2025-11-12 21:07:01 +01:00
kolaente
8862b6f69d
fix(migration): return proper error message when request fails
...
Related to https://github.com/go-vikunja/vikunja/issues/1788
2025-11-12 20:25:17 +01:00
kolaente
9efc0baf50
fix(migration): add retry to migration request helper
...
Resolves https://github.com/go-vikunja/vikunja/issues/1788
2025-11-12 20:10:32 +01:00
Frederick [Bot]
a153fc8c25
[skip ci] Updated swagger docs
2025-11-11 22:08:06 +00:00
Mithilesh Gupta
01a84dd2d5
feat: add comment count to tasks ( #1771 )
2025-11-11 23:00:05 +01:00
kolaente
22fc19cd24
fix: ignore filter_include_nulls from views
...
The filter_include_nulls property from the filter in a view would override the property set through the query string. Because we don't have a way in the UI to set this for filters in views, this makes the setting pretty opaque and unpredictable. Since we want to remove the nulls option anyways, we can just ignore it here.
Resolves https://github.com/go-vikunja/vikunja/issues/1781
2025-11-11 11:04:33 +01:00
Weijie Zhao
43a5ae1309
feat: enable user mentions in task description & comments ( #1754 )
2025-11-09 19:42:38 +01:00
Weijie Zhao
4fe0763010
fix: properly quote email sender names containing @ symbols ( #1768 )
...
When user names contain @ symbols, the email library fails to parse
the sender address format "Name @ Symbol via Vikunja <email@domain.com >".
This fix uses Go's net/mail.Address to properly format the sender
address according to RFC 5322, which automatically quotes names
containing special characters.
Fixes the error: "getting sender address: no FROM address set"
2025-11-07 11:44:24 +01:00
Panagiotis Papadopoulos
f83bd60915
fix: 403 http error code on failed login ( #1756 )
2025-11-06 08:40:46 +01:00
Weijie Zhao
bc1368abcc
feat: add S3 file storage support ( #1688 )
2025-11-06 08:37:04 +01:00
kolaente
541a38456e
chore(deps): update golangci-lint to 2.6.0 ( #1737 )
2025-10-31 17:28:52 +00:00
kolaente
c8837aeaeb
fix(filters): support project filter in parentheses ( #1647 )
...
The filter regex pattern was not matching values inside parentheses correctly.
The lookahead pattern only allowed `&&`, `||`, or end-of-string after filter
values, but when filters are wrapped in parentheses like `( project = Filtertest )`,
the closing `)` appears after the value.
Fixed by adding `\)` to the lookahead pattern so it correctly handles closing
parentheses. This allows the project filter (and other filters) to work
properly when nested in parentheses.
- Added tests for project filters in parentheses (both frontend and backend)
- Backend tests confirm the backend already handled this correctly
- Frontend regex pattern now matches the backend behavior
Fixes #1645
2025-10-13 11:10:22 +02:00
kolaente
2a43f9b076
fix(reminders): refactor and check permissions when fetching task users
2025-10-09 13:33:27 +02:00
kolaente
9358954c90
fix: cleanup team memberships, assignments and subscriptions when users lose access to a project
2025-10-09 13:33:27 +02:00
kolaente
2dd36ad0a9
fix(sharing): make editing link share comments work
...
Resolves https://github.com/go-vikunja/vikunja/issues/1510
2025-10-09 10:53:18 +02:00
kolaente
7da2942ca6
fix: correctly set database path on windows ( #1616 )
2025-10-09 08:38:01 +00:00
kolaente
db6b82a002
fix: task.comment.deleted triggers panic in event listener which sends webhook ( #1621 )
...
Co-authored-by: Gabriel <fossecruor@gmail.com >
2025-10-08 21:46:57 +00:00
kolaente
d33e742961
chore: make condition simpler
2025-10-07 10:56:03 +02:00
kolaente
1b02f78eee
fix(filter): check date boundary after timezone conversion
...
Resolves https://github.com/go-vikunja/vikunja/issues/1605
2025-10-07 10:55:22 +02:00
kolaente
67ebd876d3
fix(views): migrate filter bucket configuration
...
Resolves https://github.com/go-vikunja/vikunja/issues/1580
2025-10-01 11:54:24 +02:00
kolaente
ec89b08fd5
fix(attachments): extend upload file size to form data ( #1577 )
...
Resolves https://github.com/go-vikunja/vikunja/issues/1494
2025-09-30 22:23:07 +00:00
kolaente
31c1f98270
fix(caldav): remove METHOD:PUBLISH from caldav exports ( #1576 )
2025-09-30 18:16:07 +00:00
kolaente
ff8e98e6e2
fix: process multiple reminders in the same time window ( #1564 )
...
Resolves https://github.com/go-vikunja/vikunja/issues/1550
2025-09-29 10:43:12 +02:00
Frederick [Bot]
48d202f3ce
chore(i18n): update translations via Crowdin
2025-09-26 00:51:58 +00:00
Frederick [Bot]
faa4231523
chore(i18n): update translations via Crowdin
2025-09-21 00:57:00 +00:00
Frederick [Bot]
d53f4079ae
chore(i18n): update translations via Crowdin
2025-09-19 00:53:14 +00:00
Frederick [Bot]
3397d88f0e
chore(i18n): update translations via Crowdin
2025-09-18 00:51:01 +00:00
kolaente
fb426a6e22
fix(webhook): actually fetch project before enriching details
...
This fixes a bug where the project is fetched before adding more details
through ReadOne since ReadOne does not fetch the project. In the normal
project reading flow through the api, this is done in the permission
check.
Resolves https://github.com/go-vikunja/vikunja/issues/1498
2025-09-17 17:04:39 +02:00
Frederick [Bot]
57b4e27278
chore(i18n): update translations via Crowdin
2025-09-17 00:51:22 +00:00
kolaente
0506b9215a
fix(filters): initialize task positions for saved filters ( #1477 )
2025-09-11 17:39:56 +02:00
kolaente
f0cb752f2c
fix(task): preserve done timestamp when moving tasks between projects ( #1470 )
2025-09-11 17:07:43 +02:00
Frederick [Bot]
f1de3a9c19
[skip ci] Updated swagger docs
2025-09-11 07:53:45 +00:00
kolaente
e5e0413b70
fix(task): ensure done_at can never be set by user ( #1461 )
2025-09-11 07:45:42 +00:00
Frederick [Bot]
801ddf19e4
[skip ci] Updated swagger docs
2025-09-10 16:49:05 +00:00
kolaente
db123674a7
feat: share logic for bulk update ( #1456 )
...
This change refactors the bulk task update logic so that it updates all fields a single task update would update as well.
Could be improved in the future so that it is more efficient, instead of calling the update function repeatedly. Right now, this reduces the complexity by a lot and it should be fast enough for most cases using this.
Resolves #1452
2025-09-10 16:40:59 +00:00
Frederick [Bot]
70175c31c2
[skip ci] Updated swagger docs
2025-09-04 16:33:42 +00:00
kolaente
1b5a9dbdea
refactor: use helper function to check user local
2025-09-04 18:09:21 +02:00
kolaente
b8afdcf62d
fix(user): do not reject 2fa for local users
...
https://github.com/go-vikunja/vikunja/issues/1402
2025-09-04 18:09:21 +02:00
kolaente
bd74733632
fix: show pagination controls for task comments ( #1413 )
...
Resolves https://community.vikunja.io/t/task-comment-pagination-in-1-0-0-rc1/3988
2025-09-04 16:04:05 +00:00
renovate[bot]
a519312d55
fix(deps): update module github.com/threedotslabs/watermill to v1.5.1 ( #1391 )
2025-09-02 18:11:45 +00:00
Copilot
70ff047588
fix(avatar): recover gracefully from broken avatar cache ( #1379 )
2025-09-02 14:03:58 +00:00
kolaente
15ea38183c
fix: bypass Typesense in user export ( #1385 )
2025-09-02 15:49:17 +02:00
Frederick [Bot]
4b47f0c3cd
chore(i18n): update translations via Crowdin
2025-09-02 00:54:00 +00:00