elixir-uuid icon indicating copy to clipboard operation
elixir-uuid copied to clipboard

UUID generator and utilities for Elixir

Results 25 elixir-uuid issues
Sort by recently updated
recently updated
newest added

This PR is intended to update dependencies and address compiler warnings raised in newer versions of Elixir (1.11+) With the shift to Elixir 1.11 and OTP 23 and above, dependencies...

See #54 . Note that this is currently set to merge into master, which is not what I intend -- this would be merged as a new branch off of...

It'd be handy for this library to provide some basic validation functions for uuids, too. Might hack this together shortly, wanted to leave this here to remind myself in case...

enhancement

This PR fix compilation warnings in Elixir 1.11. - Added :crypto to the extra_applications - Bumped dependencies version

Add **UUID v6** ([RFC draft](https://tools.ietf.org/html/draft-peabody-dispatch-new-uuid-format-00)) function. Related web page: http://gh.peabody.io/uuidv6/ I tried to follow the existing code style and conventions as much as possible. ## Example reference For reference (to...

Automatically run tests against **pull-requests** and **pushes**. You can see them running on my fork: https://github.com/ryanwinchester/elixir-uuid/actions

On GitHub, release v1.2.1 is available, but on hex.pm the latest is v1.1.8.

Thanks for the lib! Are there any plans to support a v6 UUID? http://gh.peabody.io/uuidv6/ https://tools.ietf.org/html/draft-peabody-dispatch-new-uuid-format-00 I know it's an RFC right now, but just thought I'd ask.

Closes https://github.com/zyro/elixir-uuid/issues/41. I'm by no means a regex expert, so feel free to check it out.

Although typespec functionality regarding binaries is somewhat restricted relative to other types, I believe it's better to put actual types to at least give some semantic meaning behind passed arguments....