Conversation
56703b8 to
9ef4097
Compare
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
7ce7a6f to
e594707
Compare
e594707 to
24cc171
Compare
24cc171 to
0ab983c
Compare
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
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
evlog@2.9.0
Minor Changes
96c47cdThanks @MrLightful! - Add React Router middleware integration (evlog/react-router) with automatic wide-event logging, drain, enrich, and tail sampling supportPatch Changes
#220
b0c26d5Thanks @HugoRCD! - fix(nitro): makeevlogErrorHandlercompatible with TanStack Start'screateMiddleware().server()APIevlogErrorHandlernow accepts both(next)and({ next })signatures, socreateMiddleware().server(evlogErrorHandler)works directly without a wrapper in all TanStack Start versions.#215
31cb4abThanks @HugoRCD! - fix(nitro): always create logger in request hook souseLogger()works in server middlewarePreviously, calling
useLogger(event)inside a Nuxt server middleware would throw"Logger not initialized"because the Nitro plugin skipped logger creation for routes not matchingincludepatterns. Since middleware runs for every request, this made it impossible to useuseLoggerthere.The
shouldLogfiltering is now evaluated at emit time instead of creation time — the logger is always available onevent.context.log, but events for non-matching routes are silently discarded.#218
453a548Thanks @benhid! - fix(parseError): respect.status/.statusCodeon Error instances instead of hardcoding 500Frameworks like NestJS attach HTTP status directly on Error subclasses (e.g.
BadRequestExceptionhas.status = 400). Previously,parseError()ignored these properties and always returned 500 for anyErrorinstance without adataproperty. Now usesextractErrorStatus()to extract the correct status.#219
79f811dThanks @HugoRCD! - Improve TanStack Start documentation with route filtering, pipeline (batching & retry), tail sampling sections, Vite plugin callout, and TanStack Router vs TanStack Start disambiguation