chore(repo): version packages#355
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
409d3b6 to
d07e72e
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.18.1
Patch Changes
#340
cfc9322Thanks @HugoRCD! - Fix a runtime crash on Vercel + Bun + Nitro v3 where every request failed withbun is unable to write files: ReadOnlyFileSystem. The Nitro plugin probednitro/runtime-configat runtime to read evlog's config; that module transitively imports the build-only#nitro/virtual/runtime-config, which doesn't exist in deployed bundles. On Vercel + Bun the missing virtual triggered Bun's package auto-installer, which tried to writenode_modules/.cacheand crashed on the read-only function filesystem.The Nitro modules now bake the evlog config into the bundle as a literal via
nitro.options.replace.__EVLOG_CONFIG__. The shared config bridge reads that build-time literal first and skips all runtime probing — noimport('nitro/runtime-config'), no env propagation guesswork. The bridge also exposes the inlined value as a synthetic{ evlog: <inlined> }record, so drain adapters resolvingruntimeConfig.evlog.<adapter>never trigger the probe either.For defense-in-depth, the bridge additionally scopes its dynamic-import fallback to the major version declared by the plugin (new internal
setActiveNitroRuntimehelper) —nitro/runtime-configfor v3,nitropack/...for v2 — so standalone use outside a plugin (e.g. adapters called from non-Nitro code) doesn't probe both versions.No public-API change.
Closes #312.
evlog-community-adapter-skeleton@4.0.1
Patch Changes
cfc9322]:evlog-community-enricher-skeleton@4.0.1
Patch Changes
cfc9322]:evlog-community-framework-skeleton@4.0.1
Patch Changes
cfc9322]: