Updated dev dependency security vulnerability per CVE-2017-16042

This commit is contained in:
Juha Ristolainen 2018-07-04 14:31:11 +02:00
parent bcbccb68c5
commit fc5c013847
No known key found for this signature in database
GPG Key ID: D80C6C6D40707E83
5 changed files with 23 additions and 4 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
.DS_Store
out out
node_modules node_modules
.vscode-test/ .vscode-test/
*.vsix

View File

@ -2,6 +2,12 @@
All notable changes to the "code-stats-vscode" extension will be documented in this file. All notable changes to the "code-stats-vscode" extension will be documented in this file.
## [1.0.10] - 2018-07-04
### Changed
Updated security vulnerable dependecy per CVE-2017-16042. Growl to 1.10.5
## [1.0.9] - 2018-07-04 ## [1.0.9] - 2018-07-04
### Added ### Added

View File

@ -20,6 +20,10 @@ This extension contributes the following settings:
## Release Notes ## Release Notes
### 1.0.10
Updated security vulnerable dependecy per CVE-2017-16042. Growl to 1.10.5
### 1.0.9 ### 1.0.9
Merged a PR from scout199 to for a HTML-profile view and addition of username setting. Merged a PR from scout199 to for a HTML-profile view and addition of username setting.

12
package-lock.json generated
View File

@ -679,9 +679,9 @@
"dev": true "dev": true
}, },
"growl": { "growl": {
"version": "1.9.2", "version": "1.10.5",
"resolved": "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz", "resolved": "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz",
"integrity": "sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8=", "integrity": "sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==",
"dev": true "dev": true
}, },
"gulp-chmod": { "gulp-chmod": {
@ -1333,6 +1333,12 @@
"ms": "0.7.1" "ms": "0.7.1"
} }
}, },
"growl": {
"version": "1.9.2",
"resolved": "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz",
"integrity": "sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8=",
"dev": true
},
"ms": { "ms": {
"version": "0.7.1", "version": "0.7.1",
"resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz",

View File

@ -2,7 +2,7 @@
"name": "code-stats-vscode", "name": "code-stats-vscode",
"displayName": "Code::Stats", "displayName": "Code::Stats",
"description": "Code::Stats package for Visual Studio Code", "description": "Code::Stats package for Visual Studio Code",
"version": "1.0.9", "version": "1.0.10",
"license": "MIT", "license": "MIT",
"publisher": "riussi", "publisher": "riussi",
"contributors": [ "contributors": [
@ -62,6 +62,7 @@
"typescript": "^2.9.1", "typescript": "^2.9.1",
"vscode": "^1.1.0", "vscode": "^1.1.0",
"mocha": "^2.3.3", "mocha": "^2.3.3",
"growl": "^1.10.5",
"lodash.template": "^4.4.0", "lodash.template": "^4.4.0",
"@types/node": "^6.0.40", "@types/node": "^6.0.40",
"@types/mocha": "^2.2.32" "@types/mocha": "^2.2.32"