Skip to content

Commit

Permalink
Library securiy updates
Browse files Browse the repository at this point in the history
  • Loading branch information
michelcaradec committed May 14, 2021
1 parent c1c2a48 commit db5fdfe
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 23 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ Here are a few common issues.

## [Unreleased]

## [0.1.4] - 2021-04-14

### Changed

- Security vulnerability upgrade of library [lodash](https://github.com/lodash/lodash) to 4.17.21.
- Security vulnerability upgrade of library [y18n](https://github.com/yargs/y18n) to 4.0.1.
- Security vulnerability upgrade of library [trim](https://github.com/Trott/trim) to 1.0.1.
- Upgrade of library [franc](https://github.com/wooorm/franc) to 5.0.0.

## [0.1.3] - 2020-03-25

### Changed
Expand Down
64 changes: 45 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"url": "https://github.com/michelcaradec/string-checker-js"
},
"license": "MIT",
"version": "0.1.3",
"version": "0.1.4",
"engines": {
"vscode": "^1.38.0"
},
Expand Down Expand Up @@ -312,7 +312,9 @@
},
"dependencies": {
"escape-string-regexp": "^2.0.0",
"typescript": "^3.7.2",
"franc": "^4.1.0"
"franc": "^5.0.0",
"trigram-utils": "^2.0.0",
"trim": "^1.0.1",
"typescript": "^3.7.2"
}
}
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export class Constants {
static readonly ExtensionName = 'string-checker-js';
static readonly ExtensionNameHumanReadable = 'String Checker JS';
static readonly ExtensionVersion = 'v0.1.3';
static readonly ExtensionVersion = 'v0.1.4';
static readonly ExtensionID = 'string-checker-js';
static readonly ItemStringPrefix = 'string:';
static readonly ItemRegexPrefix = 'regex:';
Expand Down

0 comments on commit db5fdfe

Please sign in to comment.