Deprecate Sentry release (#11651)

Let's deprecate Sentry Release and use APP_VERSION instead. 

It'll make it more clear in the interface to use named version for bug
analysis, than commit sha
This commit is contained in:
Félix Malfait
2025-04-18 15:48:48 +02:00
committed by GitHub
parent fba4192d4b
commit cf5649a1df
7 changed files with 3 additions and 18 deletions

View File

@ -660,17 +660,6 @@ export class ConfigVariables {
@IsString()
SENTRY_FRONT_DSN: string;
@ConfigVariablesMetadata({
group: ConfigVariablesGroup.ExceptionHandler,
description: 'Release version for Sentry logging',
})
@ValidateIf(
(env) => env.EXCEPTION_HANDLER_DRIVER === ExceptionHandlerDriver.Sentry,
)
@IsString()
@IsOptional()
SENTRY_RELEASE: string;
@ConfigVariablesMetadata({
group: ConfigVariablesGroup.ExceptionHandler,
description: 'Environment name for Sentry logging',