mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix(core): Fix named parameter resolution in migrations (#7688)
Fixes #7628
This commit is contained in:
parent
91c3ea87fe
commit
4441ed5116
|
@ -20,11 +20,10 @@ export class UniqueWorkflowNames1620821879465 implements ReversibleMigration {
|
||||||
await Promise.all(
|
await Promise.all(
|
||||||
duplicates.map(async (workflow, index) => {
|
duplicates.map(async (workflow, index) => {
|
||||||
if (index === 0) return;
|
if (index === 0) return;
|
||||||
return runQuery(
|
return runQuery(`UPDATE ${tableName} SET name = :name WHERE id = :id`, {
|
||||||
`UPDATE ${tableName} SET name = :name WHERE id = :id`,
|
name: `${workflow.name} ${index + 1}`,
|
||||||
{ name: `${workflow.name} ${index + 1}` },
|
id: workflow.id,
|
||||||
{ id: workflow.id },
|
});
|
||||||
);
|
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -42,11 +42,10 @@ export class UpdateWorkflowCredentials1630330987096 implements ReversibleMigrati
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (credentialsUpdated) {
|
if (credentialsUpdated) {
|
||||||
await runQuery(
|
await runQuery(`UPDATE ${workflowsTable} SET nodes = :nodes WHERE id = :id`, {
|
||||||
`UPDATE ${workflowsTable} SET nodes = :nodes WHERE id = :id`,
|
nodes: JSON.stringify(nodes),
|
||||||
{ nodes: JSON.stringify(nodes) },
|
id: workflow.id,
|
||||||
{ id: workflow.id },
|
});
|
||||||
);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -79,8 +78,7 @@ export class UpdateWorkflowCredentials1630330987096 implements ReversibleMigrati
|
||||||
await runQuery(
|
await runQuery(
|
||||||
`UPDATE ${executionsTable}
|
`UPDATE ${executionsTable}
|
||||||
SET ${escape.columnName('workflowData')} = :data WHERE id = :id`,
|
SET ${escape.columnName('workflowData')} = :data WHERE id = :id`,
|
||||||
{ data: JSON.stringify(workflowData) },
|
{ data: JSON.stringify(workflowData), id: execution.id },
|
||||||
{ id: execution.id },
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -114,8 +112,7 @@ export class UpdateWorkflowCredentials1630330987096 implements ReversibleMigrati
|
||||||
await runQuery(
|
await runQuery(
|
||||||
`UPDATE ${executionsTable}
|
`UPDATE ${executionsTable}
|
||||||
SET ${escape.columnName('workflowData')} = :data WHERE id = :id`,
|
SET ${escape.columnName('workflowData')} = :data WHERE id = :id`,
|
||||||
{ data: JSON.stringify(workflowData) },
|
{ data: JSON.stringify(workflowData), id: execution.id },
|
||||||
{ id: execution.id },
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -160,11 +157,10 @@ export class UpdateWorkflowCredentials1630330987096 implements ReversibleMigrati
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (credentialsUpdated) {
|
if (credentialsUpdated) {
|
||||||
await runQuery(
|
await runQuery(`UPDATE ${workflowsTable} SET nodes = :nodes WHERE id = :id`, {
|
||||||
`UPDATE ${workflowsTable} SET nodes = :nodes WHERE id = :id`,
|
nodes: JSON.stringify(nodes),
|
||||||
{ nodes: JSON.stringify(nodes) },
|
id: workflow.id,
|
||||||
{ id: workflow.id },
|
});
|
||||||
);
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -206,8 +202,7 @@ export class UpdateWorkflowCredentials1630330987096 implements ReversibleMigrati
|
||||||
await runQuery(
|
await runQuery(
|
||||||
`UPDATE ${executionsTable}
|
`UPDATE ${executionsTable}
|
||||||
SET ${escape.columnName('workflowData')} = :data WHERE id = :id`,
|
SET ${escape.columnName('workflowData')} = :data WHERE id = :id`,
|
||||||
{ data: JSON.stringify(workflowData) },
|
{ data: JSON.stringify(workflowData), id: execution.id },
|
||||||
{ id: execution.id },
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -249,8 +244,7 @@ export class UpdateWorkflowCredentials1630330987096 implements ReversibleMigrati
|
||||||
await runQuery(
|
await runQuery(
|
||||||
`UPDATE ${executionsTable}
|
`UPDATE ${executionsTable}
|
||||||
SET ${escape.columnName('workflowData')} = :data WHERE id = :id`,
|
SET ${escape.columnName('workflowData')} = :data WHERE id = :id`,
|
||||||
{ data: JSON.stringify(workflowData) },
|
{ data: JSON.stringify(workflowData), id: execution.id },
|
||||||
{ id: execution.id },
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
|
@ -18,11 +18,10 @@ export class AddNodeIds1658930531669 implements ReversibleMigration {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
await runQuery(
|
await runQuery(`UPDATE ${tableName} SET nodes = :nodes WHERE id = :id`, {
|
||||||
`UPDATE ${tableName} SET nodes = :nodes WHERE id = :id`,
|
nodes: JSON.stringify(nodes),
|
||||||
{ nodes: JSON.stringify(nodes) },
|
id: workflow.id,
|
||||||
{ id: workflow.id },
|
});
|
||||||
);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -33,11 +32,10 @@ export class AddNodeIds1658930531669 implements ReversibleMigration {
|
||||||
await runInBatches<Workflow>(workflowsQuery, async (workflows) => {
|
await runInBatches<Workflow>(workflowsQuery, async (workflows) => {
|
||||||
workflows.forEach(async (workflow) => {
|
workflows.forEach(async (workflow) => {
|
||||||
const nodes = parseJson(workflow.nodes).map(({ id, ...rest }) => rest);
|
const nodes = parseJson(workflow.nodes).map(({ id, ...rest }) => rest);
|
||||||
await runQuery(
|
await runQuery(`UPDATE ${tableName} SET nodes = :nodes WHERE id = :id`, {
|
||||||
`UPDATE ${tableName} SET nodes = :nodes WHERE id = :id`,
|
nodes: JSON.stringify(nodes),
|
||||||
{ nodes: JSON.stringify(nodes) },
|
id: workflow.id,
|
||||||
{ id: workflow.id },
|
});
|
||||||
);
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,11 +12,10 @@ export class AddWorkflowVersionIdColumn1669739707124 implements ReversibleMigrat
|
||||||
|
|
||||||
const workflowIds: Workflow[] = await runQuery(`SELECT id FROM ${tableName}`);
|
const workflowIds: Workflow[] = await runQuery(`SELECT id FROM ${tableName}`);
|
||||||
for (const { id } of workflowIds) {
|
for (const { id } of workflowIds) {
|
||||||
await runQuery(
|
await runQuery(`UPDATE ${tableName} SET ${columnName} = :versionId WHERE id = :id`, {
|
||||||
`UPDATE ${tableName} SET ${columnName} = :versionId WHERE id = :id`,
|
versionId: uuidv4(),
|
||||||
{ versionId: uuidv4() },
|
id,
|
||||||
{ id },
|
});
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -47,11 +47,10 @@ export class PurgeInvalidWorkflowConnections1675940580449 implements Irreversibl
|
||||||
});
|
});
|
||||||
|
|
||||||
// Update database with new connections
|
// Update database with new connections
|
||||||
return runQuery(
|
return runQuery(`UPDATE ${workflowsTable} SET connections = :connections WHERE id = :id`, {
|
||||||
`UPDATE ${workflowsTable} SET connections = :connections WHERE id = :id`,
|
connections: JSON.stringify(connections),
|
||||||
{ connections: JSON.stringify(connections) },
|
id: workflow.id,
|
||||||
{ id: workflow.id },
|
});
|
||||||
);
|
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,11 +22,7 @@ export interface MigrationContext {
|
||||||
tableName(name: string): string;
|
tableName(name: string): string;
|
||||||
indexName(name: string): string;
|
indexName(name: string): string;
|
||||||
};
|
};
|
||||||
runQuery<T>(
|
runQuery<T>(sql: string, namedParameters?: ObjectLiteral): Promise<T>;
|
||||||
sql: string,
|
|
||||||
unsafeParameters?: ObjectLiteral,
|
|
||||||
nativeParameters?: ObjectLiteral,
|
|
||||||
): Promise<T>;
|
|
||||||
runInBatches<T>(
|
runInBatches<T>(
|
||||||
query: string,
|
query: string,
|
||||||
operation: (results: T[]) => Promise<void>,
|
operation: (results: T[]) => Promise<void>,
|
||||||
|
|
|
@ -110,16 +110,12 @@ const createContext = (queryRunner: QueryRunner, migration: Migration): Migratio
|
||||||
tableName: (name) => queryRunner.connection.driver.escape(`${tablePrefix}${name}`),
|
tableName: (name) => queryRunner.connection.driver.escape(`${tablePrefix}${name}`),
|
||||||
indexName: (name) => queryRunner.connection.driver.escape(`IDX_${tablePrefix}${name}`),
|
indexName: (name) => queryRunner.connection.driver.escape(`IDX_${tablePrefix}${name}`),
|
||||||
},
|
},
|
||||||
runQuery: async <T>(
|
runQuery: async <T>(sql: string, namedParameters?: ObjectLiteral) => {
|
||||||
sql: string,
|
if (namedParameters) {
|
||||||
unsafeParameters?: ObjectLiteral,
|
|
||||||
safeParameters?: ObjectLiteral,
|
|
||||||
) => {
|
|
||||||
if (unsafeParameters) {
|
|
||||||
const [query, parameters] = queryRunner.connection.driver.escapeQueryWithParameters(
|
const [query, parameters] = queryRunner.connection.driver.escapeQueryWithParameters(
|
||||||
sql,
|
sql,
|
||||||
unsafeParameters,
|
namedParameters,
|
||||||
safeParameters ?? {},
|
{},
|
||||||
);
|
);
|
||||||
return queryRunner.query(query, parameters) as Promise<T>;
|
return queryRunner.query(query, parameters) as Promise<T>;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue