Conversation
Bumps the patch group with 1 update: [@cldmv/fix-headers](https://github.com/CLDMV/fix-headers). Updates `@cldmv/fix-headers` from 1.3.7 to 1.3.9 - [Release notes](https://github.com/CLDMV/fix-headers/releases) - [Commits](CLDMV/fix-headers@v1.3.7...v1.3.9) --- updated-dependencies: - dependency-name: "@cldmv/fix-headers" dependency-version: 1.3.9 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: patch ... Signed-off-by: dependabot[bot] <support@github.com>
…19) Bumps the patch group with 1 update: [@cldmv/fix-headers](https://github.com/CLDMV/fix-headers). Updates `@cldmv/fix-headers` from 1.3.7 to 1.3.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/CLDMV/fix-headers/releases">@cldmv/fix-headers's releases</a>.</em></p> <blockquote> <h2>v1.3.9</h2> <h2>🚀 What's Changed</h2> <h3>💥 Breaking Changes</h3> <p><em>No breaking changes</em></p> <h3>✨ Features</h3> <p><em>No new features</em></p> <h3>🐛 Bug Fixes</h3> <p><em>No bug fixes</em></p> <h3>📦 Dependencies</h3> <ul> <li>release: v1.3.9 - bump <code>@types/node</code> from 26.1.1 to 26.1.2 in the patch… (<a href="https://redirect.github.com/CLDMV/fix-headers/issues/23">#23</a>) (6210b35)</li> </ul> <h3>🔧 Other Changes</h3> <p><em>No other changes</em></p> <h3>🏷️ Release Information</h3> <ul> <li>release: v1.3.9 - bump <code>@types/node</code> from 26.1.1 to 26.1.2 in the patch… (<a href="https://redirect.github.com/CLDMV/fix-headers/issues/23">#23</a>) (6210b35)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/CLDMV/fix-headers/commit/6210b35223a3f23954a596c335bd482951bb8726"><code>6210b35</code></a> release: v1.3.9 - bump <code>@types/node</code> from 26.1.1 to 26.1.2 in the patch… (<a href="https://redirect.github.com/CLDMV/fix-headers/issues/23">#23</a>)</li> <li><a href="https://github.com/CLDMV/fix-headers/commit/495b36083c8c0d1437fdfeb37e0265fca07720bc"><code>495b360</code></a> release: v1.3.8 - never supersede release-relevant CI runs so release… (<a href="https://redirect.github.com/CLDMV/fix-headers/issues/20">#20</a>)</li> <li>See full diff in <a href="https://github.com/CLDMV/fix-headers/compare/v1.3.7...v1.3.9">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details>
Contributor
Author
🔒 Dependency Review
|
…dlers The static `import crypto from "crypto"` in uuid.mjs and every RFC/timestamp version file made the package unbundlable for browser targets (esbuild platform:"browser" fails to resolve "crypto"), and the internal Buffer-based representation would still throw ReferenceError at runtime even past that. Splits crypto/hex/hash access into isomorphic node+browser module pairs (./rng, ./bytes, ./hash) selected via the package's "browser" export condition, self-referenced from within the package. Node keeps its native Buffer/crypto-backed fast paths; the browser variants use globalThis.crypto.getRandomValues and hand-rolled MD5/SHA-1 (crypto.subtle is async, which would break v3/v5's synchronous API). The internal UUID buffer representation moves from Buffer to plain Uint8Array so it works in both runtimes. versions/timestamp/*, versions/issuer/*, and entropy-sources.mjs are dead code never imported by uuid.mjs and were left untouched. Verified against RFC 1321 (MD5) / FIPS 180-1 (SHA-1) test vectors, node:crypto cross-checks, and an actual headless-Chromium run confirming zero Buffer/ node:crypto references and correct output (including the standard v3/v5 DNS namespace vectors). Fixes #21
Shinrai
approved these changes
Aug 17, 2026
Shinrai
approved these changes
Aug 17, 2026
Shinrai
approved these changes
Aug 17, 2026
Shinrai
approved these changes
Aug 17, 2026
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.
🚀 What's Changed
💥 Breaking Changes
No breaking changes
✨ Features
🐛 Bug Fixes
No bug fixes
📦 Dependencies
🔧 Other Changes
No other changes
👥 Contributors
Avg: 87.2% ·
e297a4a· Node lts/*