Skip to content

Commit bf13cba

Browse files
(compat) Incremenent layer compat generation for Fluid layers (#25836)
This change updates the `generation` for the Fluid layerss. The generation should be incremented every month and should automatically happen during a minor or major release. That work is in progress, so until then, manually updating the generation. It has been 3+ months since the last generation (1) so incrementing it to 2.
1 parent 96e58d1 commit bf13cba

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

packages/drivers/local-driver/src/localLayerCompatState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const localDriverCompatDetailsForLoader: ILayerCompatDetails = {
1919
/**
2020
* The current generation of the Local Driver layer.
2121
*/
22-
generation: 1,
22+
generation: 2,
2323
/**
2424
* The features supported by the Local Driver layer across the Driver / Loader boundary.
2525
*/

packages/drivers/odsp-driver/src/odspLayerCompatState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const odspDriverCompatDetailsForLoader: ILayerCompatDetails = {
1919
/**
2020
* The current generation of the ODSP Driver layer.
2121
*/
22-
generation: 1,
22+
generation: 2,
2323
/**
2424
* The features supported by the ODSP Driver layer across the Driver / Loader boundary.
2525
*/

packages/drivers/routerlicious-driver/src/r11sLayerCompatState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const r11sDriverCompatDetailsForLoader: ILayerCompatDetails = {
1919
/**
2020
* The current generation of the Routerlicious Driver layer.
2121
*/
22-
generation: 1,
22+
generation: 2,
2323
/**
2424
* The features supported by the Routerlicious Driver layer across the Driver / Loader boundary.
2525
*/

packages/loader/container-loader/src/loaderLayerCompatState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const loaderCoreCompatDetails = {
2727
/**
2828
* The current generation of the Loader layer.
2929
*/
30-
generation: 1,
30+
generation: 2,
3131
};
3232

3333
/**

packages/runtime/container-runtime/src/runtimeLayerCompatState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const runtimeCoreCompatDetails = {
3131
/**
3232
* The current generation of the Runtime layer.
3333
*/
34-
generation: 1,
34+
generation: 2,
3535
} as const;
3636

3737
/**

packages/runtime/datastore/src/dataStoreLayerCompatState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export const dataStoreCoreCompatDetails = {
2626
/**
2727
* The current generation of the Runtime layer.
2828
*/
29-
generation: 1,
29+
generation: 2,
3030
};
3131

3232
/**

0 commit comments

Comments
 (0)