-
Notifications
You must be signed in to change notification settings - Fork 9
Support Koa v3 #1263
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
Merged
Merged
Support Koa v3 #1263
Conversation
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
Koa v3 instrumentation requires @opentelemetry/instrumentation-koa v0.54.0. Update package dependencies to ensure package works for both Koa v2 and v3.
Replace Python package reference with Node.js in SUPPORT.md.
|
✔️ All good! |
`@types/koa` package required `@types/cookies`, which required `@types/express`. Starting from `v0.42.0` of `@opentelemetry/instrumentation-koa` the `@types/koa` package is a dev dependency and therefore no longer required automatically by our Node.js package. This breaks the build script. Add `@types/express` as a dev dependency.
Contributor
Member
|
Can you also add a Koa 3 test app to the test setups repo? https://github.com/appsignal/test-setups/tree/main/nodejs |
tombruijn
reviewed
Dec 19, 2025
|
This is a message from the daily scheduled checks. |
unflxw
approved these changes
Dec 23, 2025
Add integration tests for Koa v3 with koa-router v15. Use `node:20` image, since koa-router v15 requires Node.js >= 20. Add `koa3-mysql` app to the build matrix.
7b881f4 to
063211a
Compare
Contributor
Author
|
I added a |
tombruijn
approved these changes
Jan 12, 2026
This was referenced Jan 13, 2026
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Bump Koa instrumentation version
Koa v3 instrumentation requires @opentelemetry/instrumentation-koa
v0.54.0. Update package dependencies to ensure package works for both
Koa v2 and v3.
Remove Python package reference
Replace Python package reference with Node.js in SUPPORT.md.
Add @types/express as dev dependency
Starting from
v0.42.0of@opentelemetry/instrumentation-koa,the
@types/koapackage is a devdependency and therefore no longer required automatically by our Node.js
package. The
@types/koapackage requires@types/cookies, which requires@types/express. We rely on@types/expressbeing there during the build.This change in the instrumentation package breaks the build script.
Add
@types/expressas a dev dependency.Fixes #1262