Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
3c12d5a to
a4b6077
Compare
a4b6077 to
6a74b60
Compare
6a74b60 to
97bd7c5
Compare
97bd7c5 to
c691462
Compare
c691462 to
19ec007
Compare
19ec007 to
2bca6ea
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.12.0
Minor Changes
#272
2b5c8a4Thanks @HugoRCD! - Add AI SDK telemetry integration (createEvlogIntegration), cost estimation, and enriched embedding capture.createEvlogIntegration()implements the AI SDK'sTelemetryIntegrationinterface to capture per-tool execution timing/success/errors and total generation wall time. Cost estimation computesai.estimatedCostfrom a user-provided pricing map.captureEmbednow accepts model ID, dimensions, and batch count for richer embedding observability.#271
583fab4Thanks @HugoRCD! - Add auto-redaction (PII protection) with smart partial masking, enabled by default in production (NODE_ENV === 'production'). Built-in patterns (credit card, email, IPv4, phone, JWT, Bearer, IBAN) use context-preserving masks (e.g.****1111,a***@***.com) instead of flat[REDACTED]. Disabled in development for full debugging visibility. Fine-tune withpaths,patterns, andbuiltins, or opt out withredact: false. Custom patterns use the configurablereplacementstring. Redaction runs before console output and before any drain sees the data.#269
037dc81Thanks @HugoRCD! - Addevlog/httpas the canonical HTTP ingest drain (createHttpDrain,createHttpLogDrain,HttpDrainConfig). Deprecateevlog/browser; it re-exports the same API and will be removed in the next major release.#266
3898a3fThanks @HugoRCD! - AddminLevelfor a deterministic severity threshold on the globallogAPI and clientinitLog, plussetMinLevel()for runtime toggling in the browser. Orthogonal to probabilisticsampling.rates; request wide events fromuseLogger/createLogger().emit()are unchanged. IncludesisLevelEnabled()helper and wiring for Nuxt, Vite, and Next.js.2026-04-11 — Playground: interactive panel to try client
minLevel/setMinLeveland trigger logs per level.Patch Changes
79cb4a4Thanks @HugoRCD! - Add an AWS Lambda guide to the documentation site (initLoggeronce,createLoggerper invocation, manualemit).