返回 Skill 列表
extension
分类: 开发与工程无需 API Key

sentry-upgrade-migration

执行升级Sentry SDK并在版本之间迁移。在升级Sentry SDK、处理重大变更或从旧版本迁移时使用。可以通过诸如“upgrade sentry”、“sentry migration”、“update sentry sdk”、“sentry breaking changes”等短语触发。

person作者: jakexiaohubgithub

Sentry Upgrade Migration

Prerequisites

  • Current Sentry SDK version identified
  • Target version changelog reviewed
  • Non-production environment for testing
  • Test suite for error capture and performance monitoring

Instructions

  1. Check current SDK version with npm list or pip show
  2. Review release notes and changelog for target version
  3. Back up current Sentry configuration file
  4. Update package to target version in non-production first
  5. Run tests to identify breaking changes
  6. Update deprecated APIs following migration guide patterns
  7. Verify error capture works with test error
  8. Verify performance monitoring works with test transaction
  9. Deploy to staging and monitor for issues
  10. Deploy to production after staging validation

Output

  • SDK upgraded to target version
  • Breaking changes resolved
  • Code updated for new APIs
  • Error capture verified working

Error Handling

See {baseDir}/references/errors.md for comprehensive error handling.

Examples

See {baseDir}/references/examples.md for detailed examples.

Resources