Comparing version 8.2.0-beta.0 to 8.2.0
@@ -5,2 +5,14 @@ # Changelog | ||
## [8.2.0](https://github.com/uuidjs/uuid/compare/v8.1.0...v8.2.0) (2020-06-23) | ||
### Features | ||
- improve performance of v1 string representation ([#453](https://github.com/uuidjs/uuid/issues/453)) ([0ee0b67](https://github.com/uuidjs/uuid/commit/0ee0b67c37846529c66089880414d29f3ae132d5)) | ||
- remove deprecated v4 string parameter ([#454](https://github.com/uuidjs/uuid/issues/454)) ([88ce3ca](https://github.com/uuidjs/uuid/commit/88ce3ca0ba046f60856de62c7ce03f7ba98ba46c)), closes [#437](https://github.com/uuidjs/uuid/issues/437) | ||
- support jspm ([#473](https://github.com/uuidjs/uuid/issues/473)) ([e9f2587](https://github.com/uuidjs/uuid/commit/e9f2587a92575cac31bc1d4ae944e17c09756659)) | ||
### Bug Fixes | ||
- prepare package exports for webpack 5 ([#468](https://github.com/uuidjs/uuid/issues/468)) ([8d6e6a5](https://github.com/uuidjs/uuid/commit/8d6e6a5f8965ca9575eb4d92e99a43435f4a58a8)) | ||
## [8.1.0](https://github.com/uuidjs/uuid/compare/v8.0.0...v8.1.0) (2020-05-20) | ||
@@ -7,0 +19,0 @@ |
{ | ||
"name": "uuid", | ||
"version": "8.2.0-beta.0", | ||
"version": "8.2.0", | ||
"description": "RFC4122 (v1, v4, and v5) UUIDs", | ||
@@ -5,0 +5,0 @@ "commitlint": { |
@@ -11,3 +11,3 @@ <!-- | ||
- **Cross-platform** - Support for ... | ||
- CommonJS, [ECMAScript Modules](#ecmascript-modules) and [CDN builds (UMD)](#cdn-builds-umd) | ||
- CommonJS, [ECMAScript Modules](#ecmascript-modules) and [CDN builds](#cdn-builds) | ||
- Node 8, 10, 12, 14 | ||
@@ -309,6 +309,19 @@ - Chrome, Safari, Firefox, Edge, IE 11 browsers | ||
## CDN Builds (UMD) | ||
## CDN Builds | ||
This module may be loaded directly into a browser from any of the following CDNs: | ||
### ECMAScript Modules | ||
To load this module directly into modern browsers that [support loading ECMAScript Modules](https://caniuse.com/#feat=es6-module) you can make use of [jspm](https://jspm.org/): | ||
```html | ||
<script type="module"> | ||
import { v4 as uuidv4 } from 'https://jspm.dev/uuid'; | ||
console.log(uuidv4()); // ⇨ '1b9d6bcd-bbfd-4b2d-9b5d-ab8dfbbd4bed' | ||
</script> | ||
``` | ||
### UMD | ||
To load this module directly into older browsers you can use the [UMD (Universal Module Definition)](https://github.com/umdjs/umd) builds from any of the following CDNs: | ||
**Using [UNPKG](https://unpkg.com/uuid@latest/dist/umd/)**: | ||
@@ -315,0 +328,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
97285
1
435