mdn / browser-compat-data

This repository contains compatibility data for Web technologies as displayed on MDN
https://developer.mozilla.org
Creative Commons Zero v1.0 Universal
4.9k stars 1.97k forks source link

api.Crypto.randomUUID - available in NodeJS 18 #23784

Open mehulkar opened 2 months ago

mehulkar commented 2 months ago

What type of issue is this?

Incorrect support data (example: BrowserX says "86" but support was added in "40")

What information was incorrect, unhelpful, or incomplete?

Crypto: randomUUID() is available in node 18, but MDN says it's available only in node 19 CleanShot 2024-07-11 at 12 23 40@2x

What browsers does this problem apply to, if applicable?

Node.js

What did you expect to see?

Node 18

Did you test this? If so, how?

> process.version
'v18.18.0'
> require('crypto').randomUUID()
'865e9c01-4e30-4656-85b7-e73ada6a2580'
> 

Can you link to any release notes, bugs, pull requests, or MDN pages related to this?

https://nodejs.org/docs/latest-v18.x/api/crypto.html#cryptorandomuuidoptions

Do you have anything more you want to share?

No response

MDN URL

https://developer.mozilla.org/en-US/docs/Web/API/Crypto/randomUUID

MDN metadata

MDN page report details * Query: `api.Crypto.randomUUID` * Report started: 2024-07-11T19:22:50.780Z
queengooborg commented 2 months ago

Our data actually states that the feature was added in NodeJS 16.7.0 -- if you look at the compatibility table on the MDN page, you'll notice an ellipsis in the cell for NodeJS, which indicates there is more data to display. Clicking on the cell will reveal the additional data.

However, looking at the NodeJS docs, there's some inconsistencies between it and our data, so this needs to be reviewed further, it looks like.