File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 10
10
11
11
- "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott
12
12
13
+ Work in this release was contributed by @conor-ob . Thank you for your contribution!
14
+
13
15
## 8.45.1
14
16
15
17
- fix(feedback): Return when the ` sendFeedback ` promise resolves ([ #14683 ] ( https://github.com/getsentry/sentry-javascript/pull/14683 ) )
Original file line number Diff line number Diff line change @@ -68,6 +68,8 @@ export function getSentryRelease(fallback?: string): string | undefined {
68
68
process . env [ 'HEROKU_TEST_RUN_COMMIT_VERSION' ] ||
69
69
// Heroku #2 https://docs.sentry.io/product/integrations/deployment/heroku/#configure-releases
70
70
process . env [ 'HEROKU_SLUG_COMMIT' ] ||
71
+ // Railway - https://docs.railway.app/reference/variables#git-variables
72
+ process . env [ 'RAILWAY_GIT_COMMIT_SHA' ] ||
71
73
// Render - https://render.com/docs/environment-variables
72
74
process . env [ 'RENDER_GIT_COMMIT' ] ||
73
75
// Semaphore CI - https://docs.semaphoreci.com/ci-cd-environment/environment-variables
Original file line number Diff line number Diff line change @@ -268,6 +268,8 @@ export function getSentryRelease(fallback?: string): string | undefined {
268
268
process . env [ 'HEROKU_TEST_RUN_COMMIT_VERSION' ] ||
269
269
// Heroku #2 https://docs.sentry.io/product/integrations/deployment/heroku/#configure-releases
270
270
process . env [ 'HEROKU_SLUG_COMMIT' ] ||
271
+ // Railway - https://docs.railway.app/reference/variables#git-variables
272
+ process . env [ 'RAILWAY_GIT_COMMIT_SHA' ] ||
271
273
// Render - https://render.com/docs/environment-variables
272
274
process . env [ 'RENDER_GIT_COMMIT' ] ||
273
275
// Semaphore CI - https://docs.semaphoreci.com/ci-cd-environment/environment-variables
You can’t perform that action at this time.
0 commit comments