ci: Upgrade nodelinter to 1.16.0 (no-changelog) (#6879)

ci: Upgrade nodelinter to 1.16.0
This commit is contained in:
Iván Ovejero 2023-08-09 10:10:08 +02:00 committed by GitHub
parent aa76dcbdfa
commit b82cf5603a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 95 additions and 35 deletions

View file

@ -19,7 +19,7 @@ export class CiscoUmbrellaApi implements ICredentialType {
displayName: 'Session Token', displayName: 'Session Token',
name: 'sessionToken', name: 'sessionToken',
type: 'hidden', type: 'hidden',
// eslint-disable-next-line n8n-nodes-base/cred-class-field-type-options-password-missing
typeOptions: { typeOptions: {
expirable: true, expirable: true,
}, },

View file

@ -19,7 +19,7 @@ export class CrowdStrikeOAuth2Api implements ICredentialType {
displayName: 'Session Token', displayName: 'Session Token',
name: 'sessionToken', name: 'sessionToken',
type: 'hidden', type: 'hidden',
// eslint-disable-next-line n8n-nodes-base/cred-class-field-type-options-password-missing
typeOptions: { typeOptions: {
expirable: true, expirable: true,
}, },

View file

@ -19,7 +19,7 @@ export class MetabaseApi implements ICredentialType {
displayName: 'Session Token', displayName: 'Session Token',
name: 'sessionToken', name: 'sessionToken',
type: 'hidden', type: 'hidden',
// eslint-disable-next-line n8n-nodes-base/cred-class-field-type-options-password-missing
typeOptions: { typeOptions: {
expirable: true, expirable: true,
}, },

View file

@ -53,7 +53,7 @@ export class VenafiTlsProtectDatacenterApi implements ICredentialType {
displayName: 'Access Token', displayName: 'Access Token',
name: 'token', name: 'token',
type: 'hidden', type: 'hidden',
// eslint-disable-next-line n8n-nodes-base/cred-class-field-type-options-password-missing
typeOptions: { typeOptions: {
expirable: true, expirable: true,
}, },

View file

@ -41,7 +41,7 @@ export class WekanApi implements ICredentialType {
displayName: 'Session Token', displayName: 'Session Token',
name: 'token', name: 'token',
type: 'hidden', type: 'hidden',
// eslint-disable-next-line n8n-nodes-base/cred-class-field-type-options-password-missing
typeOptions: { typeOptions: {
expirable: true, expirable: true,
}, },

View file

@ -167,7 +167,7 @@ export const meetingFields: INodeProperties[] = [
{ {
displayName: 'Exclude Password', displayName: 'Exclude Password',
name: 'excludePassword', name: 'excludePassword',
// eslint-disable-next-line n8n-nodes-base/node-param-type-options-password-missing
type: 'boolean', type: 'boolean',
default: false, default: false,
description: 'Whether or not to exclude password from the meeting email invitation', description: 'Whether or not to exclude password from the meeting email invitation',
@ -747,7 +747,7 @@ export const meetingFields: INodeProperties[] = [
{ {
displayName: 'Exclude Password', displayName: 'Exclude Password',
name: 'excludePassword', name: 'excludePassword',
// eslint-disable-next-line n8n-nodes-base/node-param-type-options-password-missing
type: 'boolean', type: 'boolean',
default: false, default: false,
description: 'Whether or not to exclude password from the meeting email invitation', description: 'Whether or not to exclude password from the meeting email invitation',

View file

@ -145,7 +145,7 @@ export const webinarFields: INodeProperties[] = [
{ {
displayName: 'Is Password Protected', displayName: 'Is Password Protected',
name: 'isPasswordProtected', name: 'isPasswordProtected',
// eslint-disable-next-line n8n-nodes-base/node-param-type-options-password-missing
type: 'boolean', type: 'boolean',
default: false, default: false,
}, },
@ -406,7 +406,7 @@ export const webinarFields: INodeProperties[] = [
{ {
displayName: 'Is Password Protected', displayName: 'Is Password Protected',
name: 'isPasswordProtected', name: 'isPasswordProtected',
// eslint-disable-next-line n8n-nodes-base/node-param-type-options-password-missing
type: 'boolean', type: 'boolean',
default: false, default: false,
description: 'Whether the webinar requires a password for attendees to join', description: 'Whether the webinar requires a password for attendees to join',

View file

@ -157,7 +157,7 @@ export const userFields: INodeProperties[] = [
{ {
displayName: 'Change Password At Next Login', displayName: 'Change Password At Next Login',
name: 'changePasswordAtNextLogin', name: 'changePasswordAtNextLogin',
// eslint-disable-next-line n8n-nodes-base/node-param-type-options-password-missing
type: 'boolean', type: 'boolean',
default: false, default: false,
description: 'Whether the user is forced to change their password at next login', description: 'Whether the user is forced to change their password at next login',
@ -683,7 +683,7 @@ export const userFields: INodeProperties[] = [
{ {
displayName: 'Change Password At Next Login', displayName: 'Change Password At Next Login',
name: 'changePasswordAtNextLogin', name: 'changePasswordAtNextLogin',
// eslint-disable-next-line n8n-nodes-base/node-param-type-options-password-missing
type: 'boolean', type: 'boolean',
default: false, default: false,
description: 'Whether the user is forced to change their password at next login', description: 'Whether the user is forced to change their password at next login',

View file

@ -44,6 +44,7 @@ export class JiraTrigger implements INodeType {
}, },
}, },
{ {
// eslint-disable-next-line n8n-nodes-base/node-class-description-credentials-name-unsuffixed
name: 'httpQueryAuth', name: 'httpQueryAuth',
required: true, required: true,
displayOptions: { displayOptions: {

View file

@ -32,6 +32,7 @@ export class Ldap implements INodeType {
outputs: ['main'], outputs: ['main'],
credentials: [ credentials: [
{ {
// eslint-disable-next-line n8n-nodes-base/node-class-description-credentials-name-unsuffixed
name: 'ldap', name: 'ldap',
required: true, required: true,
testedBy: 'ldapConnectionTest', testedBy: 'ldapConnectionTest',

View file

@ -803,7 +803,7 @@
"@types/tmp": "^0.2.0", "@types/tmp": "^0.2.0",
"@types/uuid": "^8.3.2", "@types/uuid": "^8.3.2",
"@types/xml2js": "^0.4.11", "@types/xml2js": "^0.4.11",
"eslint-plugin-n8n-nodes-base": "^1.15.0", "eslint-plugin-n8n-nodes-base": "^1.16.0",
"gulp": "^4.0.0", "gulp": "^4.0.0",
"n8n-core": "workspace:*" "n8n-core": "workspace:*"
}, },

View file

@ -1,4 +1,4 @@
lockfileVersion: '6.1' lockfileVersion: '6.0'
settings: settings:
autoInstallPeers: true autoInstallPeers: true
@ -135,7 +135,7 @@ importers:
dependencies: dependencies:
axios: axios:
specifier: ^0.21.1 specifier: ^0.21.1
version: 0.21.4(debug@4.3.2) version: 0.21.4
packages/@n8n_io/eslint-config: packages/@n8n_io/eslint-config:
devDependencies: devDependencies:
@ -216,7 +216,7 @@ importers:
version: 7.28.1 version: 7.28.1
axios: axios:
specifier: ^0.21.1 specifier: ^0.21.1
version: 0.21.4(debug@4.3.2) version: 0.21.4
basic-auth: basic-auth:
specifier: ^2.0.1 specifier: ^2.0.1
version: 2.0.1 version: 2.0.1
@ -574,7 +574,7 @@ importers:
version: link:../@n8n/client-oauth2 version: link:../@n8n/client-oauth2
axios: axios:
specifier: ^0.21.1 specifier: ^0.21.1
version: 0.21.4(debug@4.3.2) version: 0.21.4
concat-stream: concat-stream:
specifier: ^2.0.0 specifier: ^2.0.0
version: 2.0.0 version: 2.0.0
@ -834,7 +834,7 @@ importers:
version: 10.2.0(vue@3.3.4) version: 10.2.0(vue@3.3.4)
axios: axios:
specifier: ^0.21.1 specifier: ^0.21.1
version: 0.21.4(debug@4.3.2) version: 0.21.4
codemirror-lang-html-n8n: codemirror-lang-html-n8n:
specifier: ^1.0.0 specifier: ^1.0.0
version: 1.0.0 version: 1.0.0
@ -1259,8 +1259,8 @@ importers:
specifier: ^0.4.11 specifier: ^0.4.11
version: 0.4.11 version: 0.4.11
eslint-plugin-n8n-nodes-base: eslint-plugin-n8n-nodes-base:
specifier: ^1.15.0 specifier: ^1.16.0
version: 1.15.0(eslint@8.45.0)(typescript@5.1.6) version: 1.16.0(eslint@8.45.0)(typescript@5.1.6)
gulp: gulp:
specifier: ^4.0.0 specifier: ^4.0.0
version: 4.0.2 version: 4.0.2
@ -4454,7 +4454,7 @@ packages:
dependencies: dependencies:
'@segment/loosely-validate-event': 2.0.0 '@segment/loosely-validate-event': 2.0.0
auto-changelog: 1.16.4 auto-changelog: 1.16.4
axios: 0.21.4(debug@4.3.2) axios: 0.21.4
axios-retry: 3.3.1 axios-retry: 3.3.1
bull: 3.29.3 bull: 3.29.3
lodash.clonedeep: 4.5.0 lodash.clonedeep: 4.5.0
@ -6824,6 +6824,14 @@ packages:
'@typescript-eslint/visitor-keys': 6.2.0 '@typescript-eslint/visitor-keys': 6.2.0
dev: true dev: true
/@typescript-eslint/scope-manager@6.3.0:
resolution: {integrity: sha512-WlNFgBEuGu74ahrXzgefiz/QlVb+qg8KDTpknKwR7hMH+lQygWyx0CQFoUmMn1zDkQjTBBIn75IxtWss77iBIQ==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
'@typescript-eslint/types': 6.3.0
'@typescript-eslint/visitor-keys': 6.3.0
dev: true
/@typescript-eslint/type-utils@5.59.5(eslint@8.45.0)(typescript@5.1.6): /@typescript-eslint/type-utils@5.59.5(eslint@8.45.0)(typescript@5.1.6):
resolution: {integrity: sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==} resolution: {integrity: sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@ -6874,6 +6882,11 @@ packages:
engines: {node: ^16.0.0 || >=18.0.0} engines: {node: ^16.0.0 || >=18.0.0}
dev: true dev: true
/@typescript-eslint/types@6.3.0:
resolution: {integrity: sha512-K6TZOvfVyc7MO9j60MkRNWyFSf86IbOatTKGrpTQnzarDZPYPVy0oe3myTMq7VjhfsUAbNUW8I5s+2lZvtx1gg==}
engines: {node: ^16.0.0 || >=18.0.0}
dev: true
/@typescript-eslint/typescript-estree@5.59.5(typescript@5.1.6): /@typescript-eslint/typescript-estree@5.59.5(typescript@5.1.6):
resolution: {integrity: sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==} resolution: {integrity: sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@ -6916,6 +6929,27 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/typescript-estree@6.3.0(typescript@5.1.6):
resolution: {integrity: sha512-Xh4NVDaC4eYKY4O3QGPuQNp5NxBAlEvNQYOqJquR2MePNxO11E5K3t5x4M4Mx53IZvtpW+mBxIT0s274fLUocg==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
typescript: '*'
peerDependenciesMeta:
typescript:
optional: true
dependencies:
'@typescript-eslint/types': 6.3.0
'@typescript-eslint/visitor-keys': 6.3.0
debug: 4.3.4(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.5.4
ts-api-utils: 1.0.1(typescript@5.1.6)
typescript: 5.1.6
transitivePeerDependencies:
- supports-color
dev: true
/@typescript-eslint/utils@5.59.5(eslint@8.45.0)(typescript@5.1.6): /@typescript-eslint/utils@5.59.5(eslint@8.45.0)(typescript@5.1.6):
resolution: {integrity: sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==} resolution: {integrity: sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@ -6955,6 +6989,25 @@ packages:
- typescript - typescript
dev: true dev: true
/@typescript-eslint/utils@6.3.0(eslint@8.45.0)(typescript@5.1.6):
resolution: {integrity: sha512-hLLg3BZE07XHnpzglNBG8P/IXq/ZVXraEbgY7FM0Cnc1ehM8RMdn9mat3LubJ3KBeYXXPxV1nugWbQPjGeJk6Q==}
engines: {node: ^16.0.0 || >=18.0.0}
peerDependencies:
eslint: ^7.0.0 || ^8.0.0
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.45.0)
'@types/json-schema': 7.0.12
'@types/semver': 7.5.0
'@typescript-eslint/scope-manager': 6.3.0
'@typescript-eslint/types': 6.3.0
'@typescript-eslint/typescript-estree': 6.3.0(typescript@5.1.6)
eslint: 8.45.0
semver: 7.5.4
transitivePeerDependencies:
- supports-color
- typescript
dev: true
/@typescript-eslint/visitor-keys@5.59.5: /@typescript-eslint/visitor-keys@5.59.5:
resolution: {integrity: sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==} resolution: {integrity: sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@ -6971,6 +7024,14 @@ packages:
eslint-visitor-keys: 3.4.1 eslint-visitor-keys: 3.4.1
dev: true dev: true
/@typescript-eslint/visitor-keys@6.3.0:
resolution: {integrity: sha512-kEhRRj7HnvaSjux1J9+7dBen15CdWmDnwrpyiHsFX6Qx2iW5LOBUgNefOFeh2PjWPlNwN8TOn6+4eBU3J/gupw==}
engines: {node: ^16.0.0 || >=18.0.0}
dependencies:
'@typescript-eslint/types': 6.3.0
eslint-visitor-keys: 3.4.1
dev: true
/@vitejs/plugin-vue@4.2.3(vite@4.4.7)(vue@3.3.4): /@vitejs/plugin-vue@4.2.3(vite@4.4.7)(vue@3.3.4):
resolution: {integrity: sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw==} resolution: {integrity: sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw==}
engines: {node: ^14.18.0 || >=16.0.0} engines: {node: ^14.18.0 || >=16.0.0}
@ -8084,19 +8145,18 @@ packages:
is-retry-allowed: 2.2.0 is-retry-allowed: 2.2.0
dev: false dev: false
/axios@0.21.4(debug@4.3.2): /axios@0.21.4:
resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
dependencies: dependencies:
follow-redirects: 1.15.2(debug@4.3.2) follow-redirects: 1.15.2(debug@4.3.4)
transitivePeerDependencies: transitivePeerDependencies:
- debug - debug
dev: false dev: false
/axios@0.27.2: /axios@0.21.4(debug@4.3.2):
resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==}
dependencies: dependencies:
follow-redirects: 1.15.2(debug@4.3.2) follow-redirects: 1.15.2(debug@4.3.2)
form-data: 4.0.0
transitivePeerDependencies: transitivePeerDependencies:
- debug - debug
dev: false dev: false
@ -8117,7 +8177,6 @@ packages:
form-data: 4.0.0 form-data: 4.0.0
transitivePeerDependencies: transitivePeerDependencies:
- debug - debug
dev: true
/babel-core@7.0.0-bridge.0(@babel/core@7.22.9): /babel-core@7.0.0-bridge.0(@babel/core@7.22.9):
resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==} resolution: {integrity: sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==}
@ -10816,15 +10875,15 @@ packages:
resolution: {integrity: sha512-qe6sVFDP1Vj5eXlqZxYZpIjwYvhuqXlI0P8OfPyhiPOhMkFtr0TpFphD8/6WCzkm7LJCvG1eJEzURCtMIsFTAg==} resolution: {integrity: sha512-qe6sVFDP1Vj5eXlqZxYZpIjwYvhuqXlI0P8OfPyhiPOhMkFtr0TpFphD8/6WCzkm7LJCvG1eJEzURCtMIsFTAg==}
dev: true dev: true
/eslint-plugin-n8n-nodes-base@1.15.0(eslint@8.45.0)(typescript@5.1.6): /eslint-plugin-n8n-nodes-base@1.16.0(eslint@8.45.0)(typescript@5.1.6):
resolution: {integrity: sha512-eyKoX4Is4ImJo9YiPm+e7SOshVh8iBamZ8knqz8pxWnpCTpYNxVnxc9TeR+zQf9qZDELWit4GIXDi0uPOczhXQ==} resolution: {integrity: sha512-OEztJRuT/jv/WvwRXbXNirdYYddpAo2KZEJeOsVniK1ZCChuG4rrZJU3sgMRZMK6W9Pr613uWabW2q8tU2eKJg==}
engines: {node: '>=18.10', pnpm: '>=8.6'}
dependencies: dependencies:
'@typescript-eslint/utils': 5.59.5(eslint@8.45.0)(typescript@5.1.6) '@typescript-eslint/utils': 6.3.0(eslint@8.45.0)(typescript@5.1.6)
camel-case: 4.1.2 camel-case: 4.1.2
indefinite: 2.4.1 indefinite: 2.4.3
pascal-case: 3.1.2 pascal-case: 3.1.2
pluralize: 8.0.0 pluralize: 8.0.0
prettier: 2.8.8
sentence-case: 3.0.4 sentence-case: 3.0.4
title-case: 3.0.3 title-case: 3.0.3
transitivePeerDependencies: transitivePeerDependencies:
@ -11698,7 +11757,6 @@ packages:
optional: true optional: true
dependencies: dependencies:
debug: 4.3.4(supports-color@8.1.1) debug: 4.3.4(supports-color@8.1.1)
dev: true
/for-each@0.3.3: /for-each@0.3.3:
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
@ -12800,8 +12858,8 @@ packages:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'} engines: {node: '>=0.8.19'}
/indefinite@2.4.1: /indefinite@2.4.3:
resolution: {integrity: sha512-4C1k983crWkOu4tfmx8by1jQ0xBLBo0EhNV1WsRem2y+IbzLmPkYycjrQe399heo3bZ5OYpImQo2o85vQ0HkSQ==} resolution: {integrity: sha512-tLgivPQiMY76i93YKhjV5cMiORWfrk3FHdD1mREBNKlWbHmBrObLfOz6xlTk+beboj/JJSlhuCpCMmChR5Sgng==}
engines: {node: '>=6.0.0'} engines: {node: '>=6.0.0'}
dev: true dev: true
@ -17058,7 +17116,7 @@ packages:
resolution: {integrity: sha512-aXYe/D+28kF63W8Cz53t09ypEORz+ULeDCahdAqhVrRm2scbOXFbtnn0GGhvMpYe45grepLKuwui9KxrZ2ZuMw==} resolution: {integrity: sha512-aXYe/D+28kF63W8Cz53t09ypEORz+ULeDCahdAqhVrRm2scbOXFbtnn0GGhvMpYe45grepLKuwui9KxrZ2ZuMw==}
engines: {node: '>=14.17.0'} engines: {node: '>=14.17.0'}
dependencies: dependencies:
axios: 0.27.2 axios: 0.27.2(debug@4.3.4)
transitivePeerDependencies: transitivePeerDependencies:
- debug - debug
dev: false dev: false