ref(server-utils): Streamline redisIntegration - #23353
Conversation
size-limit report 📦
|
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 6caae65. Configure here.
| export const denoRedisIntegration = defineIntegration(_denoRedisIntegration) as ( | ||
| options?: DenoRedisIntegrationOptions, | ||
| ) => Integration & { name: 'DenoRedis'; setupOnce: () => void }; | ||
| export { redisIntegration as denoRedisIntegration } from '@sentry/server-utils/orchestrion'; |
There was a problem hiding this comment.
Missing redis alias deprecation
Medium Severity
denoRedisIntegration lost its @deprecated notice and no longer matches the other Deno back-compat aliases (denoMysqlIntegration, denoPostgresIntegration, etc.). Flagged because the PR review rules call out public API changes without proper deprecation notices. The bare re-export also drops the JSDoc users rely on for migration to redisIntegration.
Additional Locations (1)
Triggered by project rule: PR Review Guidelines for Cursor Bot
Reviewed by Cursor Bugbot for commit 6caae65. Configure here.
There was a problem hiding this comment.
didn't have a deprecation notice before?


This PR:
redisIntegrationIn deno there is still
denoRedisIntegrationfor backwards compat, but it is just an alias now.