-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from jeemok/next
v2.0
- Loading branch information
Showing
30 changed files
with
1,572 additions
and
1,019 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
{ | ||
"1337": { | ||
"ignore": true, | ||
"reason": "Ignored since we don't use xxx method", | ||
"active": true, | ||
"notes": "Ignored since we don't use xxx method", | ||
"expiry": 1615462134681 | ||
}, | ||
"4501": { | ||
"ignore": false, | ||
"reason": "This will be fixed by the library maintainers by June 14" | ||
"active": false, | ||
"notes": "This will be fixed by the library maintainers by June 14" | ||
}, | ||
"4502": { | ||
"ignore": true | ||
"active": true | ||
}, | ||
"980": "This will be fixed by the library maintainers by June 14", | ||
"1024": "", | ||
"5": false, | ||
"3": null, | ||
"2": undefined, | ||
"Note": "Any non number key will be ignored" | ||
"Note": "Any non number key will not be excepted" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,63 @@ | ||
## 2.0.4 (June 22, 2021) | ||
|
||
### Notable changes | ||
|
||
* Simplified the workflow and improved overall performance by running lesser in the process. | ||
* Added [`table`](https://www.npmjs.com/package/table) module to display summaries (Initially used [`cli-table`](https://www.npmjs.com/package/cli-table) for its small size, however the issues in the repo concerns me in its display quality in other OS. Hence, chosen `table` module despite its package size is much bigger) | ||
* Added table display for security report | ||
* Added table display of exceptions from `.nsprc` file | ||
* Cleaned up test cases structure to be more straight forward and easier to maintain | ||
|
||
### Breaking changes | ||
|
||
* Renamed `--ignore -i` flag to `--exclude -x` for better clarity. | ||
* Removed `--display-full` flag that was used to ignore the maximum display limit. Now with the summary table it would be unlikely to display large size of information. | ||
* Removed `--display-notes` flag that was used for displaying exception notes. Now it is included in the exceptions table. | ||
* Renamed `ignore` field to `active` in `.nsprc` file for better clarity. | ||
* Renamed `reason` field to `notes` in `.nsprc` file for better clarity. | ||
|
||
### Others | ||
|
||
* Removed logging of flags used in the command | ||
* Added NPM audit into the CI pipeline | ||
* Added `.github/FUNDING.yml` | ||
* Updated `README.md` | ||
|
||
### Closed issues | ||
|
||
* [#20](https://github.com/jeemok/better-npm-audit/issues/20) Provide more output when parsing exceptions file | ||
* [#27](https://github.com/jeemok/better-npm-audit/issues/27) Hide excepted vulnerabilities from output | ||
* [#28](https://github.com/jeemok/better-npm-audit/issues/28) Missing [ in truncation message | ||
|
||
--- | ||
|
||
## 1.12.1 (June 21, 2021) | ||
|
||
* Added `FUNDING.yml` | ||
* Updated `README.md` | ||
|
||
## 1.12.0 (June 18, 2021) | ||
|
||
* [Display warning when exceptionIds are unused](https://github.com/jeemok/better-npm-audit/pull/38) | ||
* [#38](https://github.com/jeemok/better-npm-audit/pull/38) Display warning when `exceptionIds` are unused | ||
|
||
## 1.11.2 (June 11, 2021) | ||
|
||
* [Fixed security CVE-2020-28469: Bump glob-parent from 5.1.1 to 5.1.2](https://github.com/jeemok/better-npm-audit/pull/37) | ||
* [#37](https://github.com/jeemok/better-npm-audit/pull/37) Fixed security CVE-2020-28469: Bump glob-parent from 5.1.1 to 5.1.2 | ||
|
||
## 1.11.1 (June 11, 2021) | ||
|
||
* Updated `README.md` | ||
|
||
## 1.11.0 (June 11, 2021) | ||
|
||
* [Added environment variable support `process.env.NPM_CONFIG_AUDIT_LEVEL` to set the audit level](https://github.com/jeemok/better-npm-audit/pull/36) | ||
* [#36](https://github.com/jeemok/better-npm-audit/pull/36) Added environment variable support `process.env.NPM_CONFIG_AUDIT_LEVEL` to set the audit level | ||
|
||
## 1.10.1 (June 7, 2021) | ||
|
||
* Updated `--full` flag logging from `[full log mode enabled]` to `[report display limit disabled]` | ||
* [Added new flag `--display-notes` to display reasons for the exceptions](https://github.com/jeemok/better-npm-audit/issues/32) | ||
* [#32](https://github.com/jeemok/better-npm-audit/issues/32) Added new flag `--display-notes` to display reasons for the exceptions | ||
|
||
## 1.9.3 (June 6, 2021) | ||
|
||
### Features | ||
|
||
* [Added CHANGELOG.md](https://github.com/jeemok/better-npm-audit/issues/31) | ||
* [#31](https://github.com/jeemok/better-npm-audit/issues/31) Added `CHANGELOG.md` | ||
* Updated `README.md` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.