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

[stable6.0] Fix npm audit #4325

Open
wants to merge 1 commit into
base: stable6.0
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
955 changes: 573 additions & 382 deletions package-lock.json

Unchanged files with check annotations Beta

/**
* Rfc props
*
* @return string[]

Check warning on line 142 in src/components/ContactDetails/ContactDetailsAddNewProp.vue

GitHub Actions / eslint

Missing JSDoc @return type
*/
propertiesOrder() {
return rfcProps.fieldOrder
<!-- org, title -->
<template #subtitle>
<template v-if="isReadOnly">
<span v-html="formattedSubtitle" />

Check warning on line 68 in src/components/ContactDetails.vue

GitHub Actions / eslint

'v-html' directive can lead to XSS attack
</template>
<template v-else>
<input id="contact-title"
<template #icon>
<IconMail :size="20" />
</template>
<ActionLink v-for="emailAddress in emailAddressList"

Check warning on line 233 in src/components/ContactDetails.vue

GitHub Actions / eslint

Variable 'emailAddress' is already declared in the upper scope
:key="emailAddress"
:href="'mailto:' + emailAddress">
<template #icon>
/**
* Update this.localContact and set this.fixed
*
* @param {Contact} contact the contact to clone

Check warning on line 974 in src/components/ContactDetails.vue

GitHub Actions / eslint

The type 'Contact' is undefined
*/
async updateLocalContact(contact) {
// create empty contact and copy inner data
/**
* Should display the property
*
* @param {Property} property the property to check

Check warning on line 1025 in src/components/ContactDetails.vue

GitHub Actions / eslint

The type 'Property' is undefined
* @return {boolean}
*/
canDisplay(property) {
/**
* On toggle, add or remove the config bitwise
*
* @param {CircleConfig} config the circle config to manage

Check warning on line 85 in src/components/CircleDetails/CircleConfigs.vue

GitHub Actions / eslint

The type 'CircleConfig' is undefined
* @param {boolean} checked checked or not
*/
async onChange(config, checked) {
<p>{{ t('contacts', 'Anything shared with this team will show up here') }}</p>
<div v-for="provider in resourceProviders" :key="provider.id">
<ContentHeading>
<span v-show="false" class="provider__icon" v-html="provider.icon" /> {{ provider.name }}

Check warning on line 115 in src/components/CircleDetails.vue

GitHub Actions / eslint

'v-html' directive can lead to XSS attack
</ContentHeading>
<ul>
<span v-if="resource.iconEmoji" class="resource__icon">
{{ resource.iconEmoji }}
</span>
<span v-else-if="resource.iconSvg" class="resource__icon" v-html="resource.iconSvg" />

Check warning on line 128 in src/components/CircleDetails.vue

GitHub Actions / eslint

'v-html' directive can lead to XSS attack
<span v-else-if="resource.iconURL" class="resource__icon">
<img :src="resource.iconURL" alt="">
</span>
* Open mailto: for contacts in a group
*
* @param {object} group of contacts to be emailed
* @param {string} mode

Check warning on line 162 in src/components/AppNavigation/GroupNavigationItem.vue

GitHub Actions / eslint

Missing JSDoc @param "mode" description
*/
emailGroup(group, mode = 'to') {
const emails = []
*
* @author Gary Kim <gary@garykim.dev>
*
* @license GNU AGPL version 3 or any later version

Check warning on line 6 in src/admin-settings.js

GitHub Actions / eslint

Invalid JSDoc @license: "GNU AGPL version 3 or any later version"; expected SPDX expression: https://spdx.org/licenses/
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as