Skip to content

Commit 296f8ae

Browse files
authored
Update type tests (#23235)
Update type tests.
1 parent 18036ea commit 296f8ae

File tree

64 files changed

+795
-777
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+795
-777
lines changed

azure/packages/azure-service-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"@arethetypeswrong/cli": "^0.16.4",
9898
"@biomejs/biome": "~1.9.3",
9999
"@fluid-tools/build-cli": "^0.51.0",
100-
"@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.10.0",
100+
"@fluidframework/azure-service-utils-previous": "npm:@fluidframework/azure-service-utils@2.11.0",
101101
"@fluidframework/build-common": "^2.0.3",
102102
"@fluidframework/build-tools": "^0.51.0",
103103
"@fluidframework/eslint-config-fluid": "^5.6.0",

experimental/dds/attributable-map/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
"devDependencies": {
102102
"@arethetypeswrong/cli": "^0.16.4",
103103
"@biomejs/biome": "~1.9.3",
104-
"@fluid-experimental/attributable-map-previous": "npm:@fluid-experimental/attributable-map@2.10.0",
104+
"@fluid-experimental/attributable-map-previous": "npm:@fluid-experimental/attributable-map@2.11.0",
105105
"@fluid-internal/mocha-test-setup": "workspace:~",
106106
"@fluid-private/stochastic-test-utils": "workspace:~",
107107
"@fluid-private/test-dds-utils": "workspace:~",

packages/common/client-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"devDependencies": {
136136
"@arethetypeswrong/cli": "^0.16.4",
137137
"@biomejs/biome": "~1.9.3",
138-
"@fluid-internal/client-utils-previous": "npm:@fluid-internal/client-utils@2.10.0",
138+
"@fluid-internal/client-utils-previous": "npm:@fluid-internal/client-utils@2.11.0",
139139
"@fluid-internal/mocha-test-setup": "workspace:~",
140140
"@fluid-tools/build-cli": "^0.51.0",
141141
"@fluidframework/build-common": "^2.0.3",

packages/common/client-utils/src/test/types/validateClientUtilsPrevious.generated.ts

+9
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,15 @@ declare type current_as_old_for_ClassStatics_Trace = requireAssignableTo<TypeOnl
123123
*/
124124
declare type current_as_old_for_ClassStatics_TypedEventEmitter = requireAssignableTo<TypeOnly<typeof current.TypedEventEmitter>, TypeOnly<typeof old.TypedEventEmitter>>
125125

126+
/*
127+
* Validate backward compatibility by using the current type in place of the old type.
128+
* If this test starts failing, it indicates a change that is not backward compatible.
129+
* To acknowledge the breaking change, add the following to package.json under
130+
* typeValidation.broken:
131+
* "Function_createEmitter": {"backCompat": false}
132+
*/
133+
declare type current_as_old_for_Function_createEmitter = requireAssignableTo<TypeOnly<typeof current.createEmitter>, TypeOnly<typeof old.createEmitter>>
134+
126135
/*
127136
* Validate backward compatibility by using the current type in place of the old type.
128137
* If this test starts failing, it indicates a change that is not backward compatible.

packages/common/container-definitions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
"@fluid-tools/build-cli": "^0.51.0",
103103
"@fluidframework/build-common": "^2.0.3",
104104
"@fluidframework/build-tools": "^0.51.0",
105-
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.10.0",
105+
"@fluidframework/container-definitions-previous": "npm:@fluidframework/container-definitions@2.11.0",
106106
"@fluidframework/eslint-config-fluid": "^5.6.0",
107107
"@microsoft/api-extractor": "7.47.8",
108108
"concurrently": "^8.2.1",

packages/common/core-interfaces/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
"@fluid-tools/build-cli": "^0.51.0",
9999
"@fluidframework/build-common": "^2.0.3",
100100
"@fluidframework/build-tools": "^0.51.0",
101-
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.10.0",
101+
"@fluidframework/core-interfaces-previous": "npm:@fluidframework/core-interfaces@2.11.0",
102102
"@fluidframework/eslint-config-fluid": "^5.6.0",
103103
"@microsoft/api-extractor": "7.47.8",
104104
"@types/node": "^18.19.0",

packages/common/core-interfaces/src/test/types/validateCoreInterfacesPrevious.generated.ts

+63
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,15 @@ declare type old_as_current_for_Interface_IThrottlingWarning = requireAssignable
384384
*/
385385
declare type current_as_old_for_Interface_IThrottlingWarning = requireAssignableTo<TypeOnly<current.IThrottlingWarning>, TypeOnly<old.IThrottlingWarning>>
386386

387+
/*
388+
* Validate backward compatibility by using the current type in place of the old type.
389+
* If this test starts failing, it indicates a change that is not backward compatible.
390+
* To acknowledge the breaking change, add the following to package.json under
391+
* typeValidation.broken:
392+
* "Interface_Listenable": {"backCompat": false}
393+
*/
394+
declare type current_as_old_for_Interface_Listenable = requireAssignableTo<TypeOnly<current.Listenable<never>>, TypeOnly<old.Listenable<never>>>
395+
387396
/*
388397
* Validate forward compatibility by using the old type in place of the current type.
389398
* If this test starts failing, it indicates a change that is not forward compatible.
@@ -546,6 +555,42 @@ declare type old_as_current_for_TypeAlias_IEventTransformer = requireAssignableT
546555
*/
547556
declare type current_as_old_for_TypeAlias_IEventTransformer = requireAssignableTo<TypeOnly<current.IEventTransformer<never,never>>, TypeOnly<old.IEventTransformer<never,never>>>
548557

558+
/*
559+
* Validate forward compatibility by using the old type in place of the current type.
560+
* If this test starts failing, it indicates a change that is not forward compatible.
561+
* To acknowledge the breaking change, add the following to package.json under
562+
* typeValidation.broken:
563+
* "TypeAlias_IsListener": {"forwardCompat": false}
564+
*/
565+
declare type old_as_current_for_TypeAlias_IsListener = requireAssignableTo<TypeOnly<old.IsListener<never>>, TypeOnly<current.IsListener<never>>>
566+
567+
/*
568+
* Validate backward compatibility by using the current type in place of the old type.
569+
* If this test starts failing, it indicates a change that is not backward compatible.
570+
* To acknowledge the breaking change, add the following to package.json under
571+
* typeValidation.broken:
572+
* "TypeAlias_IsListener": {"backCompat": false}
573+
*/
574+
declare type current_as_old_for_TypeAlias_IsListener = requireAssignableTo<TypeOnly<current.IsListener<never>>, TypeOnly<old.IsListener<never>>>
575+
576+
/*
577+
* Validate forward compatibility by using the old type in place of the current type.
578+
* If this test starts failing, it indicates a change that is not forward compatible.
579+
* To acknowledge the breaking change, add the following to package.json under
580+
* typeValidation.broken:
581+
* "TypeAlias_Listeners": {"forwardCompat": false}
582+
*/
583+
declare type old_as_current_for_TypeAlias_Listeners = requireAssignableTo<TypeOnly<old.Listeners<never>>, TypeOnly<current.Listeners<never>>>
584+
585+
/*
586+
* Validate backward compatibility by using the current type in place of the old type.
587+
* If this test starts failing, it indicates a change that is not backward compatible.
588+
* To acknowledge the breaking change, add the following to package.json under
589+
* typeValidation.broken:
590+
* "TypeAlias_Listeners": {"backCompat": false}
591+
*/
592+
declare type current_as_old_for_TypeAlias_Listeners = requireAssignableTo<TypeOnly<current.Listeners<never>>, TypeOnly<old.Listeners<never>>>
593+
549594
/*
550595
* Validate forward compatibility by using the old type in place of the current type.
551596
* If this test starts failing, it indicates a change that is not forward compatible.
@@ -564,6 +609,24 @@ declare type old_as_current_for_TypeAlias_LogLevel = requireAssignableTo<TypeOnl
564609
*/
565610
declare type current_as_old_for_TypeAlias_LogLevel = requireAssignableTo<TypeOnly<current.LogLevel>, TypeOnly<old.LogLevel>>
566611

612+
/*
613+
* Validate forward compatibility by using the old type in place of the current type.
614+
* If this test starts failing, it indicates a change that is not forward compatible.
615+
* To acknowledge the breaking change, add the following to package.json under
616+
* typeValidation.broken:
617+
* "TypeAlias_Off": {"forwardCompat": false}
618+
*/
619+
declare type old_as_current_for_TypeAlias_Off = requireAssignableTo<TypeOnly<old.Off>, TypeOnly<current.Off>>
620+
621+
/*
622+
* Validate backward compatibility by using the current type in place of the old type.
623+
* If this test starts failing, it indicates a change that is not backward compatible.
624+
* To acknowledge the breaking change, add the following to package.json under
625+
* typeValidation.broken:
626+
* "TypeAlias_Off": {"backCompat": false}
627+
*/
628+
declare type current_as_old_for_TypeAlias_Off = requireAssignableTo<TypeOnly<current.Off>, TypeOnly<old.Off>>
629+
567630
/*
568631
* Validate forward compatibility by using the old type in place of the current type.
569632
* If this test starts failing, it indicates a change that is not forward compatible.

packages/common/core-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
"@fluid-tools/build-cli": "^0.51.0",
125125
"@fluidframework/build-common": "^2.0.3",
126126
"@fluidframework/build-tools": "^0.51.0",
127-
"@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.10.0",
127+
"@fluidframework/core-utils-previous": "npm:@fluidframework/core-utils@2.11.0",
128128
"@fluidframework/eslint-config-fluid": "^5.6.0",
129129
"@microsoft/api-extractor": "7.47.8",
130130
"@types/mocha": "^9.1.1",

packages/common/driver-definitions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"@fluid-tools/build-cli": "^0.51.0",
9898
"@fluidframework/build-common": "^2.0.3",
9999
"@fluidframework/build-tools": "^0.51.0",
100-
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.10.0",
100+
"@fluidframework/driver-definitions-previous": "npm:@fluidframework/driver-definitions@2.11.0",
101101
"@fluidframework/eslint-config-fluid": "^5.6.0",
102102
"@microsoft/api-extractor": "7.47.8",
103103
"concurrently": "^8.2.1",

packages/dds/cell/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"@fluid-tools/build-cli": "^0.51.0",
116116
"@fluidframework/build-common": "^2.0.3",
117117
"@fluidframework/build-tools": "^0.51.0",
118-
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.10.0",
118+
"@fluidframework/cell-previous": "npm:@fluidframework/cell@2.11.0",
119119
"@fluidframework/container-definitions": "workspace:~",
120120
"@fluidframework/eslint-config-fluid": "^5.6.0",
121121
"@fluidframework/test-runtime-utils": "workspace:~",

packages/dds/counter/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"@fluidframework/build-common": "^2.0.3",
134134
"@fluidframework/build-tools": "^0.51.0",
135135
"@fluidframework/container-definitions": "workspace:~",
136-
"@fluidframework/counter-previous": "npm:@fluidframework/counter@2.10.0",
136+
"@fluidframework/counter-previous": "npm:@fluidframework/counter@2.11.0",
137137
"@fluidframework/eslint-config-fluid": "^5.6.0",
138138
"@fluidframework/test-runtime-utils": "workspace:~",
139139
"@microsoft/api-extractor": "7.47.8",

packages/dds/map/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
"@fluidframework/build-tools": "^0.51.0",
148148
"@fluidframework/container-definitions": "workspace:~",
149149
"@fluidframework/eslint-config-fluid": "^5.6.0",
150-
"@fluidframework/map-previous": "npm:@fluidframework/map@2.10.0",
150+
"@fluidframework/map-previous": "npm:@fluidframework/map@2.11.0",
151151
"@fluidframework/test-runtime-utils": "workspace:~",
152152
"@microsoft/api-extractor": "7.47.8",
153153
"@types/mocha": "^9.1.1",

packages/dds/matrix/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
"@fluidframework/build-tools": "^0.51.0",
151151
"@fluidframework/container-definitions": "workspace:~",
152152
"@fluidframework/eslint-config-fluid": "^5.6.0",
153-
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.10.0",
153+
"@fluidframework/matrix-previous": "npm:@fluidframework/matrix@2.11.0",
154154
"@fluidframework/test-runtime-utils": "workspace:~",
155155
"@microsoft/api-extractor": "7.47.8",
156156
"@tiny-calc/micro": "0.0.0-alpha.5",

packages/dds/merge-tree/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@
156156
"@fluidframework/build-common": "^2.0.3",
157157
"@fluidframework/build-tools": "^0.51.0",
158158
"@fluidframework/eslint-config-fluid": "^5.6.0",
159-
"@fluidframework/merge-tree-previous": "npm:@fluidframework/merge-tree@2.10.0",
159+
"@fluidframework/merge-tree-previous": "npm:@fluidframework/merge-tree@2.11.0",
160160
"@fluidframework/test-runtime-utils": "workspace:~",
161161
"@microsoft/api-extractor": "7.47.8",
162162
"@types/diff": "^3.5.1",

packages/dds/ordered-collection/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
"@fluidframework/build-common": "^2.0.3",
138138
"@fluidframework/build-tools": "^0.51.0",
139139
"@fluidframework/eslint-config-fluid": "^5.6.0",
140-
"@fluidframework/ordered-collection-previous": "npm:@fluidframework/ordered-collection@2.10.0",
140+
"@fluidframework/ordered-collection-previous": "npm:@fluidframework/ordered-collection@2.11.0",
141141
"@fluidframework/test-runtime-utils": "workspace:~",
142142
"@microsoft/api-extractor": "7.47.8",
143143
"@types/mocha": "^9.1.1",

packages/dds/register-collection/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@
135135
"@fluidframework/build-common": "^2.0.3",
136136
"@fluidframework/build-tools": "^0.51.0",
137137
"@fluidframework/eslint-config-fluid": "^5.6.0",
138-
"@fluidframework/register-collection-previous": "npm:@fluidframework/register-collection@2.10.0",
138+
"@fluidframework/register-collection-previous": "npm:@fluidframework/register-collection@2.11.0",
139139
"@fluidframework/test-runtime-utils": "workspace:~",
140140
"@microsoft/api-extractor": "7.47.8",
141141
"@types/mocha": "^9.1.1",

packages/dds/sequence/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
"@fluidframework/build-tools": "^0.51.0",
161161
"@fluidframework/container-definitions": "workspace:~",
162162
"@fluidframework/eslint-config-fluid": "^5.6.0",
163-
"@fluidframework/sequence-previous": "npm:@fluidframework/sequence@2.10.0",
163+
"@fluidframework/sequence-previous": "npm:@fluidframework/sequence@2.11.0",
164164
"@fluidframework/test-runtime-utils": "workspace:~",
165165
"@microsoft/api-extractor": "7.47.8",
166166
"@types/diff": "^3.5.1",

packages/dds/shared-object-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
"@fluidframework/build-common": "^2.0.3",
141141
"@fluidframework/build-tools": "^0.51.0",
142142
"@fluidframework/eslint-config-fluid": "^5.6.0",
143-
"@fluidframework/shared-object-base-previous": "npm:@fluidframework/shared-object-base@2.10.0",
143+
"@fluidframework/shared-object-base-previous": "npm:@fluidframework/shared-object-base@2.11.0",
144144
"@fluidframework/test-runtime-utils": "workspace:~",
145145
"@microsoft/api-extractor": "7.47.8",
146146
"@types/benchmark": "^2.1.0",

packages/dds/shared-summary-block/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
"@fluidframework/build-tools": "^0.51.0",
135135
"@fluidframework/container-definitions": "workspace:~",
136136
"@fluidframework/eslint-config-fluid": "^5.6.0",
137-
"@fluidframework/shared-summary-block-previous": "npm:@fluidframework/shared-summary-block@2.10.0",
137+
"@fluidframework/shared-summary-block-previous": "npm:@fluidframework/shared-summary-block@2.11.0",
138138
"@fluidframework/test-runtime-utils": "workspace:~",
139139
"@microsoft/api-extractor": "7.47.8",
140140
"@types/benchmark": "^2.1.0",

packages/dds/task-manager/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
"@fluidframework/build-common": "^2.0.3",
139139
"@fluidframework/build-tools": "^0.51.0",
140140
"@fluidframework/eslint-config-fluid": "^5.6.0",
141-
"@fluidframework/task-manager-previous": "npm:@fluidframework/task-manager@2.10.0",
141+
"@fluidframework/task-manager-previous": "npm:@fluidframework/task-manager@2.11.0",
142142
"@fluidframework/test-runtime-utils": "workspace:~",
143143
"@microsoft/api-extractor": "7.47.8",
144144
"@types/mocha": "^9.1.1",

packages/dds/tree/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
"@fluidframework/eslint-config-fluid": "^5.6.0",
187187
"@fluidframework/test-runtime-utils": "workspace:~",
188188
"@fluidframework/test-utils": "workspace:~",
189-
"@fluidframework/tree-previous": "npm:@fluidframework/tree@2.10.0",
189+
"@fluidframework/tree-previous": "npm:@fluidframework/tree@2.11.0",
190190
"@microsoft/api-extractor": "7.47.8",
191191
"@types/diff": "^3.5.1",
192192
"@types/easy-table": "^0.0.32",

packages/drivers/debugger/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@
9696
"@fluid-tools/build-cli": "^0.51.0",
9797
"@fluidframework/build-common": "^2.0.3",
9898
"@fluidframework/build-tools": "^0.51.0",
99-
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.10.0",
99+
"@fluidframework/debugger-previous": "npm:@fluidframework/debugger@2.11.0",
100100
"@fluidframework/eslint-config-fluid": "^5.6.0",
101101
"@microsoft/api-extractor": "7.47.8",
102102
"@types/node": "^18.19.0",

packages/drivers/driver-base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
"@fluid-tools/build-cli": "^0.51.0",
114114
"@fluidframework/build-common": "^2.0.3",
115115
"@fluidframework/build-tools": "^0.51.0",
116-
"@fluidframework/driver-base-previous": "npm:@fluidframework/driver-base@2.10.0",
116+
"@fluidframework/driver-base-previous": "npm:@fluidframework/driver-base@2.11.0",
117117
"@fluidframework/eslint-config-fluid": "^5.6.0",
118118
"@microsoft/api-extractor": "7.47.8",
119119
"@types/mocha": "^9.1.1",

packages/drivers/driver-web-cache/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
"@fluid-tools/build-cli": "^0.51.0",
104104
"@fluidframework/build-common": "^2.0.3",
105105
"@fluidframework/build-tools": "^0.51.0",
106-
"@fluidframework/driver-web-cache-previous": "npm:@fluidframework/driver-web-cache@2.10.0",
106+
"@fluidframework/driver-web-cache-previous": "npm:@fluidframework/driver-web-cache@2.11.0",
107107
"@fluidframework/eslint-config-fluid": "^5.6.0",
108108
"@microsoft/api-extractor": "7.47.8",
109109
"@types/jest": "29.5.3",

packages/drivers/file-driver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"@fluidframework/build-common": "^2.0.3",
8181
"@fluidframework/build-tools": "^0.51.0",
8282
"@fluidframework/eslint-config-fluid": "^5.6.0",
83-
"@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.10.0",
83+
"@fluidframework/file-driver-previous": "npm:@fluidframework/file-driver@2.11.0",
8484
"@microsoft/api-extractor": "7.47.8",
8585
"@types/node": "^18.19.0",
8686
"concurrently": "^8.2.1",

packages/drivers/local-driver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@
142142
"@fluidframework/build-common": "^2.0.3",
143143
"@fluidframework/build-tools": "^0.51.0",
144144
"@fluidframework/eslint-config-fluid": "^5.6.0",
145-
"@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.10.0",
145+
"@fluidframework/local-driver-previous": "npm:@fluidframework/local-driver@2.11.0",
146146
"@microsoft/api-extractor": "7.47.8",
147147
"@types/jsrsasign": "^10.5.12",
148148
"@types/mocha": "^9.1.1",

packages/drivers/odsp-driver-definitions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"@fluidframework/build-common": "^2.0.3",
9898
"@fluidframework/build-tools": "^0.51.0",
9999
"@fluidframework/eslint-config-fluid": "^5.6.0",
100-
"@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.10.0",
100+
"@fluidframework/odsp-driver-definitions-previous": "npm:@fluidframework/odsp-driver-definitions@2.11.0",
101101
"@microsoft/api-extractor": "7.47.8",
102102
"concurrently": "^8.2.1",
103103
"copyfiles": "^2.4.1",

packages/drivers/odsp-driver/package.json

+2-9
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
"@fluidframework/build-common": "^2.0.3",
139139
"@fluidframework/build-tools": "^0.51.0",
140140
"@fluidframework/eslint-config-fluid": "^5.6.0",
141-
"@fluidframework/odsp-driver-previous": "npm:@fluidframework/odsp-driver@2.10.0",
141+
"@fluidframework/odsp-driver-previous": "npm:@fluidframework/odsp-driver@2.11.0",
142142
"@microsoft/api-extractor": "7.47.8",
143143
"@types/mocha": "^9.1.1",
144144
"@types/node": "^18.19.0",
@@ -159,14 +159,7 @@
159159
"typescript": "~5.4.5"
160160
},
161161
"typeValidation": {
162-
"broken": {
163-
"TypeAlias_FetchTypeInternal": {
164-
"backCompat": false
165-
},
166-
"TypeAlias_FetchType": {
167-
"backCompat": false
168-
}
169-
},
162+
"broken": {},
170163
"entrypoint": "legacy"
171164
}
172165
}

packages/drivers/odsp-driver/src/test/types/validateOdspDriverPrevious.generated.ts

-2
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,6 @@ declare type old_as_current_for_TypeAlias_FetchType = requireAssignableTo<TypeOn
427427
* typeValidation.broken:
428428
* "TypeAlias_FetchType": {"backCompat": false}
429429
*/
430-
// @ts-expect-error compatibility expected to be broken
431430
declare type current_as_old_for_TypeAlias_FetchType = requireAssignableTo<TypeOnly<current.FetchType>, TypeOnly<old.FetchType>>
432431

433432
/*
@@ -446,7 +445,6 @@ declare type old_as_current_for_TypeAlias_FetchTypeInternal = requireAssignableT
446445
* typeValidation.broken:
447446
* "TypeAlias_FetchTypeInternal": {"backCompat": false}
448447
*/
449-
// @ts-expect-error compatibility expected to be broken
450448
declare type current_as_old_for_TypeAlias_FetchTypeInternal = requireAssignableTo<TypeOnly<current.FetchTypeInternal>, TypeOnly<old.FetchTypeInternal>>
451449

452450
/*

packages/drivers/odsp-urlResolver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"@fluidframework/build-common": "^2.0.3",
9191
"@fluidframework/build-tools": "^0.51.0",
9292
"@fluidframework/eslint-config-fluid": "^5.6.0",
93-
"@fluidframework/odsp-urlresolver-previous": "npm:@fluidframework/odsp-urlresolver@2.10.0",
93+
"@fluidframework/odsp-urlresolver-previous": "npm:@fluidframework/odsp-urlresolver@2.11.0",
9494
"@microsoft/api-extractor": "7.47.8",
9595
"@types/mocha": "^9.1.1",
9696
"@types/node": "^18.19.0",

packages/drivers/replay-driver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"@fluidframework/build-common": "^2.0.3",
8181
"@fluidframework/build-tools": "^0.51.0",
8282
"@fluidframework/eslint-config-fluid": "^5.6.0",
83-
"@fluidframework/replay-driver-previous": "npm:@fluidframework/replay-driver@2.10.0",
83+
"@fluidframework/replay-driver-previous": "npm:@fluidframework/replay-driver@2.11.0",
8484
"@microsoft/api-extractor": "7.47.8",
8585
"@types/nock": "^9.3.0",
8686
"@types/node": "^18.19.0",

packages/drivers/routerlicious-driver/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
"@fluidframework/build-common": "^2.0.3",
139139
"@fluidframework/build-tools": "^0.51.0",
140140
"@fluidframework/eslint-config-fluid": "^5.6.0",
141-
"@fluidframework/routerlicious-driver-previous": "npm:@fluidframework/routerlicious-driver@2.10.0",
141+
"@fluidframework/routerlicious-driver-previous": "npm:@fluidframework/routerlicious-driver@2.11.0",
142142
"@microsoft/api-extractor": "7.47.8",
143143
"@types/mocha": "^9.1.1",
144144
"@types/nock": "^9.3.0",

0 commit comments

Comments
 (0)