Replies: 6 comments 16 replies
-
When updating to v1.37, I get an error message, when loading the events. I looked in the db and there is no change of the colums as described. |
Beta Was this translation helpful? Give feedback.
-
Same here, with the following errors logged:
|
Beta Was this translation helpful? Give feedback.
-
The event data is not showing in the UI, but I can confirm it has been saved into the database, is there any way to show the custom event data in UI? |
Beta Was this translation helpful? Give feedback.
-
Thank you very much for the custom endpoint fix.
|
Beta Was this translation helpful? Give feedback.
-
Thanks for the latest update. Here is my build logs on Vercel:
Cant see anything changed in the "event" table in database: And now the "Realtime" page is broken ( |
Beta Was this translation helpful? Give feedback.
-
When do you plan to update the typescript types? Thanks! |
Beta Was this translation helpful? Give feedback.
-
Important
This release includes a new database migration. In this update we are making some changes to Events. Now instead of
event_type
andevent_value
columns, there is going to be a single renamed column,event_name
. Having the two separate columns caused a lot of confusion regarding what to store in each field. There is now a new table calledevent_data
which is used to store event related data. In the future you will be able to run reports against your events and event data.Now to track events, you simply choose an event name, like
button-click
and optionally send some JSON data along with it.When you start the app for the first time, the database changes will be automatically applied. Your data however will not be automatically migrated because we can't determine what
event_name
you will want to use. Your old event table has been renamed to_event_old
, which you can use to manually move data to the new table. If you've never used events, feel free to delete the_event_old
table.Features
Fixes
COLLECT_API_ENDPOINT
DISABLE_LOGIN
check from middleware due to Vercel issues.Updates
12.2.4
4.1.1
A huge thanks to all the contributors on this release! @cywio @briancao @wangyang0210 @biqette @umarhadi @H0rn0chse
This discussion was created from the release v1.37.0.
Beta Was this translation helpful? Give feedback.
All reactions