Skip to content

Commit db5fdfe

Browse files
committed
Library securiy updates
1 parent c1c2a48 commit db5fdfe

File tree

4 files changed

+60
-23
lines changed

4 files changed

+60
-23
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ Here are a few common issues.
1111

1212
## [Unreleased]
1313

14+
## [0.1.4] - 2021-04-14
15+
16+
### Changed
17+
18+
- Security vulnerability upgrade of library [lodash](https://github.com/lodash/lodash) to 4.17.21.
19+
- Security vulnerability upgrade of library [y18n](https://github.com/yargs/y18n) to 4.0.1.
20+
- Security vulnerability upgrade of library [trim](https://github.com/Trott/trim) to 1.0.1.
21+
- Upgrade of library [franc](https://github.com/wooorm/franc) to 5.0.0.
22+
1423
## [0.1.3] - 2020-03-25
1524

1625
### Changed

package-lock.json

Lines changed: 45 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"url": "https://github.com/michelcaradec/string-checker-js"
1010
},
1111
"license": "MIT",
12-
"version": "0.1.3",
12+
"version": "0.1.4",
1313
"engines": {
1414
"vscode": "^1.38.0"
1515
},
@@ -312,7 +312,9 @@
312312
},
313313
"dependencies": {
314314
"escape-string-regexp": "^2.0.0",
315-
"typescript": "^3.7.2",
316-
"franc": "^4.1.0"
315+
"franc": "^5.0.0",
316+
"trigram-utils": "^2.0.0",
317+
"trim": "^1.0.1",
318+
"typescript": "^3.7.2"
317319
}
318320
}

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export class Constants {
22
static readonly ExtensionName = 'string-checker-js';
33
static readonly ExtensionNameHumanReadable = 'String Checker JS';
4-
static readonly ExtensionVersion = 'v0.1.3';
4+
static readonly ExtensionVersion = 'v0.1.4';
55
static readonly ExtensionID = 'string-checker-js';
66
static readonly ItemStringPrefix = 'string:';
77
static readonly ItemRegexPrefix = 'regex:';

0 commit comments

Comments
 (0)