Merge branch 'backstage:master' into auth-okta-provider

This commit is contained in:
Josh Uvi
2023-11-15 15:36:27 +00:00
committed by GitHub
5 changed files with 931 additions and 868 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Fix issue with Circular JSON dependencies in templating
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-bitbucket-cloud-common': patch
---
Updated dependency `ts-morph` to `^20.0.0`.
+1 -1
View File
@@ -41,7 +41,7 @@
"@backstage/cli": "workspace:^",
"@openapitools/openapi-generator-cli": "^2.4.26",
"msw": "^1.0.0",
"ts-morph": "^17.0.0"
"ts-morph": "^20.0.0"
},
"files": [
"dist"
@@ -290,14 +290,15 @@ export class NunjucksWorkflowRunner implements WorkflowRunner {
input: step.input
? this.render(
step.input,
{ ...context, ...i, ...task },
{ ...context, secrets: task.secrets ?? {}, ...i },
renderTemplate,
)
: {},
}));
for (const iteration of iterations) {
const actionId =
action.id + (iteration.each ? `[${iteration.each.key}]` : '');
const actionId = `${action.id}${
iteration.each ? `[${iteration.each.key}]` : ''
}`;
if (action.schema?.input) {
const validateResult = validateJsonSchema(
+916 -864
View File
File diff suppressed because it is too large Load Diff