Skip to content

Commit 1f5c901

Browse files
committed
Fixed Keyed Services (#6782)
1 parent b6e6d6d commit 1f5c901

File tree

134 files changed

+3497
-298
lines changed

Some content is hidden

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

134 files changed

+3497
-298
lines changed

src/CookieCrumble/src/CookieCrumble/packages.lock.json

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,7 +1134,8 @@
11341134
"HotChocolate": "[0.0.0, )",
11351135
"HotChocolate.Subscriptions.InMemory": "[0.0.0, )",
11361136
"HotChocolate.Transport.Sockets": "[0.0.0, )",
1137-
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )"
1137+
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )",
1138+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )"
11381139
}
11391140
},
11401141
"hotchocolate.authorization": {
@@ -1150,6 +1151,7 @@
11501151
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
11511152
"HotChocolate.Fetching": "[0.0.0, )",
11521153
"HotChocolate.Types": "[0.0.0, )",
1154+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
11531155
"HotChocolate.Validation": "[0.0.0, )",
11541156
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )",
11551157
"System.Threading.Channels": "[6.0.0, )"
@@ -1279,6 +1281,12 @@
12791281
"hotchocolate.utilities": {
12801282
"type": "Project"
12811283
},
1284+
"hotchocolate.utilities.dependencyinjection": {
1285+
"type": "Project",
1286+
"dependencies": {
1287+
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )"
1288+
}
1289+
},
12821290
"hotchocolate.validation": {
12831291
"type": "Project",
12841292
"dependencies": {
@@ -2433,7 +2441,8 @@
24332441
"HotChocolate": "[0.0.0, )",
24342442
"HotChocolate.Subscriptions.InMemory": "[0.0.0, )",
24352443
"HotChocolate.Transport.Sockets": "[0.0.0, )",
2436-
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )"
2444+
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )",
2445+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )"
24372446
}
24382447
},
24392448
"hotchocolate.authorization": {
@@ -2449,6 +2458,7 @@
24492458
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
24502459
"HotChocolate.Fetching": "[0.0.0, )",
24512460
"HotChocolate.Types": "[0.0.0, )",
2461+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
24522462
"HotChocolate.Validation": "[0.0.0, )",
24532463
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )",
24542464
"System.Threading.Channels": "[7.0.0, )"
@@ -2618,6 +2628,12 @@
26182628
"hotchocolate.utilities": {
26192629
"type": "Project"
26202630
},
2631+
"hotchocolate.utilities.dependencyinjection": {
2632+
"type": "Project",
2633+
"dependencies": {
2634+
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )"
2635+
}
2636+
},
26212637
"hotchocolate.validation": {
26222638
"type": "Project",
26232639
"dependencies": {
@@ -3839,7 +3855,8 @@
38393855
"HotChocolate": "[0.0.0, )",
38403856
"HotChocolate.Subscriptions.InMemory": "[0.0.0, )",
38413857
"HotChocolate.Transport.Sockets": "[0.0.0, )",
3842-
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )"
3858+
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )",
3859+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )"
38433860
}
38443861
},
38453862
"hotchocolate.authorization": {
@@ -3855,6 +3872,7 @@
38553872
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
38563873
"HotChocolate.Fetching": "[0.0.0, )",
38573874
"HotChocolate.Types": "[0.0.0, )",
3875+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
38583876
"HotChocolate.Validation": "[0.0.0, )",
38593877
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )",
38603878
"System.Threading.Channels": "[8.0.0, )"
@@ -4024,6 +4042,12 @@
40244042
"hotchocolate.utilities": {
40254043
"type": "Project"
40264044
},
4045+
"hotchocolate.utilities.dependencyinjection": {
4046+
"type": "Project",
4047+
"dependencies": {
4048+
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )"
4049+
}
4050+
},
40274051
"hotchocolate.validation": {
40284052
"type": "Project",
40294053
"dependencies": {

src/CookieCrumble/test/CookieCrumble.Tests/packages.lock.json

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,7 +1198,8 @@
11981198
"HotChocolate": "[0.0.0, )",
11991199
"HotChocolate.Subscriptions.InMemory": "[0.0.0, )",
12001200
"HotChocolate.Transport.Sockets": "[0.0.0, )",
1201-
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )"
1201+
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )",
1202+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )"
12021203
}
12031204
},
12041205
"hotchocolate.authorization": {
@@ -1214,6 +1215,7 @@
12141215
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
12151216
"HotChocolate.Fetching": "[0.0.0, )",
12161217
"HotChocolate.Types": "[0.0.0, )",
1218+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
12171219
"HotChocolate.Validation": "[0.0.0, )",
12181220
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )",
12191221
"System.Threading.Channels": "[6.0.0, )"
@@ -1343,6 +1345,12 @@
13431345
"hotchocolate.utilities": {
13441346
"type": "Project"
13451347
},
1348+
"hotchocolate.utilities.dependencyinjection": {
1349+
"type": "Project",
1350+
"dependencies": {
1351+
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )"
1352+
}
1353+
},
13461354
"hotchocolate.validation": {
13471355
"type": "Project",
13481356
"dependencies": {
@@ -2562,7 +2570,8 @@
25622570
"HotChocolate": "[0.0.0, )",
25632571
"HotChocolate.Subscriptions.InMemory": "[0.0.0, )",
25642572
"HotChocolate.Transport.Sockets": "[0.0.0, )",
2565-
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )"
2573+
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )",
2574+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )"
25662575
}
25672576
},
25682577
"hotchocolate.authorization": {
@@ -2578,6 +2587,7 @@
25782587
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
25792588
"HotChocolate.Fetching": "[0.0.0, )",
25802589
"HotChocolate.Types": "[0.0.0, )",
2590+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
25812591
"HotChocolate.Validation": "[0.0.0, )",
25822592
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )",
25832593
"System.Threading.Channels": "[7.0.0, )"
@@ -2747,6 +2757,12 @@
27472757
"hotchocolate.utilities": {
27482758
"type": "Project"
27492759
},
2760+
"hotchocolate.utilities.dependencyinjection": {
2761+
"type": "Project",
2762+
"dependencies": {
2763+
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )"
2764+
}
2765+
},
27502766
"hotchocolate.validation": {
27512767
"type": "Project",
27522768
"dependencies": {
@@ -4033,7 +4049,8 @@
40334049
"HotChocolate": "[0.0.0, )",
40344050
"HotChocolate.Subscriptions.InMemory": "[0.0.0, )",
40354051
"HotChocolate.Transport.Sockets": "[0.0.0, )",
4036-
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )"
4052+
"HotChocolate.Types.Scalars.Upload": "[0.0.0, )",
4053+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )"
40374054
}
40384055
},
40394056
"hotchocolate.authorization": {
@@ -4049,6 +4066,7 @@
40494066
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
40504067
"HotChocolate.Fetching": "[0.0.0, )",
40514068
"HotChocolate.Types": "[0.0.0, )",
4069+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
40524070
"HotChocolate.Validation": "[0.0.0, )",
40534071
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )",
40544072
"System.Threading.Channels": "[8.0.0, )"
@@ -4218,6 +4236,12 @@
42184236
"hotchocolate.utilities": {
42194237
"type": "Project"
42204238
},
4239+
"hotchocolate.utilities.dependencyinjection": {
4240+
"type": "Project",
4241+
"dependencies": {
4242+
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )"
4243+
}
4244+
},
42214245
"hotchocolate.validation": {
42224246
"type": "Project",
42234247
"dependencies": {

src/HotChocolate/ApolloFederation/src/ApolloFederation/packages.lock.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@
158158
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
159159
"HotChocolate.Fetching": "[0.0.0, )",
160160
"HotChocolate.Types": "[0.0.0, )",
161+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
161162
"HotChocolate.Validation": "[0.0.0, )",
162163
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )",
163164
"System.Threading.Channels": "[6.0.0, )"
@@ -252,6 +253,12 @@
252253
"hotchocolate.utilities": {
253254
"type": "Project"
254255
},
256+
"hotchocolate.utilities.dependencyinjection": {
257+
"type": "Project",
258+
"dependencies": {
259+
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )"
260+
}
261+
},
255262
"hotchocolate.validation": {
256263
"type": "Project",
257264
"dependencies": {
@@ -393,6 +400,7 @@
393400
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
394401
"HotChocolate.Fetching": "[0.0.0, )",
395402
"HotChocolate.Types": "[0.0.0, )",
403+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
396404
"HotChocolate.Validation": "[0.0.0, )",
397405
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )",
398406
"System.Threading.Channels": "[7.0.0, )"
@@ -487,6 +495,12 @@
487495
"hotchocolate.utilities": {
488496
"type": "Project"
489497
},
498+
"hotchocolate.utilities.dependencyinjection": {
499+
"type": "Project",
500+
"dependencies": {
501+
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )"
502+
}
503+
},
490504
"hotchocolate.validation": {
491505
"type": "Project",
492506
"dependencies": {
@@ -628,6 +642,7 @@
628642
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
629643
"HotChocolate.Fetching": "[0.0.0, )",
630644
"HotChocolate.Types": "[0.0.0, )",
645+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
631646
"HotChocolate.Validation": "[0.0.0, )",
632647
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )",
633648
"System.Threading.Channels": "[8.0.0, )"
@@ -722,6 +737,12 @@
722737
"hotchocolate.utilities": {
723738
"type": "Project"
724739
},
740+
"hotchocolate.utilities.dependencyinjection": {
741+
"type": "Project",
742+
"dependencies": {
743+
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )"
744+
}
745+
},
725746
"hotchocolate.validation": {
726747
"type": "Project",
727748
"dependencies": {

src/HotChocolate/ApolloFederation/test/ApolloFederation.Tests/packages.lock.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1220,6 +1220,7 @@
12201220
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
12211221
"HotChocolate.Fetching": "[0.0.0, )",
12221222
"HotChocolate.Types": "[0.0.0, )",
1223+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
12231224
"HotChocolate.Validation": "[0.0.0, )",
12241225
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )",
12251226
"System.Threading.Channels": "[6.0.0, )"
@@ -1314,6 +1315,12 @@
13141315
"hotchocolate.utilities": {
13151316
"type": "Project"
13161317
},
1318+
"hotchocolate.utilities.dependencyinjection": {
1319+
"type": "Project",
1320+
"dependencies": {
1321+
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )"
1322+
}
1323+
},
13171324
"hotchocolate.validation": {
13181325
"type": "Project",
13191326
"dependencies": {
@@ -2517,6 +2524,7 @@
25172524
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
25182525
"HotChocolate.Fetching": "[0.0.0, )",
25192526
"HotChocolate.Types": "[0.0.0, )",
2527+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
25202528
"HotChocolate.Validation": "[0.0.0, )",
25212529
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )",
25222530
"System.Threading.Channels": "[7.0.0, )"
@@ -2611,6 +2619,12 @@
26112619
"hotchocolate.utilities": {
26122620
"type": "Project"
26132621
},
2622+
"hotchocolate.utilities.dependencyinjection": {
2623+
"type": "Project",
2624+
"dependencies": {
2625+
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )"
2626+
}
2627+
},
26142628
"hotchocolate.validation": {
26152629
"type": "Project",
26162630
"dependencies": {
@@ -3814,6 +3828,7 @@
38143828
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
38153829
"HotChocolate.Fetching": "[0.0.0, )",
38163830
"HotChocolate.Types": "[0.0.0, )",
3831+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
38173832
"HotChocolate.Validation": "[0.0.0, )",
38183833
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )",
38193834
"System.Threading.Channels": "[8.0.0, )"
@@ -3908,6 +3923,12 @@
39083923
"hotchocolate.utilities": {
39093924
"type": "Project"
39103925
},
3926+
"hotchocolate.utilities.dependencyinjection": {
3927+
"type": "Project",
3928+
"dependencies": {
3929+
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )"
3930+
}
3931+
},
39113932
"hotchocolate.validation": {
39123933
"type": "Project",
39133934
"dependencies": {

src/HotChocolate/AspNetCore/src/AspNetCore.Authorization.Opa/packages.lock.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,7 @@
196196
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
197197
"HotChocolate.Fetching": "[0.0.0, )",
198198
"HotChocolate.Types": "[0.0.0, )",
199+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
199200
"HotChocolate.Validation": "[0.0.0, )",
200201
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )",
201202
"System.Threading.Channels": "[6.0.0, )"
@@ -290,6 +291,12 @@
290291
"hotchocolate.utilities": {
291292
"type": "Project"
292293
},
294+
"hotchocolate.utilities.dependencyinjection": {
295+
"type": "Project",
296+
"dependencies": {
297+
"Microsoft.Extensions.DependencyInjection": "[6.0.0, )"
298+
}
299+
},
293300
"hotchocolate.validation": {
294301
"type": "Project",
295302
"dependencies": {
@@ -468,6 +475,7 @@
468475
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
469476
"HotChocolate.Fetching": "[0.0.0, )",
470477
"HotChocolate.Types": "[0.0.0, )",
478+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
471479
"HotChocolate.Validation": "[0.0.0, )",
472480
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )",
473481
"System.Threading.Channels": "[7.0.0, )"
@@ -562,6 +570,12 @@
562570
"hotchocolate.utilities": {
563571
"type": "Project"
564572
},
573+
"hotchocolate.utilities.dependencyinjection": {
574+
"type": "Project",
575+
"dependencies": {
576+
"Microsoft.Extensions.DependencyInjection": "[7.0.0, )"
577+
}
578+
},
565579
"hotchocolate.validation": {
566580
"type": "Project",
567581
"dependencies": {
@@ -793,6 +807,7 @@
793807
"HotChocolate.Execution.Abstractions": "[0.0.0, )",
794808
"HotChocolate.Fetching": "[0.0.0, )",
795809
"HotChocolate.Types": "[0.0.0, )",
810+
"HotChocolate.Utilities.DependencyInjection": "[0.0.0, )",
796811
"HotChocolate.Validation": "[0.0.0, )",
797812
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )",
798813
"System.Threading.Channels": "[8.0.0, )"
@@ -887,6 +902,12 @@
887902
"hotchocolate.utilities": {
888903
"type": "Project"
889904
},
905+
"hotchocolate.utilities.dependencyinjection": {
906+
"type": "Project",
907+
"dependencies": {
908+
"Microsoft.Extensions.DependencyInjection": "[8.0.0, )"
909+
}
910+
},
890911
"hotchocolate.validation": {
891912
"type": "Project",
892913
"dependencies": {

0 commit comments

Comments
 (0)