Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

10.0.0 (2024-06-07)

⚠ BREAKING CHANGES

Features

Bug Fixes

9.0.1 (2023-09-12)

build

9.0.0 (2022-09-05)

⚠ BREAKING CHANGES

Minified code is hard to audit and since this is a widely used library it seems more appropriate nowadays to optimize for auditability than to ship a legacy module format that, at best, serves educational purposes nowadays.

For production browser use cases, users should be using a bundler. For educational purposes, today's online sandboxes like replit.com offer convenient ways to load npm modules, so the use case for UMD through repos like UNPKG or jsDelivr has largely vanished.

This also removes the fallback on msCrypto instead of the crypto API.

Browser tests are run in the first supported version of each supported browser and in the latest (as of this commit) version available on Browserstack.

Features

Bug Fixes

build

8.3.2 (2020-12-08)

Bug Fixes

8.3.1 (2020-10-04)

Bug Fixes

8.3.0 (2020-07-27)

Features

8.2.0 (2020-06-23)

Features

Bug Fixes

8.1.0 (2020-05-20)

Features

Bug Fixes

8.0.0 (2020-04-29)

⚠ BREAKING CHANGES

diff -import uuid from 'uuid'; -console.log(uuid.v4()); // -> 'cd6c3b08-0adc-4f4b-a6ef-36087a1c9869' +import { v4 as uuidv4 } from 'uuid'; +uuidv4(); // ⇨ '9b1deb4d-3b7d-4bad-9bdd-2b0d7b3dcb6d'

Instead use the named exports that this module exports.

For ECMAScript Modules (ESM):

diff -import uuidv4 from 'uuid/v4'; +import { v4 as uuidv4 } from 'uuid'; uuidv4();

For CommonJS:

diff -const uuidv4 = require('uuid/v4'); +const { v4: uuidv4 } = require('uuid'); uuidv4();

Features

Bug Fixes

7.0.3 (2020-03-31)

Bug Fixes

7.0.2 (2020-03-04)

Bug Fixes

7.0.1 (2020-02-25)

Bug Fixes

7.0.0 (2020-02-24)

⚠ BREAKING CHANGES

Features

Bug Fixes

3.4.0 (2020-01-16)

Features

3.3.3 (2019-08-19)

Bug Fixes

3.3.2 (2018-06-28)

Bug Fixes

3.3.1 (2018-06-28)

Bug Fixes

3.3.0 (2018-06-22)

Bug Fixes

Features

3.2.1 (2018-01-16)

Bug Fixes

3.2.0 (2018-01-16)

Bug Fixes

Features

3.1.0 (2017-06-17)

Bug Fixes

Features

3.0.1 (2016-11-28)

3.0.0 (2016-11-17)

2.0.0

1.4.0

1.3.2

1.3.0