Same here,
first I thought it could be something with OIDC and shared projects but none of any projects have been imported in the latest unstable.
I also updated from 0.24.6 by just changing the docker tag. After that I panicked because my latest update was 23h ago and 80 people have made their changes on their projects during the day so i just changed vikunja back from unstable to v0.24.6. Sadly I now face various issues like
no filter views (like @Jerome_Desroziers described)
list view in generell: error.4024 The filter expression '{“filter”:“done = ‘false’”}" is invalid: unexpected character ‘{’,
no new oidc group synchronisation even after logout/login.
This evening I plan to repair at least the 0.24.6 instance like this:
- Export current broken 0.24.6 data with Vikunja > Settings > export vikunja data
- restore backup from 2 days ago
- import newest data from broken vikunja
- cross fingers
Is this maybe going to work @kolaente?
I will test this first in a test environment, should have done it also before the upgrade yesterday.
The reason why I updated in first place is because an employee asked me if she can sort a kanban bucket with newest items on top instead at the bottom. With try.vikunja.io I discovered that the newest unstable version is doing it like that. perfect i thought and just changed the docker image tag facepalm
edit:
Frontend-Version: dev
API-Version: v0.24.1-1541-6deb0699
logs after trying to import the data from 0.24.6 to latest unstable:
Error 308 could not read data: json: cannot unmarshal string into Go struct field ProjectView.Project.views.filter of type models.TaskCollection
after replacing
“filter”:“{"filter":"done = false"}”
with
“filter”:null
the following error occurs:
could not read data: invalid character ‘\’ after top-level value
after replacing all '\'s:
could not read data: invalid character ‘U’ in string escape code
@kolaente should I confidentally send you my export.zip so you can debug it? I dont know if thats the right way I am doing it right now, and you might be interested in that for future updates from 0.24.6
edit 2:
apaerantly there seems to be an issue with URLs in the title or description of a task. The following extract could be creating a syntax error:
…{"id":630,"title":"FBS - Telefone im und 3. OG","description":"\u003cimg src=\"https://ca.slack-edge.com/T02-123XYZ-48\" alt=\"\"\u003e\u003cp\u003e\u003cstrong\u003eMAXI MUSTERMANNMAXI MUSTERMANN\u003c/strong\u003e\u0026nbsp;\u0026nbsp;\u003ca target=\"_blank\" rel=\"noopener noreferrer nofollow\" class=\"c-link c-timestamp\" href=\"https://MEINWORKSPACENAME.slack.com/archives/C08C20/p1719\"\u003e13:44 Uhr\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eDas Telefon im 2. OG funktioniert leider nicht
…
also someone put a windows filepath in a description, which lead to the same issues above:
…können in die Pat Ordner\u003c/p\u003e\u003cp\u003eOrdner findet ihr unter: C:\Users\share\Nextcloud\2_Prxmgmt 2\u003c/p\u003e\u003cp\u003eBitte nur in die P Ordner bei den jeweiligen MA verschieben...
the errors have been
could not read data: invalid character 'U' in string escape code
(must have been C:\Users…)
could not read data: invalid character 's' in \u hexadecimal character escape
(has been C:-users\share)
could not read data: invalid character 'd' in string escape code
and so on