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

docs: Update Skip SSL to mention it is insecure (no-changelog) #11935

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export const webhookModalDescription = [
default: {},
options: [
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
noDataExpression: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/CrowdDevApi.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class CrowdDevApi implements ICredentialType {
default: '',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/DfirIrisApi.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class DfirIrisApi implements ICredentialType {
default: '',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'skipSslCertificateValidation',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/ERPNextApi.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class ERPNextApi implements ICredentialType {
},
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class ElasticsearchApi implements ICredentialType {
description: "Referred to as Elasticsearch 'endpoint' in the Elastic deployment dashboard",
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'ignoreSSLIssues',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/GotifyApi.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class GotifyApi implements ICredentialType {
description: 'The URL of the Gotify host',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'ignoreSSLIssues',
type: 'boolean',
default: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class MattermostApi implements ICredentialType {
default: '',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class MicrosoftSql implements ICredentialType {
default: true,
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/OAuth2Api.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class OAuth2Api implements ICredentialType {
default: 'header',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'ignoreSSLIssues',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/Postgres.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class Postgres implements ICredentialType {
default: '',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/S3.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class S3 implements ICredentialType {
default: false,
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'ignoreSSLIssues',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/TheHiveApi.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class TheHiveApi implements ICredentialType {
],
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export class TheHiveProjectApi implements ICredentialType {
placeholder: 'https://localhost:9000',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/credentials/TimescaleDb.credentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class TimescaleDb implements ICredentialType {
default: '',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class WordpressApi implements ICredentialType {
placeholder: 'https://example.com',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class ZammadBasicAuthApi implements ICredentialType {
required: true,
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class ZammadTokenAuthApi implements ICredentialType {
required: true,
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
description: 'Whether to connect even if SSL certificate validation is not possible',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
'Custom email fetching rules. See <a href="https://github.com/mscdex/node-imap">node-imap</a>\'s search function for more details.',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 203 in packages/nodes-base/nodes/EmailReadImap/v1/EmailReadImapV1.node.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/EmailSend/v1/EmailSendV1.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@
default: {},
options: [
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 113 in packages/nodes-base/nodes/EmailSend/v1/EmailSendV1.node.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/EmailSend/v2/send.operation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@
description: 'Email address of BCC recipient',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 170 in packages/nodes-base/nodes/EmailSend/v2/send.operation.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
placeholder: 'videos',
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 192 in packages/nodes-base/nodes/Facebook/FacebookGraphApi.node.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/GraphQL/GraphQL.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@
required: true,
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 163 in packages/nodes-base/nodes/GraphQL/GraphQL.node.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
required: true,
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 199 in packages/nodes-base/nodes/HttpRequest/V1/HttpRequestV1.node.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@
required: true,
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 214 in packages/nodes-base/nodes/HttpRequest/V2/HttpRequestV2.node.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'allowUnauthorizedCerts',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/HttpRequest/V3/Description.ts
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@
],
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 698 in packages/nodes-base/nodes/HttpRequest/V3/Description.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'allowUnauthorizedCerts',
type: 'boolean',
noDataExpression: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/RssFeedRead/RssFeedRead.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
default: {},
options: [
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',

Check failure on line 57 in packages/nodes-base/nodes/RssFeedRead/RssFeedRead.node.ts

View workflow job for this annotation

GitHub Actions / Lint / Lint

Change to title case [autofixable]
name: 'ignoreSSL',
type: 'boolean',
default: false,
Expand Down
2 changes: 1 addition & 1 deletion packages/workflow/src/NodeHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ const declarativeNodeOptionParameters: INodeProperties = {
],
},
{
displayName: 'Ignore SSL Issues',
displayName: 'Ignore SSL Issues (insecure)',
name: 'allowUnauthorizedCerts',
type: 'boolean',
noDataExpression: true,
Expand Down
Loading