2022-04-08 14:32:08 -07:00
import path from 'path' ;
2022-12-06 10:15:15 -08:00
import convict from 'convict' ;
2023-10-23 04:39:35 -07:00
import { Container } from 'typedi' ;
import { InstanceSettings } from 'n8n-core' ;
2023-10-25 07:35:22 -07:00
import { LOG_LEVELS , jsonParse } from 'n8n-workflow' ;
2023-09-22 08:22:12 -07:00
import { ensureStringArray } from './utils' ;
2022-12-06 10:15:15 -08:00
convict . addFormat ( {
2023-09-22 08:22:12 -07:00
name : 'json-string-array' ,
coerce : ( rawStr : string ) = >
jsonParse < string [ ] > ( rawStr , {
errorMessage : ` Expected this value " ${ rawStr } " to be valid JSON ` ,
} ) ,
validate : ensureStringArray ,
} ) ;
2022-12-06 10:15:15 -08:00
2023-09-22 08:22:12 -07:00
convict . addFormat ( {
name : 'comma-separated-list' ,
coerce : ( rawStr : string ) = > rawStr . split ( ',' ) ,
validate : ensureStringArray ,
2022-12-06 10:15:15 -08:00
} ) ;
2022-04-08 10:37:27 -07:00
export const schema = {
database : {
type : {
doc : 'Type of database to use' ,
format : [ 'sqlite' , 'mariadb' , 'mysqldb' , 'postgresdb' ] as const ,
default : 'sqlite' ,
env : 'DB_TYPE' ,
} ,
tablePrefix : {
doc : 'Prefix for table names' ,
format : '*' ,
default : '' ,
env : 'DB_TABLE_PREFIX' ,
} ,
logging : {
enabled : {
doc : 'Typeorm logging enabled flag.' ,
format : Boolean ,
default : false ,
env : 'DB_LOGGING_ENABLED' ,
} ,
options : {
doc : 'Logging level options, default is "error". Possible values: query,error,schema,warn,info,log. To enable all logging, specify "all"' ,
format : String ,
default : 'error' ,
env : 'DB_LOGGING_OPTIONS' ,
} ,
maxQueryExecutionTime : {
doc : 'Maximum number of milliseconds query should be executed before logger logs a warning. Set 0 to disable long running query warning' ,
format : Number ,
2023-09-04 08:59:08 -07:00
default : 0 , // 0 disables the slow-query log
2022-04-08 10:37:27 -07:00
env : 'DB_LOGGING_MAX_EXECUTION_TIME' ,
} ,
} ,
postgresdb : {
database : {
doc : 'PostgresDB Database' ,
format : String ,
default : 'n8n' ,
env : 'DB_POSTGRESDB_DATABASE' ,
} ,
host : {
doc : 'PostgresDB Host' ,
format : String ,
default : 'localhost' ,
env : 'DB_POSTGRESDB_HOST' ,
} ,
password : {
doc : 'PostgresDB Password' ,
format : String ,
default : '' ,
env : 'DB_POSTGRESDB_PASSWORD' ,
} ,
port : {
doc : 'PostgresDB Port' ,
format : Number ,
default : 5432 ,
env : 'DB_POSTGRESDB_PORT' ,
} ,
user : {
doc : 'PostgresDB User' ,
format : String ,
default : 'root' ,
env : 'DB_POSTGRESDB_USER' ,
} ,
schema : {
doc : 'PostgresDB Schema' ,
format : String ,
default : 'public' ,
env : 'DB_POSTGRESDB_SCHEMA' ,
} ,
ssl : {
2023-10-09 04:55:03 -07:00
enabled : {
doc : 'If SSL should be enabled. If `ca`, `cert`, or `key` are defined, this will automatically default to true' ,
2023-10-27 09:48:21 -07:00
format : Boolean ,
2023-10-09 04:55:03 -07:00
default : false ,
env : 'DB_POSTGRESDB_SSL_ENABLED' ,
} ,
2022-04-08 10:37:27 -07:00
ca : {
doc : 'SSL certificate authority' ,
format : String ,
default : '' ,
env : 'DB_POSTGRESDB_SSL_CA' ,
} ,
cert : {
doc : 'SSL certificate' ,
format : String ,
default : '' ,
env : 'DB_POSTGRESDB_SSL_CERT' ,
} ,
key : {
doc : 'SSL key' ,
format : String ,
default : '' ,
env : 'DB_POSTGRESDB_SSL_KEY' ,
} ,
rejectUnauthorized : {
doc : 'If unauthorized SSL connections should be rejected' ,
2023-10-26 05:35:38 -07:00
format : Boolean ,
2022-04-08 10:37:27 -07:00
default : true ,
env : 'DB_POSTGRESDB_SSL_REJECT_UNAUTHORIZED' ,
} ,
} ,
} ,
mysqldb : {
database : {
2023-05-08 03:16:20 -07:00
doc : '[DEPRECATED] MySQL Database' ,
2022-04-08 10:37:27 -07:00
format : String ,
default : 'n8n' ,
env : 'DB_MYSQLDB_DATABASE' ,
} ,
host : {
doc : 'MySQL Host' ,
format : String ,
default : 'localhost' ,
env : 'DB_MYSQLDB_HOST' ,
} ,
password : {
doc : 'MySQL Password' ,
format : String ,
default : '' ,
env : 'DB_MYSQLDB_PASSWORD' ,
} ,
port : {
doc : 'MySQL Port' ,
format : Number ,
default : 3306 ,
env : 'DB_MYSQLDB_PORT' ,
} ,
user : {
doc : 'MySQL User' ,
format : String ,
default : 'root' ,
env : 'DB_MYSQLDB_USER' ,
} ,
} ,
sqlite : {
2022-11-04 06:23:58 -07:00
database : {
doc : 'SQLite Database file name' ,
format : String ,
default : 'database.sqlite' ,
env : 'DB_SQLITE_DATABASE' ,
} ,
2023-09-07 06:58:48 -07:00
enableWAL : {
doc : 'Enable SQLite WAL mode' ,
format : Boolean ,
default : false ,
env : 'DB_SQLITE_ENABLE_WAL' ,
} ,
2022-04-08 10:37:27 -07:00
executeVacuumOnStartup : {
doc : 'Runs VACUUM operation on startup to rebuild the database. Reduces filesize and optimizes indexes. WARNING: This is a long running blocking operation. Will increase start-up time.' ,
format : Boolean ,
default : false ,
env : 'DB_SQLITE_VACUUM_ON_STARTUP' ,
} ,
} ,
} ,
credentials : {
overwrite : {
data : {
// Allows to set default values for credentials which
// get automatically prefilled and the user does not get
// displayed and can not change.
2022-09-02 07:13:17 -07:00
// Format: { CREDENTIAL_NAME: { PARAMETER: VALUE }}
2022-04-08 10:37:27 -07:00
doc : 'Overwrites for credentials' ,
format : '*' ,
default : '{}' ,
env : 'CREDENTIALS_OVERWRITE_DATA' ,
} ,
endpoint : {
doc : 'Fetch credentials from API' ,
format : String ,
default : '' ,
env : 'CREDENTIALS_OVERWRITE_ENDPOINT' ,
} ,
} ,
defaultName : {
doc : 'Default name for credentials' ,
format : String ,
default : 'My credentials' ,
env : 'CREDENTIALS_DEFAULT_NAME' ,
} ,
} ,
workflows : {
defaultName : {
doc : 'Default name for workflow' ,
format : String ,
default : 'My workflow' ,
env : 'WORKFLOWS_DEFAULT_NAME' ,
} ,
2022-05-16 09:19:33 -07:00
onboardingFlowDisabled : {
doc : 'Show onboarding flow in new workflow' ,
2023-10-26 05:35:38 -07:00
format : Boolean ,
2022-05-16 09:19:33 -07:00
default : false ,
env : 'N8N_ONBOARDING_FLOW_DISABLED' ,
} ,
2022-10-26 05:59:54 -07:00
callerPolicyDefaultOption : {
doc : 'Default option for which workflows may call the current workflow' ,
2022-12-21 07:42:07 -08:00
format : [ 'any' , 'none' , 'workflowsFromAList' , 'workflowsFromSameOwner' ] as const ,
default : 'workflowsFromSameOwner' ,
2022-10-26 05:59:54 -07:00
env : 'N8N_WORKFLOW_CALLER_POLICY_DEFAULT_OPTION' ,
} ,
2022-04-08 10:37:27 -07:00
} ,
executions : {
2023-06-02 04:10:19 -07:00
// By default workflows get always executed in the main process.
// TODO: remove this and all usage of `executions.process` when `own` mode is deleted
2022-04-08 10:37:27 -07:00
process : {
2023-06-02 04:10:19 -07:00
doc : 'In what process workflows should be executed.' ,
2022-04-08 10:37:27 -07:00
format : [ 'main' , 'own' ] as const ,
2023-06-02 04:10:19 -07:00
default : 'main' ,
2022-04-08 10:37:27 -07:00
env : 'EXECUTIONS_PROCESS' ,
} ,
mode : {
doc : 'If it should run executions directly or via queue' ,
format : [ 'regular' , 'queue' ] as const ,
default : 'regular' ,
env : 'EXECUTIONS_MODE' ,
} ,
// A Workflow times out and gets canceled after this time (seconds).
// If the workflow is executed in the main process a soft timeout
// is executed (takes effect after the current node finishes).
// If a workflow is running in its own process is a soft timeout
// tried first, before killing the process after waiting for an
// additional fifth of the given timeout duration.
//
// To deactivate timeout set it to -1
//
// Timeout is currently not activated by default which will change
// in a future version.
timeout : {
doc : 'Max run time (seconds) before stopping the workflow execution' ,
format : Number ,
default : - 1 ,
env : 'EXECUTIONS_TIMEOUT' ,
} ,
maxTimeout : {
doc : 'Max execution time (seconds) that can be set for a workflow individually' ,
format : Number ,
default : 3600 ,
env : 'EXECUTIONS_TIMEOUT_MAX' ,
} ,
// If a workflow executes all the data gets saved by default. This
// could be a problem when a workflow gets executed a lot and processes
// a lot of data. To not exceed the database's capacity it is possible to
// prune the database regularly or to not save the execution at all.
// Depending on if the execution did succeed or error a different
// save behaviour can be set.
saveDataOnError : {
doc : 'What workflow execution data to save on error' ,
format : [ 'all' , 'none' ] as const ,
default : 'all' ,
env : 'EXECUTIONS_DATA_SAVE_ON_ERROR' ,
} ,
saveDataOnSuccess : {
doc : 'What workflow execution data to save on success' ,
format : [ 'all' , 'none' ] as const ,
default : 'all' ,
env : 'EXECUTIONS_DATA_SAVE_ON_SUCCESS' ,
} ,
saveExecutionProgress : {
2022-09-02 07:13:17 -07:00
doc : 'Whether or not to save progress for each node executed' ,
2023-10-26 05:35:38 -07:00
format : Boolean ,
2022-04-08 10:37:27 -07:00
default : false ,
env : 'EXECUTIONS_DATA_SAVE_ON_PROGRESS' ,
} ,
// If the executions of workflows which got started via the editor
// should be saved. By default they will not be saved as this runs
// are normally only for testing and debugging. This setting can
// also be overwritten on a per workflow basis in the workflow settings
// in the editor.
saveDataManualExecutions : {
doc : 'Save data of executions when started manually via editor' ,
2023-10-26 05:35:38 -07:00
format : Boolean ,
2023-07-04 01:49:04 -07:00
default : true ,
2022-04-08 10:37:27 -07:00
env : 'EXECUTIONS_DATA_SAVE_MANUAL_EXECUTIONS' ,
} ,
// To not exceed the database's capacity and keep its size moderate
2023-10-18 08:01:57 -07:00
// the execution data gets pruned regularly (default: 15 minute interval).
2022-04-08 10:37:27 -07:00
// All saved execution data older than the max age will be deleted.
// Pruning is currently not activated by default, which will change in
// a future version.
pruneData : {
doc : 'Delete data of past executions on a rolling basis' ,
2023-10-26 05:35:38 -07:00
format : Boolean ,
2023-07-04 01:49:04 -07:00
default : true ,
2022-04-08 10:37:27 -07:00
env : 'EXECUTIONS_DATA_PRUNE' ,
} ,
pruneDataMaxAge : {
2023-10-19 07:57:12 -07:00
doc : 'How old (hours) the finished execution data has to be to get soft-deleted' ,
2022-04-08 10:37:27 -07:00
format : Number ,
default : 336 ,
env : 'EXECUTIONS_DATA_MAX_AGE' ,
} ,
2023-10-19 07:57:12 -07:00
pruneDataHardDeleteBuffer : {
doc : 'How old (hours) the finished execution data has to be to get hard-deleted. By default, this buffer excludes recent executions as the user may need them while building a workflow.' ,
2023-10-18 08:01:57 -07:00
format : Number ,
2023-10-19 07:57:12 -07:00
default : 1 ,
env : 'EXECUTIONS_DATA_HARD_DELETE_BUFFER' ,
} ,
pruneDataIntervals : {
hardDelete : {
doc : 'How often (minutes) execution data should be hard-deleted' ,
format : Number ,
default : 15 ,
env : 'EXECUTIONS_DATA_PRUNE_HARD_DELETE_INTERVAL' ,
} ,
softDelete : {
doc : 'How often (minutes) execution data should be soft-deleted' ,
format : Number ,
default : 60 ,
env : 'EXECUTIONS_DATA_PRUNE_SOFT_DELETE_INTERVAL' ,
} ,
2023-10-18 08:01:57 -07:00
} ,
2023-02-20 01:28:38 -08:00
// Additional pruning option to delete executions if total count exceeds the configured max.
// Deletes the oldest entries first
2023-07-04 01:49:04 -07:00
// Set to 0 for No limit
2023-02-20 01:28:38 -08:00
pruneDataMaxCount : {
2023-10-04 06:32:05 -07:00
doc : "Maximum number of finished executions to keep in DB. Doesn't necessarily prune exactly to max number. 0 = no limit" ,
2023-02-20 01:28:38 -08:00
format : Number ,
2023-07-04 01:49:04 -07:00
default : 10000 ,
2023-02-20 01:28:38 -08:00
env : 'EXECUTIONS_DATA_PRUNE_MAX_COUNT' ,
} ,
2022-04-08 10:37:27 -07:00
} ,
queue : {
health : {
active : {
doc : 'If health checks should be enabled' ,
2023-10-26 05:35:38 -07:00
format : Boolean ,
2022-04-08 10:37:27 -07:00
default : false ,
env : 'QUEUE_HEALTH_CHECK_ACTIVE' ,
} ,
port : {
doc : 'Port to serve health check on if activated' ,
format : Number ,
default : 5678 ,
env : 'QUEUE_HEALTH_CHECK_PORT' ,
} ,
} ,
bull : {
prefix : {
2023-08-02 03:51:25 -07:00
doc : 'Prefix for all bull queue keys' ,
2022-04-08 10:37:27 -07:00
format : String ,
2023-07-21 14:31:52 -07:00
default : 'bull' ,
2022-04-08 10:37:27 -07:00
env : 'QUEUE_BULL_PREFIX' ,
} ,
redis : {
db : {
doc : 'Redis DB' ,
format : Number ,
default : 0 ,
env : 'QUEUE_BULL_REDIS_DB' ,
} ,
host : {
doc : 'Redis Host' ,
format : String ,
default : 'localhost' ,
env : 'QUEUE_BULL_REDIS_HOST' ,
} ,
password : {
doc : 'Redis Password' ,
format : String ,
default : '' ,
env : 'QUEUE_BULL_REDIS_PASSWORD' ,
} ,
port : {
doc : 'Redis Port' ,
format : Number ,
default : 6379 ,
env : 'QUEUE_BULL_REDIS_PORT' ,
} ,
timeoutThreshold : {
doc : 'Redis timeout threshold' ,
format : Number ,
default : 10000 ,
env : 'QUEUE_BULL_REDIS_TIMEOUT_THRESHOLD' ,
} ,
2023-01-03 02:45:03 -08:00
username : {
doc : 'Redis Username (needs Redis >= 6)' ,
format : String ,
default : '' ,
env : 'QUEUE_BULL_REDIS_USERNAME' ,
} ,
2023-07-21 14:31:52 -07:00
clusterNodes : {
doc : 'Redis Cluster startup nodes (comma separated list of host:port pairs)' ,
format : String ,
default : '' ,
env : 'QUEUE_BULL_REDIS_CLUSTER_NODES' ,
} ,
2023-09-05 09:18:50 -07:00
tls : {
2023-10-26 05:35:38 -07:00
format : Boolean ,
2023-09-05 09:18:50 -07:00
default : false ,
env : 'QUEUE_BULL_REDIS_TLS' ,
doc : 'Enable TLS on Redis connections. Default: false' ,
} ,
2022-04-08 10:37:27 -07:00
} ,
queueRecoveryInterval : {
doc : 'If > 0 enables an active polling to the queue that can recover for Redis crashes. Given in seconds; 0 is disabled. May increase Redis traffic significantly.' ,
format : Number ,
default : 60 ,
env : 'QUEUE_RECOVERY_INTERVAL' ,
} ,
2022-09-02 06:40:45 -07:00
gracefulShutdownTimeout : {
doc : 'How long should n8n wait for running executions before exiting worker process' ,
format : Number ,
default : 30 ,
env : 'QUEUE_WORKER_TIMEOUT' ,
} ,
2023-10-26 08:30:16 -07:00
settings : {
lockDuration : {
doc : 'How long (ms) is the lease period for a worker to work on a message' ,
format : Number ,
default : 30000 ,
env : 'QUEUE_WORKER_LOCK_DURATION' ,
} ,
lockRenewTime : {
doc : 'How frequently (ms) should a worker renew the lease time' ,
format : Number ,
default : 15000 ,
env : 'QUEUE_WORKER_LOCK_RENEW_TIME' ,
} ,
stalledInterval : {
doc : 'How often check for stalled jobs (use 0 for never checking)' ,
format : Number ,
default : 30000 ,
env : 'QUEUE_WORKER_STALLED_INTERVAL' ,
} ,
maxStalledCount : {
doc : 'Max amount of times a stalled job will be re-processed' ,
format : Number ,
default : 1 ,
env : 'QUEUE_WORKER_MAX_STALLED_COUNT' ,
} ,
} ,
2022-04-08 10:37:27 -07:00
} ,
} ,
generic : {
// The timezone to use. Is important for nodes like "Cron" which start the
// workflow automatically at a specified time. This setting can also be
2022-09-02 07:13:17 -07:00
// overwritten on a per workflow basis in the workflow settings in the
2022-04-08 10:37:27 -07:00
// editor.
timezone : {
doc : 'The timezone to use' ,
format : '*' ,
default : 'America/New_York' ,
env : 'GENERIC_TIMEZONE' ,
} ,
2023-09-20 06:21:42 -07:00
instanceType : {
doc : 'Type of n8n instance' ,
format : [ 'main' , 'webhook' , 'worker' ] as const ,
default : 'main' ,
} ,
2023-10-02 08:33:43 -07:00
2023-10-03 11:49:04 -07:00
releaseChannel : {
doc : 'N8N release channel' ,
format : [ 'stable' , 'beta' , 'nightly' , 'dev' ] as const ,
default : 'dev' ,
env : 'N8N_RELEASE_TYPE' ,
2023-10-02 08:33:43 -07:00
} ,
2022-04-08 10:37:27 -07:00
} ,
// How n8n can be reached (Editor & REST-API)
path : {
format : String ,
default : '/' ,
arg : 'path' ,
env : 'N8N_PATH' ,
doc : 'Path n8n is deployed to' ,
} ,
host : {
format : String ,
default : 'localhost' ,
arg : 'host' ,
env : 'N8N_HOST' ,
doc : 'Host name n8n can be reached' ,
} ,
port : {
format : Number ,
default : 5678 ,
arg : 'port' ,
env : 'N8N_PORT' ,
doc : 'HTTP port n8n can be reached' ,
} ,
listen_address : {
format : String ,
default : '0.0.0.0' ,
env : 'N8N_LISTEN_ADDRESS' ,
doc : 'IP address n8n should listen on' ,
} ,
protocol : {
format : [ 'http' , 'https' ] as const ,
default : 'http' ,
env : 'N8N_PROTOCOL' ,
doc : 'HTTP Protocol via which n8n can be reached' ,
} ,
ssl_key : {
format : String ,
default : '' ,
env : 'N8N_SSL_KEY' ,
doc : 'SSL Key for HTTPS Protocol' ,
} ,
ssl_cert : {
format : String ,
default : '' ,
env : 'N8N_SSL_CERT' ,
doc : 'SSL Cert for HTTPS Protocol' ,
} ,
editorBaseUrl : {
format : String ,
default : '' ,
env : 'N8N_EDITOR_BASE_URL' ,
doc : 'Public URL where the editor is accessible. Also used for emails sent from n8n.' ,
} ,
security : {
2023-07-31 05:20:39 -07:00
restrictFileAccessTo : {
doc : 'If set only files in that directories can be accessed. Multiple directories can be separated by semicolon (";").' ,
format : String ,
default : '' ,
env : 'N8N_RESTRICT_FILE_ACCESS_TO' ,
} ,
blockFileAccessToN8nFiles : {
doc : 'If set to true it will block access to all files in the ".n8n" directory and user defined config files.' ,
format : Boolean ,
default : true ,
env : 'N8N_BLOCK_FILE_ACCESS_TO_N8N_FILES' ,
} ,
2023-01-05 04:28:40 -08:00
audit : {
daysAbandonedWorkflow : {
doc : 'Days for a workflow to be considered abandoned if not executed' ,
format : Number ,
default : 90 ,
env : 'N8N_SECURITY_AUDIT_DAYS_ABANDONED_WORKFLOW' ,
} ,
} ,
2022-04-08 10:37:27 -07:00
excludeEndpoints : {
doc : 'Additional endpoints to exclude auth checks. Multiple endpoints can be separated by colon (":")' ,
format : String ,
default : '' ,
env : 'N8N_AUTH_EXCLUDE_ENDPOINTS' ,
} ,
} ,
endpoints : {
payloadSizeMax : {
format : Number ,
default : 16 ,
env : 'N8N_PAYLOAD_SIZE_MAX' ,
doc : 'Maximum payload size in MB.' ,
} ,
metrics : {
enable : {
2023-10-26 05:35:38 -07:00
format : Boolean ,
2022-04-08 10:37:27 -07:00
default : false ,
env : 'N8N_METRICS' ,
2023-01-19 03:11:31 -08:00
doc : 'Enable /metrics endpoint. Default: false' ,
2022-04-08 10:37:27 -07:00
} ,
prefix : {
format : String ,
default : 'n8n_' ,
env : 'N8N_METRICS_PREFIX' ,
doc : 'An optional prefix for metric names. Default: n8n_' ,
} ,
2023-01-19 03:11:31 -08:00
includeDefaultMetrics : {
format : Boolean ,
default : true ,
env : 'N8N_METRICS_INCLUDE_DEFAULT_METRICS' ,
doc : 'Whether to expose default system and node.js metrics. Default: true' ,
} ,
includeWorkflowIdLabel : {
format : Boolean ,
default : false ,
env : 'N8N_METRICS_INCLUDE_WORKFLOW_ID_LABEL' ,
doc : 'Whether to include a label for the workflow ID on workflow metrics. Default: false' ,
} ,
includeNodeTypeLabel : {
format : Boolean ,
default : false ,
env : 'N8N_METRICS_INCLUDE_NODE_TYPE_LABEL' ,
doc : 'Whether to include a label for the node type on node metrics. Default: false' ,
} ,
includeCredentialTypeLabel : {
format : Boolean ,
default : false ,
env : 'N8N_METRICS_INCLUDE_CREDENTIAL_TYPE_LABEL' ,
doc : 'Whether to include a label for the credential type on credential metrics. Default: false' ,
} ,
includeApiEndpoints : {
format : Boolean ,
default : false ,
env : 'N8N_METRICS_INCLUDE_API_ENDPOINTS' ,
doc : 'Whether to expose metrics for API endpoints. Default: false' ,
} ,
includeApiPathLabel : {
format : Boolean ,
default : false ,
env : 'N8N_METRICS_INCLUDE_API_PATH_LABEL' ,
doc : 'Whether to include a label for the path of API invocations. Default: false' ,
} ,
includeApiMethodLabel : {
format : Boolean ,
default : false ,
env : 'N8N_METRICS_INCLUDE_API_METHOD_LABEL' ,
doc : 'Whether to include a label for the HTTP method (GET, POST, ...) of API invocations. Default: false' ,
} ,
includeApiStatusCodeLabel : {
format : Boolean ,
default : false ,
env : 'N8N_METRICS_INCLUDE_API_STATUS_CODE_LABEL' ,
doc : 'Whether to include a label for the HTTP status code (200, 404, ...) of API invocations. Default: false' ,
} ,
2023-08-04 11:51:07 -07:00
includeCacheMetrics : {
format : Boolean ,
default : false ,
env : 'N8N_METRICS_INCLUDE_CACHE_METRICS' ,
doc : 'Whether to include metrics for cache hits and misses. Default: false' ,
} ,
includeMessageEventBusMetrics : {
format : Boolean ,
default : true ,
env : 'N8N_METRICS_INCLUDE_MESSAGE_EVENT_BUS_METRICS' ,
doc : 'Whether to include metrics for events. Default: false' ,
} ,
2022-04-08 10:37:27 -07:00
} ,
rest : {
format : String ,
default : 'rest' ,
env : 'N8N_ENDPOINT_REST' ,
doc : 'Path for rest endpoint' ,
} ,
webhook : {
format : String ,
default : 'webhook' ,
env : 'N8N_ENDPOINT_WEBHOOK' ,
doc : 'Path for webhook endpoint' ,
} ,
webhookWaiting : {
format : String ,
default : 'webhook-waiting' ,
env : 'N8N_ENDPOINT_WEBHOOK_WAIT' ,
doc : 'Path for waiting-webhook endpoint' ,
} ,
webhookTest : {
format : String ,
default : 'webhook-test' ,
env : 'N8N_ENDPOINT_WEBHOOK_TEST' ,
doc : 'Path for test-webhook endpoint' ,
} ,
disableUi : {
format : Boolean ,
default : false ,
env : 'N8N_DISABLE_UI' ,
doc : 'Disable N8N UI (Frontend).' ,
} ,
disableProductionWebhooksOnMainProcess : {
format : Boolean ,
default : false ,
env : 'N8N_DISABLE_PRODUCTION_MAIN_PROCESS' ,
doc : 'Disable production webhooks from main process. This helps ensures no http traffic load to main process when using webhook-specific processes.' ,
} ,
} ,
2022-06-08 11:53:12 -07:00
publicApi : {
disabled : {
format : Boolean ,
default : false ,
env : 'N8N_PUBLIC_API_DISABLED' ,
doc : 'Whether to disable the Public API' ,
} ,
path : {
format : String ,
default : 'api' ,
env : 'N8N_PUBLIC_API_ENDPOINT' ,
doc : 'Path for the public api endpoints' ,
} ,
2023-01-02 03:14:58 -08:00
swaggerUi : {
disabled : {
format : Boolean ,
default : false ,
env : 'N8N_PUBLIC_API_SWAGGERUI_DISABLED' ,
doc : 'Whether to disable the Swagger UI for the Public API' ,
} ,
} ,
2022-06-08 11:53:12 -07:00
} ,
2022-04-08 10:37:27 -07:00
workflowTagsDisabled : {
format : Boolean ,
default : false ,
env : 'N8N_WORKFLOW_TAGS_DISABLED' ,
2022-09-02 07:13:17 -07:00
doc : 'Disable workflow tags.' ,
2022-04-08 10:37:27 -07:00
} ,
userManagement : {
jwtSecret : {
doc : 'Set a specific JWT secret (optional - n8n can generate one)' , // Generated @ start.ts
format : String ,
default : '' ,
env : 'N8N_USER_MANAGEMENT_JWT_SECRET' ,
} ,
2022-12-23 07:24:11 -08:00
isInstanceOwnerSetUp : {
// n8n loads this setting from DB on startup
doc : "Whether the instance owner's account has been set up" ,
format : Boolean ,
default : false ,
} ,
2022-04-08 10:37:27 -07:00
emails : {
mode : {
doc : 'How to send emails' ,
format : [ '' , 'smtp' ] as const ,
default : 'smtp' ,
env : 'N8N_EMAIL_MODE' ,
} ,
smtp : {
host : {
doc : 'SMTP server host' ,
format : String , // e.g. 'smtp.gmail.com'
default : '' ,
env : 'N8N_SMTP_HOST' ,
} ,
port : {
doc : 'SMTP server port' ,
format : Number ,
default : 465 ,
env : 'N8N_SMTP_PORT' ,
} ,
secure : {
doc : 'Whether or not to use SSL for SMTP' ,
format : Boolean ,
default : true ,
env : 'N8N_SMTP_SSL' ,
} ,
auth : {
user : {
doc : 'SMTP login username' ,
format : String , // e.g.'you@gmail.com'
default : '' ,
env : 'N8N_SMTP_USER' ,
} ,
pass : {
doc : 'SMTP login password' ,
format : String ,
default : '' ,
env : 'N8N_SMTP_PASS' ,
} ,
2023-10-20 03:36:40 -07:00
serviceClient : {
doc : 'SMTP OAuth Service Client' ,
format : String ,
default : '' ,
env : 'N8N_SMTP_OAUTH_SERVICE_CLIENT' ,
} ,
privateKey : {
doc : 'SMTP OAuth Private Key' ,
format : String ,
default : '' ,
env : 'N8N_SMTP_OAUTH_PRIVATE_KEY' ,
} ,
2022-04-08 10:37:27 -07:00
} ,
sender : {
doc : 'How to display sender name' ,
format : String ,
default : '' ,
env : 'N8N_SMTP_SENDER' ,
} ,
} ,
templates : {
invite : {
doc : 'Overrides default HTML template for inviting new people (use full path)' ,
format : String ,
default : '' ,
env : 'N8N_UM_EMAIL_TEMPLATES_INVITE' ,
} ,
passwordReset : {
doc : 'Overrides default HTML template for resetting password (use full path)' ,
format : String ,
default : '' ,
env : 'N8N_UM_EMAIL_TEMPLATES_PWRESET' ,
} ,
} ,
} ,
2023-02-24 11:37:19 -08:00
authenticationMethod : {
doc : 'How to authenticate users (e.g. "email", "ldap", "saml")' ,
format : [ 'email' , 'ldap' , 'saml' ] as const ,
default : 'email' ,
} ,
2022-04-08 10:37:27 -07:00
} ,
2022-08-19 06:35:39 -07:00
externalFrontendHooksUrls : {
doc : 'URLs to external frontend hooks files, ; separated' ,
format : String ,
2023-08-17 08:39:32 -07:00
default : '' ,
2022-08-19 06:35:39 -07:00
env : 'EXTERNAL_FRONTEND_HOOKS_URLS' ,
} ,
2022-04-08 10:37:27 -07:00
externalHookFiles : {
doc : 'Files containing external hooks. Multiple files can be separated by colon (":")' ,
format : String ,
default : '' ,
env : 'EXTERNAL_HOOK_FILES' ,
} ,
nodes : {
include : {
doc : 'Nodes to load' ,
2023-09-22 08:22:12 -07:00
format : 'json-string-array' ,
2022-04-08 10:37:27 -07:00
default : undefined ,
env : 'NODES_INCLUDE' ,
} ,
exclude : {
doc : 'Nodes not to load' ,
2023-09-22 08:22:12 -07:00
format : 'json-string-array' ,
2022-12-06 10:15:15 -08:00
default : undefined ,
2022-04-08 10:37:27 -07:00
env : 'NODES_EXCLUDE' ,
} ,
errorTriggerType : {
doc : 'Node Type to use as Error Trigger' ,
format : String ,
default : 'n8n-nodes-base.errorTrigger' ,
env : 'NODES_ERROR_TRIGGER_TYPE' ,
} ,
2022-07-20 07:24:03 -07:00
communityPackages : {
enabled : {
doc : 'Allows you to disable the usage of community packages for nodes' ,
format : Boolean ,
default : true ,
env : 'N8N_COMMUNITY_PACKAGES_ENABLED' ,
} ,
} ,
2022-04-08 10:37:27 -07:00
} ,
logs : {
level : {
doc : 'Log output level' ,
2023-10-25 07:35:22 -07:00
format : LOG_LEVELS ,
2022-04-08 10:37:27 -07:00
default : 'info' ,
env : 'N8N_LOG_LEVEL' ,
} ,
output : {
doc : 'Where to output logs. Options are: console, file. Multiple can be separated by comma (",")' ,
format : String ,
default : 'console' ,
env : 'N8N_LOG_OUTPUT' ,
} ,
file : {
fileCountMax : {
doc : 'Maximum number of files to keep.' ,
format : Number ,
default : 100 ,
env : 'N8N_LOG_FILE_COUNT_MAX' ,
} ,
fileSizeMax : {
doc : 'Maximum size for each log file in MB.' ,
format : Number ,
default : 16 ,
env : 'N8N_LOG_FILE_SIZE_MAX' ,
} ,
location : {
doc : 'Log file location; only used if log output is set to file.' ,
format : String ,
2023-10-23 04:39:35 -07:00
default : path . join ( Container . get ( InstanceSettings ) . n8nFolder , 'logs/n8n.log' ) ,
2022-04-08 10:37:27 -07:00
env : 'N8N_LOG_FILE_LOCATION' ,
} ,
} ,
} ,
versionNotifications : {
enabled : {
doc : 'Whether feature is enabled to request notifications about new versions and security updates.' ,
format : Boolean ,
default : true ,
env : 'N8N_VERSION_NOTIFICATIONS_ENABLED' ,
} ,
endpoint : {
doc : 'Endpoint to retrieve version information from.' ,
format : String ,
2022-05-30 02:29:31 -07:00
default : 'https://api.n8n.io/api/versions/' ,
2022-04-08 10:37:27 -07:00
env : 'N8N_VERSION_NOTIFICATIONS_ENDPOINT' ,
} ,
infoUrl : {
2022-12-29 03:20:43 -08:00
doc : "Url in New Versions Panel with more information on updating one's instance." ,
2022-04-08 10:37:27 -07:00
format : String ,
default : 'https://docs.n8n.io/getting-started/installation/updating.html' ,
env : 'N8N_VERSION_NOTIFICATIONS_INFO_URL' ,
} ,
} ,
templates : {
enabled : {
doc : 'Whether templates feature is enabled to load workflow templates.' ,
format : Boolean ,
default : true ,
env : 'N8N_TEMPLATES_ENABLED' ,
} ,
host : {
doc : 'Endpoint host to retrieve workflow templates from endpoints.' ,
format : String ,
2022-05-30 02:29:31 -07:00
default : 'https://api.n8n.io/api/' ,
2022-04-08 10:37:27 -07:00
env : 'N8N_TEMPLATES_HOST' ,
} ,
} ,
2023-02-10 06:02:47 -08:00
push : {
backend : {
format : [ 'sse' , 'websocket' ] as const ,
2023-06-02 04:10:19 -07:00
default : 'websocket' ,
2023-02-10 06:02:47 -08:00
env : 'N8N_PUSH_BACKEND' ,
doc : 'Backend to use for push notifications' ,
} ,
} ,
2022-04-08 10:37:27 -07:00
binaryDataManager : {
availableModes : {
2023-09-22 08:22:12 -07:00
format : 'comma-separated-list' ,
2022-04-08 10:37:27 -07:00
default : 'filesystem' ,
env : 'N8N_AVAILABLE_BINARY_DATA_MODES' ,
doc : 'Available modes of binary data storage, as comma separated strings' ,
} ,
mode : {
2023-10-05 06:25:17 -07:00
format : [ 'default' , 'filesystem' , 's3' ] as const ,
2022-04-08 10:37:27 -07:00
default : 'default' ,
env : 'N8N_DEFAULT_BINARY_DATA_MODE' ,
doc : 'Storage mode for binary data' ,
} ,
localStoragePath : {
format : String ,
2023-10-23 04:39:35 -07:00
default : path . join ( Container . get ( InstanceSettings ) . n8nFolder , 'binaryData' ) ,
2022-04-08 10:37:27 -07:00
env : 'N8N_BINARY_DATA_STORAGE_PATH' ,
doc : 'Path for binary data storage in "filesystem" mode' ,
} ,
} ,
2023-10-05 06:25:17 -07:00
externalStorage : {
s3 : {
host : {
format : String ,
default : '' ,
env : 'N8N_EXTERNAL_STORAGE_S3_HOST' ,
doc : 'Host of the n8n bucket in S3-compatible external storage, e.g. `s3.us-east-1.amazonaws.com`' ,
} ,
bucket : {
name : {
format : String ,
default : '' ,
env : 'N8N_EXTERNAL_STORAGE_S3_BUCKET_NAME' ,
doc : 'Name of the n8n bucket in S3-compatible external storage' ,
} ,
region : {
format : String ,
default : '' ,
env : 'N8N_EXTERNAL_STORAGE_S3_BUCKET_REGION' ,
doc : 'Region of the n8n bucket in S3-compatible external storage, e.g. `us-east-1`' ,
} ,
} ,
credentials : {
accessKey : {
format : String ,
default : '' ,
env : 'N8N_EXTERNAL_STORAGE_S3_ACCESS_KEY' ,
doc : 'Access key in S3-compatible external storage' ,
} ,
accessSecret : {
format : String ,
default : '' ,
env : 'N8N_EXTERNAL_STORAGE_S3_ACCESS_SECRET' ,
doc : 'Access secret in S3-compatible external storage' ,
} ,
} ,
} ,
} ,
2022-04-08 10:37:27 -07:00
deployment : {
type : {
format : String ,
default : 'default' ,
env : 'N8N_DEPLOYMENT_TYPE' ,
} ,
} ,
2023-08-23 19:59:16 -07:00
mfa : {
enabled : {
format : Boolean ,
default : true ,
doc : 'Whether to enable MFA feature in instance.' ,
env : 'N8N_MFA_ENABLED' ,
} ,
} ,
2023-02-24 11:37:19 -08:00
sso : {
justInTimeProvisioning : {
format : Boolean ,
default : true ,
doc : 'Whether to automatically create users when they login via SSO.' ,
} ,
redirectLoginToSso : {
format : Boolean ,
default : true ,
doc : 'Whether to automatically redirect users from login dialog to initialize SSO flow.' ,
} ,
saml : {
2023-03-02 00:00:51 -08:00
loginEnabled : {
2023-02-24 11:37:19 -08:00
format : Boolean ,
default : false ,
doc : 'Whether to enable SAML SSO.' ,
} ,
2023-03-02 00:00:51 -08:00
loginLabel : {
format : String ,
default : '' ,
} ,
2023-02-24 11:37:19 -08:00
} ,
2023-03-02 00:00:51 -08:00
ldap : {
loginEnabled : {
format : Boolean ,
default : false ,
} ,
loginLabel : {
format : String ,
default : '' ,
} ,
2023-02-03 03:50:08 -08:00
} ,
} ,
2022-04-08 10:37:27 -07:00
hiringBanner : {
enabled : {
doc : 'Whether hiring banner in browser console is enabled.' ,
format : Boolean ,
default : true ,
env : 'N8N_HIRING_BANNER_ENABLED' ,
} ,
} ,
personalization : {
enabled : {
doc : 'Whether personalization is enabled.' ,
format : Boolean ,
default : true ,
env : 'N8N_PERSONALIZATION_ENABLED' ,
} ,
} ,
diagnostics : {
enabled : {
doc : 'Whether diagnostic mode is enabled.' ,
format : Boolean ,
default : true ,
env : 'N8N_DIAGNOSTICS_ENABLED' ,
} ,
config : {
2022-08-19 06:35:39 -07:00
posthog : {
apiKey : {
doc : 'API key for PostHog' ,
format : String ,
default : 'phc_4URIAm1uYfJO7j8kWSe0J8lc8IqnstRLS7Jx8NcakHo' ,
env : 'N8N_DIAGNOSTICS_POSTHOG_API_KEY' ,
} ,
apiHost : {
doc : 'API host for PostHog' ,
format : String ,
2023-02-16 04:07:08 -08:00
default : 'https://ph.n8n.io' ,
2022-08-19 06:35:39 -07:00
env : 'N8N_DIAGNOSTICS_POSTHOG_API_HOST' ,
} ,
disableSessionRecording : {
doc : 'Disable posthog session recording' ,
format : Boolean ,
default : true ,
env : 'N8N_DIAGNOSTICS_POSTHOG_DISABLE_RECORDING' ,
} ,
} ,
2022-11-04 09:34:47 -07:00
sentry : {
dsn : {
doc : 'Data source name for error tracking on Sentry' ,
format : String ,
2023-08-09 04:29:57 -07:00
default : '' ,
2022-11-04 09:34:47 -07:00
env : 'N8N_SENTRY_DSN' ,
} ,
} ,
2022-04-08 10:37:27 -07:00
frontend : {
doc : 'Diagnostics config for frontend.' ,
format : String ,
default : '1zPn9bgWPzlQc0p8Gj1uiK6DOTn;https://telemetry.n8n.io' ,
env : 'N8N_DIAGNOSTICS_CONFIG_FRONTEND' ,
} ,
backend : {
doc : 'Diagnostics config for backend.' ,
format : String ,
default : '1zPn7YoGC3ZXE9zLeTKLuQCB4F6;https://telemetry.n8n.io/v1/batch' ,
env : 'N8N_DIAGNOSTICS_CONFIG_BACKEND' ,
} ,
} ,
} ,
defaultLocale : {
doc : 'Default locale for the UI' ,
format : String ,
default : 'en' ,
env : 'N8N_DEFAULT_LOCALE' ,
} ,
2022-07-27 07:28:13 -07:00
onboardingCallPrompt : {
enabled : {
2022-09-02 07:13:17 -07:00
doc : 'Whether onboarding call prompt feature is available' ,
2022-07-27 07:28:13 -07:00
format : Boolean ,
default : true ,
env : 'N8N_ONBOARDING_CALL_PROMPTS_ENABLED' ,
} ,
} ,
2022-11-21 06:41:24 -08:00
license : {
serverUrl : {
format : String ,
default : 'https://license.n8n.io/v1' ,
env : 'N8N_LICENSE_SERVER_URL' ,
doc : 'License server url to retrieve license.' ,
} ,
autoRenewEnabled : {
format : Boolean ,
default : true ,
env : 'N8N_LICENSE_AUTO_RENEW_ENABLED' ,
2023-04-21 08:10:10 -07:00
doc : 'Whether auto renewal for licenses is enabled.' ,
2022-11-21 06:41:24 -08:00
} ,
autoRenewOffset : {
format : Number ,
default : 60 * 60 * 72 , // 72 hours
env : 'N8N_LICENSE_AUTO_RENEW_OFFSET' ,
doc : 'How many seconds before expiry a license should get automatically renewed. ' ,
} ,
activationKey : {
format : String ,
default : '' ,
env : 'N8N_LICENSE_ACTIVATION_KEY' ,
doc : 'Activation key to initialize license' ,
} ,
2022-11-28 08:39:34 -08:00
tenantId : {
format : Number ,
default : 1 ,
env : 'N8N_LICENSE_TENANT_ID' ,
doc : 'Tenant id used by the license manager' ,
} ,
2023-03-31 04:51:38 -07:00
cert : {
format : String ,
default : '' ,
env : 'N8N_LICENSE_CERT' ,
doc : 'Ephemeral license certificate' ,
} ,
2022-11-21 06:41:24 -08:00
} ,
2022-12-13 05:59:22 -08:00
hideUsagePage : {
format : Boolean ,
default : false ,
env : 'N8N_HIDE_USAGE_PAGE' ,
doc : 'Hide or show the usage page' ,
} ,
2023-01-04 00:47:48 -08:00
eventBus : {
checkUnsentInterval : {
doc : 'How often (in ms) to check for unsent event messages. Can in rare cases cause a message to be sent twice. 0=disabled' ,
format : Number ,
default : 0 ,
env : 'N8N_EVENTBUS_CHECKUNSENTINTERVAL' ,
} ,
logWriter : {
keepLogCount : {
doc : 'How many event log files to keep.' ,
format : Number ,
default : 3 ,
env : 'N8N_EVENTBUS_LOGWRITER_KEEPLOGCOUNT' ,
} ,
maxFileSizeInKB : {
doc : 'Maximum size of an event log file before a new one is started.' ,
format : Number ,
2023-02-17 01:54:07 -08:00
default : 10240 , // 10MB
2023-01-04 00:47:48 -08:00
env : 'N8N_EVENTBUS_LOGWRITER_MAXFILESIZEINKB' ,
} ,
logBaseName : {
doc : 'Basename of the event log file.' ,
format : String ,
default : 'n8nEventLog' ,
env : 'N8N_EVENTBUS_LOGWRITER_LOGBASENAME' ,
} ,
} ,
2023-09-04 10:58:36 -07:00
crashRecoveryMode : {
doc : 'Should n8n try to recover execution details after a crash, or just mark pending executions as crashed' ,
format : [ 'simple' , 'extensive' ] as const ,
default : 'extensive' ,
env : 'N8N_EVENTBUS_RECOVERY_MODE' ,
} ,
2023-01-04 00:47:48 -08:00
} ,
2023-07-25 02:56:38 -07:00
2023-08-02 03:51:25 -07:00
redis : {
prefix : {
doc : 'Prefix for all n8n related keys' ,
format : String ,
default : 'n8n' ,
env : 'N8N_REDIS_KEY_PREFIX' ,
} ,
2023-09-26 04:58:06 -07:00
queueModeId : {
doc : 'Unique ID for this n8n instance, is usually set automatically by n8n during startup' ,
format : String ,
default : '' ,
} ,
2023-08-02 03:51:25 -07:00
} ,
2023-07-25 02:56:38 -07:00
cache : {
enabled : {
doc : 'Whether caching is enabled' ,
format : Boolean ,
default : true ,
env : 'N8N_CACHE_ENABLED' ,
} ,
backend : {
doc : 'Backend to use for caching' ,
format : [ 'memory' , 'redis' , 'auto' ] as const ,
default : 'auto' ,
env : 'N8N_CACHE_BACKEND' ,
} ,
memory : {
maxSize : {
doc : 'Maximum size of memory cache in bytes' ,
format : Number ,
default : 3 * 1024 * 1024 , // 3 MB
env : 'N8N_CACHE_MEMORY_MAX_SIZE' ,
} ,
ttl : {
doc : 'Time to live for cached items in memory (in ms)' ,
format : Number ,
default : 3600 * 1000 , // 1 hour
env : 'N8N_CACHE_MEMORY_TTL' ,
} ,
} ,
redis : {
2023-08-02 03:51:25 -07:00
prefix : {
doc : 'Prefix for all cache keys' ,
format : String ,
default : 'cache' ,
env : 'N8N_CACHE_REDIS_KEY_PREFIX' ,
} ,
2023-07-25 02:56:38 -07:00
ttl : {
doc : 'Time to live for cached items in redis (in ms), 0 for no TTL' ,
format : Number ,
2023-08-02 03:51:25 -07:00
default : 3600 * 1000 , // 1 hour
2023-07-25 02:56:38 -07:00
env : 'N8N_CACHE_REDIS_TTL' ,
} ,
} ,
} ,
feat(editor): Ask AI in Code node (#6672)
* feat(editor): Ask AI tab and CLi connection
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Remove old getSchema util method
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Increase CSS specificity of the CodeNodeEditor global overrides
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* feat(editor): Magic Connect
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Improve AI controller, load conditionally, UX modal imporvements
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Extract-out AI curl
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Move loading phrases to locale, add support for ask ai experiment
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix build
* adjust communication
* fix: Remove duplicate source control preferences fetching (no-changelog) (#6675)
fix: remove duplicate source control preferences fetching (no-changelog)
* fix(Slack Node): Add UTM params to n8n reference in Slack message (no-changelog) (#6668)
fix(Slack Node): Add UTM params to n8n reference in Slack message
* fix(FileMaker Node): Improve returned error responses (#6585)
* fix(Microsoft Outlook Node): Fix issue with category not correctly applying (#6583)
* feat(Airtable Node): Overhaul (#6200)
* fix(core): Deleting manual executions should defer deleting binary data (#6680)
deleting manual executions should defer deleting binary data
* fix(editor): Add paywall state to non owner users for Variables (#6679)
* fix(editor): Add paywall state to non owner users for Variables
* fix(editor): Add variables view tests
* fix(editor): remove link from paywall state for non owner
* fix(editor): fix displaying logic
* refactor(core): Refactor WorkflowStatistics code (no-changelog) (#6617)
refactor(core): Refactor WorkflowStatistics code
* fix(editor): Hide Execute Node button for unknown nodes (#6684)
* feat: Allow hiding credential params on cloud (#6687)
* fix: Stop n8n from complaining about credentials when saving a new workflow form a template (#6671)
* fix(core): Upgrade semver to address CVE-2022-25883 (#6689)
* fix(core): Upgrade semver to address CVE-2022-25883
[GH Advisory](https://github.com/advisories/GHSA-c2qf-rxjj-qqgw)
* enforce the patched version of semver everywhere in the dev setup
* ci: Fix test checker glob (no changelog) (#6682)
ci: Fix test checker glob
* fix(API): Do not add starting node on workflow creation (#6686)
* fix(API): Do not add starting node on workflow creation
* chore: Remove comment
* fix(core): Filter out workflows that failed to activate on startup (#6676)
* fix(core): Deactivate on init workflow that should not be retried
* fix(core): Filter out workflows with activation errors
* fix(core): Load SAML libraries dynamically (#6690)
load SAML dynamically
* fix(crowd.dev Node): Fix documentation urls for crowd.dev credentials and nodes (#6696)
* feat(Read PDF Node): Replace pdf-parse with pdfjs, and add support for streaming and encrypted PDFs (#6640)
* feat: Allow `eslint-config` to be externally consumable (#6694)
* feat: Allow `eslint-config` to be externally consumable
* refactor: Adjust import styles
* fix(Contentful Node): Fix typo in credential name (no-changelog) (#6692)
* fix(editor): Ensure default credential values are not detected as dirty state (#6677)
* fix(editor): Ensure default credential values are not detected as dirty state
* chore: Remove logging
* refactor: Improve comment
* feat(Google Cloud Storage Node): Use streaming for file uploads (#6462)
fix(Google Cloud Storage Node): Use streaming for file uploads
* fix(editor): Prevent RMC from loading schema if it's already cached (#6695)
* fix(editor): Prevent RMC from loading schema if it's already cached
* ✅ Adding new tests for RMC
* 👕 Fixing lint errors
* 👌 Updating inline loader styling
* fix(API): Fix issue with workflow setting not supporting newer nanoids (#6699)
* ci: Fix test workflows (no-changelog) (#6698)
* ci: Fix test workflows (no-changelog)
We removed `pdf-parse` in #6640, so we need to get these test PDF files from the `test-workflows` repo instead ([which has been updated to include these files](https://github.com/n8n-io/test-workflows/commit/0f6ef1c804e3f1e919b097bdf061ea9ea095b1e2))
* remove `\n` from ids and skipList text files
* fix(core): Banner dismissal should also work for users migrating to v1 (no-changelog) (#6700)
* fix(Postgres Node): For select queries, empty result should be be replaced with `{"success":true}` (#6703)
* fix(Postgres Node): For select queries, empty result should be be replaced with `{"success":true}`
* :zap: less checks
---------
Co-authored-by: Michael Kret <michael.k@radency.com>
* feat(editor): Removing `ph-no-capture` class from some elements (#6674)
* feat(editor): Remove `.ph-no-capture` class from some of the fields
* ✔️ Updating test snapshots
* ⚡ Redacting expressions preview in credentials form
* 🔧 Disable posthog input masking
* 🚨 Testing PostHog iFrame settings
* Reverting iframe test
* ⚡ Hiding API key in PostHog recordings
* ✅ Added tests for redacted values
* ✔️ Updating checkbox snapshots after label component update
* ✔️ Updating test snapshots in editor-ui
* 👕 Fix lint errors
* fix(editor): Remove global link styling in v1 banner (#6705)
* fix: Add missing indices on sqlite (#6673)
* fix: enforce tag name uniqueness on sqlite
* rename migration and add other missing indices
* add tags tests
* test: Move test timeout to `/cli` (no-changelog) (#6712)
* fix(core): Redirect user to previous url after SSO signin (#6710)
redirect user to previous url after SSO signin
* fix(FTP Node): List recursive ignore . and .. to prevent infinite loops (#6707)
ignore . and .. to prevent infinite loop
Co-authored-by: Michael Kret <michael.k@radency.com>
* ci: Fix running e2e tests in dev mode (no-changelog) (#6717)
* fix(Google BigQuery Node): Error description improvement (#6715)
* fix(GitLab Trigger Node): Fix trigger activation 404 error (#6711)
* fix webhook checkExists not deleting static data
* improve webhook checkExists not deleting static data
* fix(core): Support redis cluster in queue mode (#6708)
* support redis cluster
* cleanup, fix config schema
* set default prefix to bull
* fix(editor): Skip error line highlighting if out of range (#6721)
* fix(AwsS3 Node): Fix issue if bucket name contains a '.' (#6542)
* test(editor): Add canvas actions E2E tests (#6723)
* test(editor): Add canvas actions E2E tests
* test(editor): Open category items in node creator when category dropped on canvas
* test(editor): Have new position counted only once in drag
* test(editor): rename test
* feat(Rundeck Node): Add support for node filters (#5633)
* fix(Gmail Trigger Node): Early returns in case of no data (#6727)
* fix(core): Use JWT as reset password token (#6714)
* use jwt to reset password
* increase expiration time to 1d
* drop user id query string
* refactor
* use service instead of package in tests
* sqlite migration
* postgres migration
* mysql migration
* remove unused properties
* remove userId from FE
* fix test for users.api
* move migration to the common folder
* move type assertion to the jwt.service
* Add jwt secret as a readonly property
* use signData instead of sign in user.controller
* remove base class
* remove base class
* add tests
* ci: Fix tests on postgres (no-changelog)
* refactor(core): Prevent community packages queries if feature is disabled (#6728)
* feat(core): Add cache service (#6729)
* add cache service
* PR adjustments
* switch to maxSize for memory cache
* Revert "test(editor): Add canvas actions E2E tests" (#6736)
Revert "test(editor): Add canvas actions E2E tests (#6723)"
This reverts commit 052d82b2208c1b2e6f62c6004822c6278c15278b.
* fix(Postgres Node): Arrays in query replacement fix (#6718)
* fix(Telegram Trigger Node): Add guard to 'include' call on null or undefined (#6730)
* fix(core): Use `exec` in docker images to forward signals correctly (#6732)
* refactor(core): Move webhook DB access to repository (no-changelog) (#6706)
* refactor(core): Move webhook DB access to repository (no-changelog)
* make sure `DataSource` is initialized before it's dependencies
at some point I hope to replace `DataSource` with a custom `DatabaseConnection` service class that can then disconnect and reconnect from DB without having to update all repositories.
---------
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
* feat: Environments release using source control (#6653)
* initial telemetry setup and adjusted pull return
* quicksave before merge
* feat: add conflicting workflow list to pull modal
* feat: update source control pull modal
* fix: fix linting issue
* feat: add Enter keydown event for submitting source control push modal (no-changelog)
feat: add Enter keydown event for submitting source control push modal
* quicksave
* user workflow table for export
* improve telemetry data
* pull api telemetry
* fix lint
* Copy tweaks.
* remove authorName and authorEmail and pick from user
* rename owners.json to workflow_owners.json
* ignore credential conflicts on pull
* feat: several push/pull flow changes and design update
* pull and push return same data format
* fix: add One last step toast for successful pull
* feat: add up to date pull toast
* fix: add proper Learn more link for push and pull modals
* do not await tracking being sent
* fix import
* fix await
* add more sourcecontrolfile status
* Minor copy tweak for "More info".
* Minor copy tweak for "More info".
* ignore variable_stub conflicts on pull
* ignore whitespace differences
* do not show remote workflows that are not yet created
* fix telemetry
* fix toast when pulling deleted wf
* lint fix
* refactor and make some imports dynamic
* fix variable edit validation
* fix telemetry response
* improve telemetry
* fix unintenional delete commit
* fix status unknown issue
* fix up to date toast
* do not export active state and reapply versionid
* use update instead of upsert
* fix: show all workflows when clicking push to git
* feat: update Up to date pull translation
* fix: update read only env checks
* do not update versionid of only active flag changes
* feat: prevent access to new workflow and templates import when read only env
* feat: send only active state and version if workflow state is not dirty
* fix: Detect when only active state has changed and prevent generation a new version ID
* feat: improve readonly env messages
* make getPreferences public
* fix telemetry issue
* fix: add partial workflow update based on dirty state when changing active state
* update unit tests
* fix: remove unsaved changes check in readOnlyEnv
* fix: disable push to git button when read onyl env
* fix: update readonly toast duration
* fix: fix pinning and title input in protected mode
* initial commit (NOT working)
* working push
* cleanup and implement pull
* fix getstatus
* update import to new method
* var and tag diffs are no conflicts
* only show pull conflict for workflows
* refactor and ignore faulty credentials
* add sanitycheck for missing git folder
* prefer fetch over pull and limit depth to 1
* back to pull...
* fix setting branch on initial connect
* fix test
* remove clean workfolder
* refactor: Remove some unnecessary code
* Fixed links to docs.
* fix getstatus query params
* lint fix
* dialog to show local and remote name on conflict
* only show remote name on conflict
* fix credential expression export
* fix: Broken test
* dont show toast on pull with empty var/tags and refactor
* apply frontend changes from old branch
* fix tag with same name import
* fix buttons shown for non instance owners
* prepare local storage key for removal
* refactor: Change wording on pushing and pulling
* refactor: Change menu item
* test: Fix broken test
* Update packages/cli/src/environments/sourceControl/types/sourceControlPushWorkFolder.ts
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
---------
Co-authored-by: Alex Grozav <alex@grozav.com>
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
* fix(core): Fix RemoveResetPasswordColumns migration for sqlite (no-changelog) (#6739)
* ci: Update changelog generation to work with node 18
* refactor: Remove webhook from `IDatabaseCollections` (no-changelog) (#6745)
* refactor: Remove webhook from `IDatabaseCollections`
* refactor: Remove also from `collections`
* :rocket: Release 1.1.0 (#6746)
Co-authored-by: netroy <netroy@users.noreply.github.com>
* fix(Lemlist Node): Fix pagination issues with campaigns and activities (#6734)
* ci: Fix linting issues (no-changelog) (#6747)
* fix(core): Allow ignoring SSL issues on generic oauth2 credentials (#6702)
* refactor: Remove all references to the resetPasswordToken field (no-changelog) (#6751)
refactor: remove all references to the resetPasswordToken field (no-changelog)
* refactor(core): Use mixins to delete redundant code between Entity classes (no-changelog) (#6616)
* db entities don't need an ID before they are inserted
* don't define constructors on entity classes, use repository.create instead
* use mixins to reduce duplicate code in db entity classes
* fix: Display source control buttons properly (#6756)
* feat(editor): Migrate Design System and Editor UI to Vue 3 (#6476)
* feat: remove vue-fragment (no-changelog)
* feat: partial design-system migration
* feat: migrate info-accordion and info-tip components
* feat: migrate several components to vue 3
* feat: migrated several components
* feat: migrate several components
* feat: migrate several components
* feat: migrate several components
* feat: re-exported all design system components
* fix: fix design for popper components
* fix: editor kind of working, lots of issues to fix
* fix: fix several vue 3 migration issues
* fix: replace @change with @update:modelValue in several places
* fix: fix translation linking
* fix: fix inline-edit input
* fix: fix ndv and dialog design
* fix: update parameter input event bindings
* fix: rename deprecated lifecycle methods
* fix: fix json view mapping
* build: update lock file
* fix(editor): revisit last conflict with master and fix issues
* fix(editor): revisit last conflict with master and fix issues
* fix: fix expression editor bug causing code mirror to no longer be reactive
* fix: fix resource locator bug
* fix: fix vue-agile integration
* fix: remove global import for vue-agile
* fix: replace element-plus buttons with n8n-buttons everywhere
* fix(editor): Fix various element-plus styles (#6571)
* fix(editor): Fix various element-plus styles
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Remove debugging code
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Address PR comments
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): Fix loading in production mode [Vue 3] (#6578)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): First round of e2e tests fixes with Vue 3 (#6579)
* fix(editor): Fix broken smoke and workflow list e2e tests
* ✔️ Fix failing canvas action tests. Updating some selectors used in credentials and workflow tests
* feat: add vue 3 eslint rules and fix issues
* fix: fix tags-dropdown
* fix: fix white-space issues caused by i18n-t
* fix: rename non-generic click events
* fix: fix search in resources list layout
* fix: fix datatable paginator
* fix: fix popper select caret and dropdown size
* fix: add width to action-dropdown
* fix: fix workflow settings icon not being hidden
* fix: refactor newly added code
* fix: fix merge issue
* fix: fix ndv credentials watcher
* fix: fix workflow saving and grabber notch
* fix: fix nodes list panel transition
* fix: fix node title visibility
* fix: fix data unpinning
* fix: fix value access
* fix: show input panel only if trigger panel enabled or not trigger node
* fix: fix tags dropdown and executions status spcing
* fix(editor): Prevent execution list to load back when leaving the route (#6697)
fix(editor): prevent execution list to load back when leaving the route
* fix: fix drawer visibility
* fix: fix expression toggle padding
* fix: fix expressions editor styling
* chore: prepare for testing
* fix: fix styling for el-button without patching
* test: fix unit tests in design-system
* test: fix most unit tests
* fix: remove import cycle.
* fix: fix personalization modal tests
* fix further resource mapper test adjustments
* fix: fix multiple tests and n8n-route attr duplication
* fix: fix source control tets
* fix: fixed remaining unit tests
* fix: fix workflows and credentials e2e tests
* fix: fix localizeNodeNames
* fix: update ndv e2e tests
* fix: fix popper left placement arrow
* fix: fix 5-ndv e2e tests
* fix: fix 6-code-node e2e tests
* fix(editor): Drop click outside directive from NodeCreator (#6716)
* fix(editor): Drop click outside directive from NodeCreator
* fix(editor): make sure mouseup outside is unbound at least before the component is unmounted
* fix: fix 10-settings-log-streaming e2e tests
* fix: fix node redrawing
* fix: fix tooltip buttons styling
* fix: fix varous e2e suites
* fix: fix 15-scheduler-node e2e suite
* fix: fix route watcher
* fix: fixed param name update and credential edit
* feat: update event names
* refactor: Remove deprecated `$data` (#6576)
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix: fix 17-sharing e2e suite
* fix: fix tags dropdown
* fix: fix tags manager
* fix(editor): move :deep selectors to a separate scoped style block
* fix: fix sticky component and inline text edit
* fix: update e2e tests
* fix: remove button override references
* fix(editor): Adjust spacing in templates for Vue 3 (#6744)
* fix(editor): Adjust spacing in templates
* fix: Undo unneeded change
* fix: Undo unneeded change
* fix(editor): Adjust NDV height for Vue 3 (#6742)
fix(editor): Adjust NDV height
* fix(editor): Restore collapsed sidebar items for Vue 3 (#6743)
fix(editor): Restore collapsed sidebar items
* fix: fix linting issues
* fix: fix design-system deps
* fix: post-merge fixes
* fix: update tests
* fix: increase timeout for executionslist tets
* chore: fix linting issue
* fix: fix 14-mapping e2e tests in ci
* fix: re-enable tests
* fix: fix workflow duplication e2e tests after tags update
* fix(editor): Change component prop to be typed
* fix: fix tags dropdown in duplicate wf modal
* fix: fix focus behaviour in tags selector
* fix: fix tag creation
* fix: fix log streaming e2e race condition
* fix(editor): Fix Vue 3 linting issues (#6748)
* fix(editor): Fix Vue 3 linting issues
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix MainSidebar linter issues
* revert pnpm lock
* update pnpm lock file
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix(editor): Some css fixes for vue3 branch (#6749)
* ✨ Fixing filter button height
* ✨ Update input modal button position
* ✨ Updating tags styling
* ✨ Fix event logging settings spacing
* 👕 Fixing lint errors
* fix: fix linting issues
* Revert to `// eslint-disable-next-line @typescript-eslint/no-misused-promises` disabling of mixins init
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix: fix css issue
* fix(editor): Lint fix
* fix(editor): Fix settings initialisation (#6750)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix: fix initial settings loading
* fix: replace realClick with click force
* fix: fix randomly failing mapping e2e tests
* fix(editor): Fix menu item event handling
* fix: fix resource filters dropdown events (#6752)
* fix: fix resource filters dropdown events
* fix: remove teleported:false
* fix: fix event selection event naming (#6753)
* fix: removed console.log (#6754)
* fix: rever await nextTick changes
* fix: redo linting changes
* fix(editor): Redraw node connections if adding more than one node to canvas (#6755)
* fix(editor): Redraw node connections if adding more than one node to canvas
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Update position before connection two nodes
* Lint fix
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix(editor): Fix `ResourceMapper` unit tests (#6758)
* ✔️ Fix matching columns test
* ✔️ Fix multiple matching columns test
* ✔️ Removing `skip` from the last test
* fix: Allow pasting a big workflow (#6760)
* fix: pasting a big workflow
* chore: update comment
* refactor: move try/catch to function
* refactor: move try/catch to function
* fix(editor): Fix modal layer width
* fix: fix position changes
* fix: undo it.only
* fix: make undo/redo multiple steps more verbose
* fix: Fix value survey styles (#6764)
* fix: fix value survey styles
* fix: lint
* Revert "fix: lint"
72869c431f1448861df021be041b61c62f1e3118
* fix: lint
* fix(editor): Fix collapsed sub menu
* fix: Fix drawer animation (#6767)
fix: drawer animation
* fix(editor): Fix source control buttons (#6769)
* fix(editor): Fix App loading & auth (#6768)
* fix(editor): Fix App loading & auth
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Await promises
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Fix eslint error
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Csaba Tuncsik <csaba@n8n.io>
Co-authored-by: OlegIvaniv <me@olegivaniv.com>
Co-authored-by: Milorad FIlipović <milorad@n8n.io>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
Co-authored-by: Mutasem Aldmour <4711238+mutdmour@users.noreply.github.com>
* perf(editor): Memoize locale translate calls during actions generation (#6773)
performance(editor): Memoize locale translate calls during actions generation
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): Close tags dropdown when modal is opened (#6766)
* feat: remove vue-fragment (no-changelog)
* feat: partial design-system migration
* feat: migrate info-accordion and info-tip components
* feat: migrate several components to vue 3
* feat: migrated several components
* feat: migrate several components
* feat: migrate several components
* feat: migrate several components
* feat: re-exported all design system components
* fix: fix design for popper components
* fix: editor kind of working, lots of issues to fix
* fix: fix several vue 3 migration issues
* fix: replace @change with @update:modelValue in several places
* fix: fix translation linking
* fix: fix inline-edit input
* fix: fix ndv and dialog design
* fix: update parameter input event bindings
* fix: rename deprecated lifecycle methods
* fix: fix json view mapping
* build: update lock file
* fix(editor): revisit last conflict with master and fix issues
* fix(editor): revisit last conflict with master and fix issues
* fix: fix expression editor bug causing code mirror to no longer be reactive
* fix: fix resource locator bug
* fix: fix vue-agile integration
* fix: remove global import for vue-agile
* fix: replace element-plus buttons with n8n-buttons everywhere
* fix(editor): Fix various element-plus styles (#6571)
* fix(editor): Fix various element-plus styles
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Remove debugging code
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Address PR comments
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): Fix loading in production mode [Vue 3] (#6578)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): First round of e2e tests fixes with Vue 3 (#6579)
* fix(editor): Fix broken smoke and workflow list e2e tests
* ✔️ Fix failing canvas action tests. Updating some selectors used in credentials and workflow tests
* feat: add vue 3 eslint rules and fix issues
* fix: fix tags-dropdown
* fix: fix white-space issues caused by i18n-t
* fix: rename non-generic click events
* fix: fix search in resources list layout
* fix: fix datatable paginator
* fix: fix popper select caret and dropdown size
* fix: add width to action-dropdown
* fix: fix workflow settings icon not being hidden
* fix: refactor newly added code
* fix: fix merge issue
* fix: fix ndv credentials watcher
* fix: fix workflow saving and grabber notch
* fix: fix nodes list panel transition
* fix: fix node title visibility
* fix: fix data unpinning
* fix: fix value access
* fix: show input panel only if trigger panel enabled or not trigger node
* fix: fix tags dropdown and executions status spcing
* fix(editor): Prevent execution list to load back when leaving the route (#6697)
fix(editor): prevent execution list to load back when leaving the route
* fix: fix drawer visibility
* fix: fix expression toggle padding
* fix: fix expressions editor styling
* chore: prepare for testing
* fix: fix styling for el-button without patching
* test: fix unit tests in design-system
* test: fix most unit tests
* fix: remove import cycle.
* fix: fix personalization modal tests
* fix further resource mapper test adjustments
* fix: fix multiple tests and n8n-route attr duplication
* fix: fix source control tets
* fix: fixed remaining unit tests
* fix: fix workflows and credentials e2e tests
* fix: fix localizeNodeNames
* fix: update ndv e2e tests
* fix: fix popper left placement arrow
* fix: fix 5-ndv e2e tests
* fix: fix 6-code-node e2e tests
* fix(editor): Drop click outside directive from NodeCreator (#6716)
* fix(editor): Drop click outside directive from NodeCreator
* fix(editor): make sure mouseup outside is unbound at least before the component is unmounted
* fix: fix 10-settings-log-streaming e2e tests
* fix: fix node redrawing
* fix: fix tooltip buttons styling
* fix: fix varous e2e suites
* fix: fix 15-scheduler-node e2e suite
* fix: fix route watcher
* fix: fixed param name update and credential edit
* feat: update event names
* refactor: Remove deprecated `$data` (#6576)
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix: fix 17-sharing e2e suite
* fix: fix tags dropdown
* fix: fix tags manager
* fix(editor): move :deep selectors to a separate scoped style block
* fix: fix sticky component and inline text edit
* fix: update e2e tests
* fix: remove button override references
* fix(editor): Adjust spacing in templates for Vue 3 (#6744)
* fix(editor): Adjust spacing in templates
* fix: Undo unneeded change
* fix: Undo unneeded change
* fix(editor): Adjust NDV height for Vue 3 (#6742)
fix(editor): Adjust NDV height
* fix(editor): Restore collapsed sidebar items for Vue 3 (#6743)
fix(editor): Restore collapsed sidebar items
* fix: fix linting issues
* fix: fix design-system deps
* fix: post-merge fixes
* fix: update tests
* fix: increase timeout for executionslist tets
* chore: fix linting issue
* fix: fix 14-mapping e2e tests in ci
* fix: re-enable tests
* fix: fix workflow duplication e2e tests after tags update
* fix(editor): Change component prop to be typed
* fix: fix tags dropdown in duplicate wf modal
* fix: fix focus behaviour in tags selector
* fix: fix tag creation
* fix: fix log streaming e2e race condition
* fix(editor): Fix Vue 3 linting issues (#6748)
* fix(editor): Fix Vue 3 linting issues
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix MainSidebar linter issues
* revert pnpm lock
* update pnpm lock file
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix(editor): Some css fixes for vue3 branch (#6749)
* ✨ Fixing filter button height
* ✨ Update input modal button position
* ✨ Updating tags styling
* ✨ Fix event logging settings spacing
* 👕 Fixing lint errors
* fix: fix linting issues
* Revert to `// eslint-disable-next-line @typescript-eslint/no-misused-promises` disabling of mixins init
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix: fix css issue
* fix(editor): Lint fix
* fix(editor): Fix settings initialisation (#6750)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix: fix initial settings loading
* fix: replace realClick with click force
* fix: fix randomly failing mapping e2e tests
* fix(editor): Fix menu item event handling
* fix: fix resource filters dropdown events (#6752)
* fix: fix resource filters dropdown events
* fix: remove teleported:false
* fix: fix event selection event naming (#6753)
* fix: removed console.log (#6754)
* fix: rever await nextTick changes
* fix: redo linting changes
* fix(editor): Redraw node connections if adding more than one node to canvas (#6755)
* fix(editor): Redraw node connections if adding more than one node to canvas
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Update position before connection two nodes
* Lint fix
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix(editor): Fix `ResourceMapper` unit tests (#6758)
* ✔️ Fix matching columns test
* ✔️ Fix multiple matching columns test
* ✔️ Removing `skip` from the last test
* fix: Allow pasting a big workflow (#6760)
* fix: pasting a big workflow
* chore: update comment
* refactor: move try/catch to function
* refactor: move try/catch to function
* fix(editor): Fix modal layer width
* fix: fix position changes
* fix: undo it.only
* fix: make undo/redo multiple steps more verbose
* fix: Fix value survey styles (#6764)
* fix: fix value survey styles
* fix: lint
* Revert "fix: lint"
72869c431f1448861df021be041b61c62f1e3118
* fix: lint
* fix(editor): Close tags dropdown when modal is opened
* ✔️ Updating tag selectors in e2e tests
* ✔️ Using tab to blur dropdown after adding tags
* ✔️ Clicking on the New Tab button instead of the tags dropdown to open it
* Reverting merge changes added by mistake
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
Co-authored-by: Csaba Tuncsik <csaba@n8n.io>
Co-authored-by: OlegIvaniv <me@olegivaniv.com>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
Co-authored-by: Mutasem Aldmour <4711238+mutdmour@users.noreply.github.com>
* fix: Show NodeIcon tooltips by removing pointer-events: none (#6777)
fix: show NodeIcon tooltips by removing pointer-events: none
* fix: Respect set modal widths (#6771)
* feat: remove vue-fragment (no-changelog)
* feat: partial design-system migration
* feat: migrate info-accordion and info-tip components
* feat: migrate several components to vue 3
* feat: migrated several components
* feat: migrate several components
* feat: migrate several components
* feat: migrate several components
* feat: re-exported all design system components
* fix: fix design for popper components
* fix: editor kind of working, lots of issues to fix
* fix: fix several vue 3 migration issues
* fix: replace @change with @update:modelValue in several places
* fix: fix translation linking
* fix: fix inline-edit input
* fix: fix ndv and dialog design
* fix: update parameter input event bindings
* fix: rename deprecated lifecycle methods
* fix: fix json view mapping
* build: update lock file
* fix(editor): revisit last conflict with master and fix issues
* fix(editor): revisit last conflict with master and fix issues
* fix: fix expression editor bug causing code mirror to no longer be reactive
* fix: fix resource locator bug
* fix: fix vue-agile integration
* fix: remove global import for vue-agile
* fix: replace element-plus buttons with n8n-buttons everywhere
* fix(editor): Fix various element-plus styles (#6571)
* fix(editor): Fix various element-plus styles
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Remove debugging code
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Address PR comments
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): Fix loading in production mode [Vue 3] (#6578)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): First round of e2e tests fixes with Vue 3 (#6579)
* fix(editor): Fix broken smoke and workflow list e2e tests
* ✔️ Fix failing canvas action tests. Updating some selectors used in credentials and workflow tests
* feat: add vue 3 eslint rules and fix issues
* fix: fix tags-dropdown
* fix: fix white-space issues caused by i18n-t
* fix: rename non-generic click events
* fix: fix search in resources list layout
* fix: fix datatable paginator
* fix: fix popper select caret and dropdown size
* fix: add width to action-dropdown
* fix: fix workflow settings icon not being hidden
* fix: refactor newly added code
* fix: fix merge issue
* fix: fix ndv credentials watcher
* fix: fix workflow saving and grabber notch
* fix: fix nodes list panel transition
* fix: fix node title visibility
* fix: fix data unpinning
* fix: fix value access
* fix: show input panel only if trigger panel enabled or not trigger node
* fix: fix tags dropdown and executions status spcing
* fix(editor): Prevent execution list to load back when leaving the route (#6697)
fix(editor): prevent execution list to load back when leaving the route
* fix: fix drawer visibility
* fix: fix expression toggle padding
* fix: fix expressions editor styling
* chore: prepare for testing
* fix: fix styling for el-button without patching
* test: fix unit tests in design-system
* test: fix most unit tests
* fix: remove import cycle.
* fix: fix personalization modal tests
* fix further resource mapper test adjustments
* fix: fix multiple tests and n8n-route attr duplication
* fix: fix source control tets
* fix: fixed remaining unit tests
* fix: fix workflows and credentials e2e tests
* fix: fix localizeNodeNames
* fix: update ndv e2e tests
* fix: fix popper left placement arrow
* fix: fix 5-ndv e2e tests
* fix: fix 6-code-node e2e tests
* fix(editor): Drop click outside directive from NodeCreator (#6716)
* fix(editor): Drop click outside directive from NodeCreator
* fix(editor): make sure mouseup outside is unbound at least before the component is unmounted
* fix: fix 10-settings-log-streaming e2e tests
* fix: fix node redrawing
* fix: fix tooltip buttons styling
* fix: fix varous e2e suites
* fix: fix 15-scheduler-node e2e suite
* fix: fix route watcher
* fix: fixed param name update and credential edit
* feat: update event names
* refactor: Remove deprecated `$data` (#6576)
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix: fix 17-sharing e2e suite
* fix: fix tags dropdown
* fix: fix tags manager
* fix(editor): move :deep selectors to a separate scoped style block
* fix: fix sticky component and inline text edit
* fix: update e2e tests
* fix: remove button override references
* fix(editor): Adjust spacing in templates for Vue 3 (#6744)
* fix(editor): Adjust spacing in templates
* fix: Undo unneeded change
* fix: Undo unneeded change
* fix(editor): Adjust NDV height for Vue 3 (#6742)
fix(editor): Adjust NDV height
* fix(editor): Restore collapsed sidebar items for Vue 3 (#6743)
fix(editor): Restore collapsed sidebar items
* fix: fix linting issues
* fix: fix design-system deps
* fix: post-merge fixes
* fix: update tests
* fix: increase timeout for executionslist tets
* chore: fix linting issue
* fix: fix 14-mapping e2e tests in ci
* fix: re-enable tests
* fix: fix workflow duplication e2e tests after tags update
* fix(editor): Change component prop to be typed
* fix: fix tags dropdown in duplicate wf modal
* fix: fix focus behaviour in tags selector
* fix: fix tag creation
* fix: fix log streaming e2e race condition
* fix(editor): Fix Vue 3 linting issues (#6748)
* fix(editor): Fix Vue 3 linting issues
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix MainSidebar linter issues
* revert pnpm lock
* update pnpm lock file
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix(editor): Some css fixes for vue3 branch (#6749)
* ✨ Fixing filter button height
* ✨ Update input modal button position
* ✨ Updating tags styling
* ✨ Fix event logging settings spacing
* 👕 Fixing lint errors
* fix: fix linting issues
* Revert to `// eslint-disable-next-line @typescript-eslint/no-misused-promises` disabling of mixins init
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix: fix css issue
* fix(editor): Lint fix
* fix(editor): Fix settings initialisation (#6750)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix: fix initial settings loading
* fix: replace realClick with click force
* fix: fix randomly failing mapping e2e tests
* fix(editor): Fix menu item event handling
* fix: fix resource filters dropdown events (#6752)
* fix: fix resource filters dropdown events
* fix: remove teleported:false
* fix: fix event selection event naming (#6753)
* fix: removed console.log (#6754)
* fix: rever await nextTick changes
* fix: redo linting changes
* fix(editor): Redraw node connections if adding more than one node to canvas (#6755)
* fix(editor): Redraw node connections if adding more than one node to canvas
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Update position before connection two nodes
* Lint fix
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
* fix(editor): Fix `ResourceMapper` unit tests (#6758)
* ✔️ Fix matching columns test
* ✔️ Fix multiple matching columns test
* ✔️ Removing `skip` from the last test
* fix: Allow pasting a big workflow (#6760)
* fix: pasting a big workflow
* chore: update comment
* refactor: move try/catch to function
* refactor: move try/catch to function
* fix(editor): Fix modal layer width
* fix: fix position changes
* fix: undo it.only
* fix: make undo/redo multiple steps more verbose
* fix: Fix value survey styles (#6764)
* fix: fix value survey styles
* fix: lint
* Revert "fix: lint"
72869c431f1448861df021be041b61c62f1e3118
* fix: lint
* fix(editor): Fix collapsed sub menu
* fix: Fix drawer animation (#6767)
fix: drawer animation
* fix(editor): Fix source control buttons (#6769)
* fix: Respect modal width
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
Co-authored-by: Csaba Tuncsik <csaba@n8n.io>
Co-authored-by: OlegIvaniv <me@olegivaniv.com>
Co-authored-by: Milorad FIlipović <milorad@n8n.io>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
* fix(editor): Fix tooltip opening delay prop name (#6776)
fix(editor): fix tooltip opening delay prop name
* fix(editor): Fix collapsed sub menu elements (#6778)
* fix: Remove number input arrows (no-changelog) (#6782)
fix: remove number input arrows
* ci: Update most of the dev tooling (no-changelog) (#6780)
* fix(TheHive Node): Treat `ApiKey` as a secret (#6786)
* test(editor): Prevent node view unload by default in e2e run (#6787)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): Resolve vue 3 related console-warnings (#6779)
* fix(editor): Resolve vue 3 related console-warnings
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Use span as component wrapper instead of div
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Wrap popover component in span
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(editor): Vue3 - Fix modal positioning and multi-select tag sizing (#6783)
* ✨ Updating modals positioning within the overlay
* 💄 Implemented multi-select variant with small tabs
* ✔️ Removing password link clicks while modal is open in e2e tests
* Set generous timeout for $paramter resolve
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: Oleg Ivaniv <me@olegivaniv.com>
* ci: Fix linting issues (no-changelog) (#6788)
* ci: Fix linting (no-changelog)
* lintfix for nodes-base as well
* fix(editor): Fix code node highlight error (#6791)
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* feat(core): Credentials for popular SecOps services, Part 1 (#6775)
* refactor: Clear unused ESLint directives from BE packages (no-changelog) (#6798)
* refactor(core): Cache workflow ownership (#6738)
* refactor: Set up ownership service
* refactor: Specify cache keys and values
* refactor: Replace util with service calls
* test: Mock service in tests
* refactor: Use dependency injection
* test: Write tests
* refactor: Apply feedback from Omar and Micha
* test: Fix tests
* test: Fix missing spot
* refactor: Return user entity from cache
* refactor: More dependency injection!
* fix(editor): Prevent text edit dialog from re-opening in same tick (#6781)
* fix: prevent reopenning textedit dialog in same tick
* fix: add same logic for code edit dialog
* fix: remove stop modifier
* fix: blur input field when closing modal, removing default element-plus behaviour
* test(editor): Do not chain invoke calls after assertions in 24-ndv-paired-item e2e spec (no-changelog) (#6800)
* test(editor): Do not chaing invoke calls after assertions in 24-ndv-paired-item e2e spec
* Do not chaing realHover after assertion
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Remove .only
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix(Todoist Node): Fix issue with section id being ignored (#6799)
* test(editor): Add canvas actions E2E tests (#6723) (#6790)
* test(editor): Add canvas actions E2E tests (#6723)
* test(editor): Add canvas actions E2E tests
* test(editor): Open category items in node creator when category dropped on canvas
* test(editor): Have new position counted only once in drag
* test(editor): rename test
(cherry picked from commit 052d82b2208c1b2e6f62c6004822c6278c15278b)
* test: fix drag positioning
* fix(core): Add missing primary key on the `execution_data` table on postgres (#6797)
* fix: Review fixes
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* fix: Fin locales
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Fix merging errors
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Map erros based on statusCode
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Fix code replacing
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Fix code formatting
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Address review points
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Optionally access total_tokens
* Clean-up Ask AI modal
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Store prompt in sessionStorage
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Improve schema generation, only get parent nodes
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Send error messages to telemetry, aske before switching tabs
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Add locale
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Post-merge cleanup
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Move Ask AI into separate folder
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Lint fix
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Constants lint fix
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Add Ask AI e2e tests and fix linting issues
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Move CircleLoader to design-lib
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Replace circle-lodaer and move el-tabs styles to n8n theme
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Fix placeholder & e2e tests
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
* Remove old CircleLoader
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
---------
Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Alex Grozav <alex@grozav.com>
Co-authored-by: Romain Dunand <romain@1-more-thing.com>
Co-authored-by: Jon <jonathan.bennetts@gmail.com>
Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <netroy@users.noreply.github.com>
Co-authored-by: Csaba Tuncsik <csaba@n8n.io>
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: Michael Auerswald <michael.auerswald@gmail.com>
Co-authored-by: Milorad FIlipović <milorad@n8n.io>
Co-authored-by: Michael Kret <michael.k@radency.com>
Co-authored-by: Val <68596159+valya@users.noreply.github.com>
Co-authored-by: Marcus <56945030+maspio@users.noreply.github.com>
Co-authored-by: Jordan Hall <Jordan@libertyware.co.uk>
Co-authored-by: qg-horie <36725144+qg-horie@users.noreply.github.com>
Co-authored-by: Ricardo Espinoza <ricardo@n8n.io>
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
Co-authored-by: Ali Afsharzadeh <afsharzadeh8@gmail.com>
Co-authored-by: Giulio Andreini <g.andreini@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Mutasem Aldmour <4711238+mutdmour@users.noreply.github.com>
2023-08-16 04:08:10 -07:00
ai : {
enabled : {
doc : 'Whether AI features are enabled' ,
format : Boolean ,
default : false ,
env : 'N8N_AI_ENABLED' ,
} ,
} ,
2023-09-14 02:34:51 -07:00
2023-09-21 05:57:45 -07:00
expression : {
evaluator : {
doc : 'Expression evaluator to use' ,
format : [ 'tmpl' , 'tournament' ] as const ,
default : 'tournament' ,
env : 'N8N_EXPRESSION_EVALUATOR' ,
} ,
reportDifference : {
doc : 'Whether to report differences in the evaluator outputs' ,
format : Boolean ,
default : false ,
env : 'N8N_EXPRESSION_REPORT_DIFFERENCE' ,
} ,
} ,
2023-09-14 02:34:51 -07:00
sourceControl : {
defaultKeyPairType : {
doc : 'Default SSH key type to use when generating SSH keys' ,
format : [ 'rsa' , 'ed25519' ] as const ,
default : 'ed25519' ,
env : 'N8N_SOURCECONTROL_DEFAULT_SSH_KEY_TYPE' ,
} ,
} ,
2023-10-04 05:57:21 -07:00
workflowHistory : {
enabled : {
doc : 'Whether to save workflow history versions' ,
format : Boolean ,
default : true ,
env : 'N8N_WORKFLOW_HISTORY_ENABLED' ,
} ,
pruneTime : {
doc : 'Time (in hours) to keep workflow history versions for' ,
format : Number ,
default : - 1 ,
env : 'N8N_WORKFLOW_HISTORY_PRUNE_TIME' ,
} ,
} ,
2022-04-08 10:37:27 -07:00
} ;