Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1.8k
feat(express)!: Remove shouldHandleError from setupExpressErrorHandler#23732
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
90f635fb05851b2385dbafe1b7ef021f333File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -53,7 +53,7 @@ export { vercelAIIntegration } from './integrations/vercel-ai'; | ||
| export { expressIntegration } from './integrations/express'; | ||
| /* oxlint-disable typescript/no-deprecated -- deprecated Express error-handler exports, kept until the next major */ | ||
| export { expressErrorHandler, setupExpressErrorHandler } from './integrations/express/error-handler'; | ||
| export type { ExpressHandlerOptions } from './integrations/express/types'; | ||
| export type { ExpressIntegrationOptions } from './integrations/express/types'; | ||
Member There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a bit minor, but could be confusing. The core version is deprecated, and doesn't have This can certainly be cleaned up in a followup, but I think it would be best to coalesce these into a single type (either defined in core, or here, but not both). MemberAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, this makes sense and can be done in a follow-up 👍 MemberAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done here: #23763 | ||
| /* oxlint-enable typescript/no-deprecated */ | ||
| export { firebaseIntegration } from './integrations/firebase'; | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think any deprecated items are being pulled in here, are they? It's the one in core that's deprecated, this one isn't.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Those exports are deprecated as well