Skip to content

Commit 99be964

Browse files
authored
chore(shared-data): lock in command schema 13 for RS 8.5.0, bump other changes to 14.json (#18475)
# Overview We just cut `chore_release-8.5.0`, which is a limited cherrypick release. We need to lock command schema `13.json` to the version of the file that we're releasing in RS 8.5.0, and move all other changes to the new `14.json`. Note that this change is going into `chore_release-pd-8.5.0`. Again, our strategy is that changes should flow from `chore_release-pd-8.5.0 -> edge`. ## Test Plan and Hands on Testing Will rely on CI testing. ## Risk assessment Medium.
1 parent d5c7f2a commit 99be964

File tree

3 files changed

+7374
-333
lines changed

3 files changed

+7374
-333
lines changed

shared-data/command/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ import commandSchemaV10 from './schemas/10.json'
55
import commandSchemaV11 from './schemas/11.json'
66
import commandSchemaV12 from './schemas/12.json'
77
import commandSchemaV13 from './schemas/13.json'
8+
import commandSchemaV14 from './schemas/14.json'
89

910
export * from './types/index'
10-
export const commandSchemaLatest = commandSchemaV13
11+
export const commandSchemaLatest = commandSchemaV14
1112

1213
export {
1314
commandSchemaV7,
@@ -17,4 +18,5 @@ export {
1718
commandSchemaV11,
1819
commandSchemaV12,
1920
commandSchemaV13,
21+
commandSchemaV14,
2022
}

0 commit comments

Comments
 (0)