short-uuid
Advanced tools
Comparing version 3.1.0 to 3.1.1
@@ -5,2 +5,11 @@ # Change Log | ||
## [3.1.1] - 2019-05-01 | ||
### Changed | ||
- Updated dev packages to replace istanbul with nyc | ||
- Updated [gruntfile.js] for nyc | ||
- Updated [.gitignore] for nyc | ||
- Removed Node 4.x build in [.travis.yml] | ||
- Included Node 12.x build in [.travis.yml] | ||
- Dropped Node 4.x build due to nested build dependencies | ||
## [3.1.0] - 2018-12-08 | ||
@@ -26,3 +35,3 @@ ### Changed | ||
- Updated other devDependencies - all patch or minor | ||
- Dropped support for Node 0.10 and 0.12 due to nested build dependencies | ||
- Dropped build support for Node 0.10 and 0.12 due to nested build dependencies | ||
@@ -29,0 +38,0 @@ ## [2.3.4] - 2017-08-08 |
@@ -7,3 +7,3 @@ /** | ||
grunt.loadNpmTasks('grunt-simple-mocha'); | ||
grunt.loadNpmTasks('grunt-mocha-istanbul'); | ||
grunt.loadNpmTasks('grunt-mocha-nyc'); | ||
grunt.loadNpmTasks('grunt-mkdir'); | ||
@@ -17,3 +17,3 @@ grunt.loadNpmTasks('grunt-browserify'); | ||
grunt.registerTask('default', | ||
['mocha_istanbul']); | ||
['mocha_nyc']); | ||
@@ -24,3 +24,3 @@ grunt.registerTask('test', | ||
grunt.registerTask('cover', | ||
['mocha_istanbul']); | ||
['mocha_nyc']); | ||
@@ -56,3 +56,3 @@ grunt.registerTask('build', | ||
function getMochaIstanbulData() { | ||
function getCoverageData() { | ||
return { | ||
@@ -102,3 +102,3 @@ coverage: { | ||
mkdir: getMkdirData(), | ||
mocha_istanbul: getMochaIstanbulData(), | ||
mocha_nyc: getCoverageData(), | ||
simplemocha: getSimpleMochaData(), | ||
@@ -105,0 +105,0 @@ uglify: getUglifyData() |
{ | ||
"name": "short-uuid", | ||
"version": "3.1.0", | ||
"version": "3.1.1", | ||
"description": "Create and translate standard UUIDs with shorter formats.", | ||
@@ -32,16 +32,16 @@ "main": "index.js", | ||
"any-base": "^1.1.0", | ||
"uuid": "^3.2.1" | ||
"uuid": "^3.3.2" | ||
}, | ||
"devDependencies": { | ||
"grunt": "^1.0.3", | ||
"grunt": "^1.0.4", | ||
"grunt-browserify": "^5.3.0", | ||
"grunt-contrib-uglify": "^4.0.0", | ||
"grunt-contrib-uglify": "^4.0.1", | ||
"grunt-mkdir": "^1.0.0", | ||
"grunt-mocha-istanbul": "^5.0.2", | ||
"grunt-mocha-nyc": "^1.0.3", | ||
"grunt-simple-mocha": "^0.4.1", | ||
"istanbul": "^0.4.5", | ||
"mocha": "^5.1.1", | ||
"snyk": "^1.116.2" | ||
"mocha": "^6.1.4", | ||
"nyc": "^14.0.0", | ||
"snyk": "^1.157.1" | ||
}, | ||
"snyk": true | ||
} |
@@ -12,3 +12,3 @@ # short-uuid | ||
## v3.1.0 | ||
## v3.1.1 | ||
@@ -59,2 +59,7 @@ ### Quick Start | ||
## Support | ||
short-uuid has been tested to work on Node 0.10.x and later. | ||
Builds run on Node 6.x and later. | ||
## Notes | ||
@@ -77,6 +82,6 @@ | ||
3.1.0 adds `generate()` for ease of use. | ||
3.0.0 updates dependencies, includes a refactor for CodeClimate, and drops Node 0.x support. | ||
2.3.4 corrects the behavior for UUIDs with uppercase letters. Last version to build on Node 0.x. | ||
3.1.0 adds `generate()` for ease of use. Last version to build on Node 4.x. | ||
3.0.0 updates dependencies, includes a refactor for CodeClimate, and drops Node 0.x builds. | ||
2.3.4 corrects the behavior for UUIDs with uppercase letters. Last version to build on Node 0.x. | ||
Please see [Revisions](revisions.md) for information on previous versions. |
@@ -66,5 +66,5 @@ # Revisions | ||
3.1.0 adds `generate()` for ease of use. | ||
3.0.0 updates dependencies, includes a refactor for CodeClimate, and drops Node 0.x support. | ||
2.3.4 corrects the behavior for UUIDs with uppercase letters. Last version to build on Node 0.x. | ||
3.1.0 adds `generate()` for ease of use. | ||
3.0.0 updates dependencies, includes a refactor for CodeClimate, and drops Node 0.x support. | ||
2.3.4 corrects the behavior for UUIDs with uppercase letters. Last version to build on Node 0.x. | ||
@@ -71,0 +71,0 @@ |
Sorry, the diff of this file is not supported yet
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
94250
21
85
Updateduuid@^3.3.2