Skip to content

Commit 06c3aab

Browse files
authored
Merge branch 'main' into dependabot/npm_and_yarn/compiler/zx-8.8.5
2 parents 9dfb06f + 0b0bd97 commit 06c3aab

26 files changed

+1828
-101
lines changed

compiler/src/model/utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,9 @@ export function parseJsDocTags (jsDoc: JSDoc[]): Record<string, string> {
10741074
value: tag.getComment() ?? ''
10751075
}
10761076
})
1077-
const mapped = tags.reduce((acc, curr) => ({ ...acc, [curr.name]: curr.value }), {})
1077+
// Ignore UpdateForV10 which is only useful at the eslint level
1078+
const filteredTags = tags.filter(tag => tag.name !== 'UpdateForV10')
1079+
const mapped = filteredTags.reduce((acc, curr) => ({ ...acc, [curr.name]: curr.value }), {})
10781080
return mapped
10791081
}
10801082

output/openapi/elasticsearch-openapi.json

Lines changed: 27 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 59 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)