-
[Related to #2344.]
Hi, `uuid` maintainer here. I happened to notice this project while perusing open issues on the DefinitelyTyped project. The UUID spec has been updated for the first time in a…
-
**Is your feature request related to a problem? Please describe.**
In order to have unique IDs that are sortable and do not expose machine's information (MAC address on uuid 1), it would be nice to s…
-
Version 7 UUIDs (UUIDv7) are designed for keys in high-load databases and distributed systems.
UUIDv7 begins with a 48 bit big-endian Unix Epoch timestamp with approximately millisecond granularity. …
-
**Is your feature request related to a problem? Please describe.**
With the new standard [RFC 9562 "Universally Unique IDentifiers (UUIDs)"](https://datatracker.ietf.org/doc/html/rfc9562) coming into…
-
Just wanted to set up an issue to track the status of [this draft](https://datatracker.ietf.org/doc/html/draft-peabody-dispatch-new-uuid-format-04#name-uuid-version-7) so that if/when it's accepted, i…
Vlix updated
4 months ago
-
Even though these functions aren't fully released yet, if I understood correctly, they have some issues that might be good to know.
Version: "master" https://github.com/util-linux/util-linux/commit…
-
I appreciate v7 is still in draft, however, UUIDv7 specifies the timestamp part as,
`the number of milliseconds seconds since midnight 1 Jan 1970 UTC, leap seconds excluded.`
and
`For other level…
-
I just [read about UUIDv7](https://buildkite.com/blog/goodbye-integers-hello-uuids). It's a [proposed IETF standard](https://datatracker.ietf.org/doc/draft-ietf-uuidrev-rfc4122bis/), in "last call". O…
booch updated
3 weeks ago
-
Right now, Jmix uses a UuidProvider that generates randomly based UUIDs. This is sufficient for small applications, but for applications where there is a lot of data and UUID is used as primary keys, …
-
i have a dto
`import { IsUUID } from 'class-validator';
export class idDto {
@IsUUID()
id: string;
}`
a controller ` @Get(USER_REQUEST_MAPPING.GET_USER_BY_ID)
getUserById(@Param('id', …