Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix link to security advisory #7091

Merged
merged 1 commit into from Mar 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,10 @@ Please add one entry in this file for each change in Yarn's behavior. Use the sa

## Master

- Fixes the advisory link printed by `yarn audit`

[#7091](https://github.com/yarnpkg/yarn/pull/7091) - [**Jakob Krigovsky**](https://github.com/sonicdoe)

- Fixes `npm_config_` environment variable parsing to support those prefixed with underscore (ex: `_auth`)

[#7070](https://github.com/yarnpkg/yarn/pull/7070) - [**Nicholas Boll**](https://github.com/NicholasBoll)
Expand Down
2 changes: 1 addition & 1 deletion src/reporters/console/console-reporter.js
Expand Up @@ -565,7 +565,7 @@ export default class ConsoleReporter extends BaseReporter {
...patchRows,
{'Dependency of': `${resolution.path.split('>')[0]} ${resolution.dev ? '[dev]' : ''}`},
{Path: resolution.path.split('>').join(' > ')},
{'More info': `https://nodesecurity.io/advisories/${auditAdvisory.id}`},
{'More info': `https://www.npmjs.com/advisories/${auditAdvisory.id}`},
];
}

Expand Down