Conversation
8 tasks
jaydenseric
reviewed
Jul 16, 2024
molaeiali
added a commit
to molaeiali/uuid
that referenced
this pull request
Aug 5, 2024
…s, pull uuidjs#763 preventing native.randomUUID being used
This was referenced Oct 27, 2024
This was referenced Jan 21, 2025
marmitar
added a commit
to marmitar/thelounge
that referenced
this pull request
Nov 17, 2025
Update dependencies still compatible with Node 18 and CommonJS, without any code changes required. Major version upgrades: - [bcryptjs v3](https://github.com/dcodeIO/bcrypt.js/releases/tag/v3.0.0) - [commander v13](https://github.com/tj/commander.js/releases/tag/v13.0.0) - [mime-types v3](https://github.com/jshttp/mime-types/releases/tag/v3.0.0) - [package-json v9](https://github.com/sindresorhus/package-json/releases/tag/v9.0.0) - [uuid v11](https://github.com/uuidjs/uuid/releases/tag/v11.0.0) Included type definitions: - bcryptjs>=3.0.0 (dcodeIO/bcrypt.js@2f45985) - uuid>=11.0.0 (uuidjs/uuid#763) - sqlite3>=5.1.0 (TryGhost/node-sqlite3#1527)
marmitar
added a commit
to marmitar/thelounge
that referenced
this pull request
Jan 31, 2026
Update dependencies still compatible with Node 18 and CommonJS, without any code changes required. Major version upgrades: - [bcryptjs v3](https://github.com/dcodeIO/bcrypt.js/releases/tag/v3.0.0) - [commander v13](https://github.com/tj/commander.js/releases/tag/v13.0.0) - [mime-types v3](https://github.com/jshttp/mime-types/releases/tag/v3.0.0) - [package-json v9](https://github.com/sindresorhus/package-json/releases/tag/v9.0.0) - [uuid v11](https://github.com/uuidjs/uuid/releases/tag/v11.0.0) Included type definitions: - bcryptjs>=3.0.0 (dcodeIO/bcrypt.js@2f45985) - uuid>=11.0.0 (uuidjs/uuid#763) - sqlite3>=5.1.0 (TryGhost/node-sqlite3#1527) Minor regression: - socket.io-parser@4.2.5 not resolved correctly by Webpack
marmitar
added a commit
to marmitar/thelounge
that referenced
this pull request
Feb 11, 2026
Update dependencies still compatible with Node 18 and CommonJS, without any code changes required. Major version upgrades: - [bcryptjs v3](https://github.com/dcodeIO/bcrypt.js/releases/tag/v3.0.0) - [commander v13](https://github.com/tj/commander.js/releases/tag/v13.0.0) - [mime-types v3](https://github.com/jshttp/mime-types/releases/tag/v3.0.0) - [package-json v9](https://github.com/sindresorhus/package-json/releases/tag/v9.0.0) - [uuid v11](https://github.com/uuidjs/uuid/releases/tag/v11.0.0) Included type definitions: - bcryptjs>=3.0.0 (dcodeIO/bcrypt.js@2f45985) - uuid>=11.0.0 (uuidjs/uuid#763) - sqlite3>=5.1.0 (TryGhost/node-sqlite3#1527) Minor regression: - socket.io-parser@4.2.5 not resolved correctly by Webpack
This was referenced Mar 22, 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.
Switching the codebase to Typescript.
Uint8Arrayfor binary uuids throughout (BREAKING CHANGE)jesttonode:testtscfor generating buidlsOther notes:
Uint8Arrayfor binary UUIDsexamples/node-jesttest passes, but I don't see it being run as part of CI ornpm testanywhere. I'm tempted to remove it. 🤔eslint@latest, and switched config to ESM.@wdio/*@latestprettierconfig to ESMtasks.jsonstarts thebuild:watchandtest:watchscripts automatically when you open the projectextensions.jsonidentifies the plugins that devs should use to apply oureslintandprettiersettings while editing codepackage.json#scriptsalphabeticallybuild:watchandtest:watchscripts, which I'm using in vscodedist/esmdirectory (unless they're explicitely testing other dist/* builds.build.shnow builds ESM and CJS versions of code usingtscrather than babel.dist/*.jsfiles can now be found indist/esm, alongside the other builds (esm-browser,cjs, andcjs-browser)Uint8Arrayfor binary (byte) UUID data structures throughout. The one exception is the return type formd5andsha1on node, which is still Buffer (but that's a subclass of Uint8Array these days anyways so... 🤷)