settings.ts 447 B

123456789101112131415
  1. import {BadgeType} from 'sentry/components/featureBadge';
  2. export const RELEASE_LEVEL: BadgeType = 'new';
  3. export const MIN_SDK_VERSION_BY_PLATFORM: {[platform: string]: string} = {
  4. 'sentry.python': '1.29.2',
  5. 'sentry.javascript': '7.63.0',
  6. 'sentry.laravel': '3.8.0',
  7. 'sentry.cocoa': '8.11.0',
  8. 'sentry.java': '6.29.0',
  9. 'sentry.ruby': '5.11.0',
  10. 'sentry.dotnet': '3.39.0',
  11. 'sentry.symfony': '4.11.0',
  12. 'sentry.android': '6.30.0',
  13. };