-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
ref(hono): move shared Hono instrumentation into @sentry/server-utils #24496
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
Open
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
34 changes: 34 additions & 0 deletions
34
dev-packages/e2e-tests/test-applications/hono-4-legacy/src/middleware.ts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| import type { MiddlewareHandler } from 'hono'; | ||
|
|
||
| // Defined as anonymous function expressions so the function name is inferred from the `const` | ||
| // binding. A named expression (`const middlewareA = async function middlewareA() {}`) collides with | ||
| // the binding when bundled, and Bun renames the inner function (→ `middlewareA2`), which would then | ||
| // surface as the middleware span name. The inferred name stays stable across all runtimes. | ||
| export const middlewareA: MiddlewareHandler = async function (c, next) { | ||
| // Add some delay | ||
| await new Promise(resolve => setTimeout(resolve, 50)); | ||
| await next(); | ||
| }; | ||
|
|
||
| export const middlewareB: MiddlewareHandler = async function (_c, next) { | ||
| // Add some delay | ||
| await new Promise(resolve => setTimeout(resolve, 60)); | ||
| await next(); | ||
| }; | ||
|
|
||
| let failingMiddlewareCount = 0; | ||
| export const failingMiddleware: MiddlewareHandler = async function (_c, _next) { | ||
| // Each throw gets a unique suffix so the Dedupe integration doesn't collapse the identical errors | ||
| // that several tests (and their retries) trigger through this shared middleware — otherwise only the | ||
| // first would be reported and the other tests' `waitForError` would time out. Tests match on the | ||
| // stable `Middleware error` prefix. | ||
| throw new Error(`Middleware error #${(failingMiddlewareCount += 1)}`); | ||
| }; | ||
|
|
||
| // Intentionally a NAMED function expression (unlike the anonymous ones above) so the named-function | ||
| // path stays covered: the span name is taken from the function's own name. Under bundled Bun the inner | ||
| // name collides with the `const` binding and is suffixed (→ `namedMiddleware2`), so the test matches on | ||
| // the `namedMiddleware` prefix rather than an exact name. | ||
| export const namedMiddleware: MiddlewareHandler = async function namedMiddleware(_c, next) { | ||
| await next(); | ||
| }; |
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...s/test-applications/hono-4/wrangler.jsonc → ...applications/hono-4-legacy/wrangler.jsonc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 0 additions & 17 deletions
17
dev-packages/e2e-tests/test-applications/hono-4/src/middleware.ts
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
This should be a follow-up fix.