feat: add releases to sentry #919
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature/sentry-releases"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
That makes sense =) Does by settings this sentry also use the commit sha?
I think it should, at least for unstable releases. The version number for those is something like
0.18.1+378-e1a7fb4999
which includes the commit hash.da2f93841b
to9dc99186e2
Ahh okay, but not for local commits and not merged branches.
Maybe we can do that too: https://docs.sentry.io/product/releases/suspect-commits/
But local commits probably won't use sentry since they are not deployed?
Probably, yeah. That would only use released commits (even though unstable) though, so no local commits or not merged branches either.
Why that?
Sure, you could enable sentry for local commits but that would only take effect with a production build and deployed somewhere other than
localhost
. At that point you could just use the unstable build... And you probably want to see the errors when developing locally instead of digging into sentry for that.And it would also require me to allow anyone to add commits to sentry which I'd like to avoid.
I didn't check the docs but I think it's possible to do this somehow with a local token or something.
By doing so we found some errors in a larger project, I onced worked on, that were rare, but did happen from time to time and were maybe missed because the console wasn't open when they happend.
Right now we do have those notifications for all the errors. So that makes them more verbose than usually. Still you could miss a notification by simply not paying attention. In Sentry itself you can also filter by host so the overview doesn't go away.
But all of that is for sure optional, so no need! =)