Skip to content

Releases: ulid/javascript

v.2.3.0 - Improved bundling

03 Jan 20:04
Compare
Choose a tag to compare

v2.2.1

31 Oct 18:48
Compare
Choose a tag to compare

Fix command line version

v2.2.0

26 Oct 00:49
Compare
Choose a tag to compare
2.2.0

v2.0.1

25 Oct 23:03
Compare
Choose a tag to compare

Change default to not fallback to Math.random

v2.0.0

25 Oct 21:54
Compare
Choose a tag to compare

Breaking changes to API with new module format

We're modernizing the library, with proper ES6 exporting, and CommonJS support with rollup. As a result, the API will change.

For TypeScript and ES6 consumers

import { ulid, factory, monotonicFactory } from 'ulid'

ulid()

For CommonJS consumers
Sorry guys, if you can tell me a better way, I'd be happy to implement it!

const ULID = require('ulid')

ULID.ulid()

For browser usage

<script src="/path/to/ulid.js"></script>
<script>
    ULID.ulid()
</script>

v1.1.0

24 Oct 02:22
Compare
Choose a tag to compare

Strictly monotonic clocks

Spec'ed out and implemented! See the readme for more information

v1.0.2

17 Oct 15:16
Compare
Choose a tag to compare
  • Specify edge cases in schema
  • Improved jest support