-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.md
9964 lines (6181 loc) · 623 KB
/
CHANGELOG.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Changelog
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents**
- [0.0.0 (2024-08-22)](#000-2024-08-22)
- [Breaking Changes](#breaking-changes)
- [Bug Fixes](#bug-fixes)
- [Features](#features)
- [Unclassified](#unclassified)
- [2.2.0 (2024-02-12)](#220-2024-02-12)
- [Bug Fixes](#bug-fixes-1)
- [Code Generation](#code-generation)
- [2.2.0-pre.1 (2024-02-01)](#220-pre1-2024-02-01)
- [Bug Fixes](#bug-fixes-2)
- [Code Generation](#code-generation-1)
- [Documentation](#documentation)
- [Features](#features-1)
- [2.2.0-rc.3 (2023-08-16)](#220-rc3-2023-08-16)
- [Bug Fixes](#bug-fixes-3)
- [Code Generation](#code-generation-2)
- [Features](#features-2)
- [2.2.0-pre.0 (2023-06-22)](#220-pre0-2023-06-22)
- [Code Generation](#code-generation-3)
- [Features](#features-3)
- [2.2.0-rc.2 (2023-06-13)](#220-rc2-2023-06-13)
- [Bug Fixes](#bug-fixes-4)
- [Code Generation](#code-generation-4)
- [Features](#features-4)
- [2.2.0-rc.1 (2023-06-12)](#220-rc1-2023-06-12)
- [Breaking Changes](#breaking-changes-1)
- [Bug Fixes](#bug-fixes-5)
- [Code Generation](#code-generation-5)
- [Features](#features-5)
- [Unclassified](#unclassified-1)
- [2.1.2 (2023-05-24)](#212-2023-05-24)
- [Bug Fixes](#bug-fixes-6)
- [Code Generation](#code-generation-6)
- [Documentation](#documentation-1)
- [Features](#features-6)
- [2.1.1 (2023-04-11)](#211-2023-04-11)
- [Bug Fixes](#bug-fixes-7)
- [Code Generation](#code-generation-7)
- [2.1.0 (2023-04-06)](#210-2023-04-06)
- [Bug Fixes](#bug-fixes-8)
- [Code Generation](#code-generation-8)
- [2.1.0-pre.2 (2023-04-03)](#210-pre2-2023-04-03)
- [Code Generation](#code-generation-9)
- [2.1.0-pre.1 (2023-04-03)](#210-pre1-2023-04-03)
- [Code Generation](#code-generation-10)
- [2.1.0-pre.0 (2023-03-31)](#210-pre0-2023-03-31)
- [Bug Fixes](#bug-fixes-9)
- [Code Generation](#code-generation-11)
- [Documentation](#documentation-2)
- [Features](#features-7)
- [2.0.3 (2022-12-08)](#203-2022-12-08)
- [Bug Fixes](#bug-fixes-10)
- [Code Generation](#code-generation-12)
- [Features](#features-8)
- [2.0.2 (2022-11-10)](#202-2022-11-10)
- [Bug Fixes](#bug-fixes-11)
- [Code Generation](#code-generation-13)
- [Documentation](#documentation-3)
- [Features](#features-9)
- [Tests](#tests)
- [2.0.1 (2022-10-27)](#201-2022-10-27)
- [Bug Fixes](#bug-fixes-12)
- [Code Generation](#code-generation-14)
- [Documentation](#documentation-4)
- [2.0.0 (2022-10-27)](#200-2022-10-27)
- [Breaking Changes](#breaking-changes-2)
- [Bug Fixes](#bug-fixes-13)
- [Code Generation](#code-generation-15)
- [Code Refactoring](#code-refactoring)
- [Documentation](#documentation-5)
- [Features](#features-10)
- [Tests](#tests-1)
- [Unclassified](#unclassified-2)
- [1.11.10 (2022-08-25)](#11110-2022-08-25)
- [Bug Fixes](#bug-fixes-14)
- [Code Generation](#code-generation-16)
- [1.11.9 (2022-08-01)](#1119-2022-08-01)
- [Bug Fixes](#bug-fixes-15)
- [Code Generation](#code-generation-17)
- [Documentation](#documentation-6)
- [Features](#features-11)
- [1.11.8 (2022-05-04)](#1118-2022-05-04)
- [Bug Fixes](#bug-fixes-16)
- [Code Generation](#code-generation-18)
- [Documentation](#documentation-7)
- [Features](#features-12)
- [Tests](#tests-2)
- [1.11.7 (2022-02-23)](#1117-2022-02-23)
- [Code Generation](#code-generation-19)
- [1.11.6 (2022-02-23)](#1116-2022-02-23)
- [Bug Fixes](#bug-fixes-17)
- [Code Generation](#code-generation-20)
- [1.11.5 (2022-02-21)](#1115-2022-02-21)
- [Bug Fixes](#bug-fixes-18)
- [Code Generation](#code-generation-21)
- [1.11.4 (2022-02-16)](#1114-2022-02-16)
- [Bug Fixes](#bug-fixes-19)
- [Code Generation](#code-generation-22)
- [1.11.3 (2022-02-15)](#1113-2022-02-15)
- [Bug Fixes](#bug-fixes-20)
- [Code Generation](#code-generation-23)
- [1.11.2 (2022-02-11)](#1112-2022-02-11)
- [Code Generation](#code-generation-24)
- [1.11.1 (2022-02-11)](#1111-2022-02-11)
- [Bug Fixes](#bug-fixes-21)
- [Code Generation](#code-generation-25)
- [Code Refactoring](#code-refactoring-1)
- [Documentation](#documentation-8)
- [1.11.0 (2022-01-21)](#1110-2022-01-21)
- [Breaking Changes](#breaking-changes-3)
- [Bug Fixes](#bug-fixes-22)
- [Code Generation](#code-generation-26)
- [Documentation](#documentation-9)
- [Features](#features-13)
- [1.10.7 (2021-10-27)](#1107-2021-10-27)
- [Breaking Changes](#breaking-changes-4)
- [Bug Fixes](#bug-fixes-23)
- [Code Generation](#code-generation-27)
- [Code Refactoring](#code-refactoring-2)
- [Documentation](#documentation-10)
- [Features](#features-14)
- [1.10.6 (2021-08-28)](#1106-2021-08-28)
- [Bug Fixes](#bug-fixes-24)
- [Code Generation](#code-generation-28)
- [Documentation](#documentation-11)
- [1.10.5 (2021-08-13)](#1105-2021-08-13)
- [Bug Fixes](#bug-fixes-25)
- [Code Generation](#code-generation-29)
- [Documentation](#documentation-12)
- [Features](#features-15)
- [1.10.3 (2021-07-14)](#1103-2021-07-14)
- [Bug Fixes](#bug-fixes-26)
- [Code Generation](#code-generation-30)
- [Code Refactoring](#code-refactoring-3)
- [Documentation](#documentation-13)
- [Features](#features-16)
- [1.10.2 (2021-05-04)](#1102-2021-05-04)
- [Breaking Changes](#breaking-changes-5)
- [Bug Fixes](#bug-fixes-27)
- [Code Generation](#code-generation-31)
- [Code Refactoring](#code-refactoring-4)
- [Documentation](#documentation-14)
- [Features](#features-17)
- [1.10.1 (2021-03-25)](#1101-2021-03-25)
- [Bug Fixes](#bug-fixes-28)
- [Code Generation](#code-generation-32)
- [Documentation](#documentation-15)
- [Features](#features-18)
- [Tests](#tests-3)
- [Unclassified](#unclassified-3)
- [1.9.2 (2021-01-29)](#192-2021-01-29)
- [Code Generation](#code-generation-33)
- [Features](#features-19)
- [1.9.1 (2021-01-27)](#191-2021-01-27)
- [Code Generation](#code-generation-34)
- [Documentation](#documentation-16)
- [1.9.0 (2021-01-12)](#190-2021-01-12)
- [Code Generation](#code-generation-35)
- [1.9.0-rc.0 (2021-01-12)](#190-rc0-2021-01-12)
- [Code Generation](#code-generation-36)
- [1.9.0-alpha.4.pre.0 (2021-01-12)](#190-alpha4pre0-2021-01-12)
- [Bug Fixes](#bug-fixes-29)
- [Code Generation](#code-generation-37)
- [Documentation](#documentation-17)
- [1.9.0-alpha.3 (2020-12-08)](#190-alpha3-2020-12-08)
- [Breaking Changes](#breaking-changes-6)
- [Bug Fixes](#bug-fixes-30)
- [Code Generation](#code-generation-38)
- [Code Refactoring](#code-refactoring-5)
- [Documentation](#documentation-18)
- [Features](#features-20)
- [Tests](#tests-4)
- [Unclassified](#unclassified-4)
- [1.9.0-alpha.2 (2020-10-29)](#190-alpha2-2020-10-29)
- [Bug Fixes](#bug-fixes-31)
- [Code Generation](#code-generation-39)
- [Documentation](#documentation-19)
- [Features](#features-21)
- [Tests](#tests-5)
- [1.9.0-alpha.1 (2020-10-20)](#190-alpha1-2020-10-20)
- [Bug Fixes](#bug-fixes-32)
- [Code Generation](#code-generation-40)
- [Code Refactoring](#code-refactoring-6)
- [Documentation](#documentation-20)
- [Features](#features-22)
- [Tests](#tests-6)
- [1.8.5 (2020-10-03)](#185-2020-10-03)
- [Code Generation](#code-generation-41)
- [1.8.0-pre.1 (2020-10-03)](#180-pre1-2020-10-03)
- [Bug Fixes](#bug-fixes-33)
- [Code Generation](#code-generation-42)
- [Features](#features-23)
- [1.8.0-pre.0 (2020-10-02)](#180-pre0-2020-10-02)
- [Breaking Changes](#breaking-changes-7)
- [Bug Fixes](#bug-fixes-34)
- [Code Generation](#code-generation-43)
- [Documentation](#documentation-21)
- [Features](#features-24)
- [1.7.4 (2020-08-31)](#174-2020-08-31)
- [Bug Fixes](#bug-fixes-35)
- [Code Generation](#code-generation-44)
- [1.7.3 (2020-08-31)](#173-2020-08-31)
- [Code Generation](#code-generation-45)
- [1.7.1 (2020-08-31)](#171-2020-08-31)
- [Breaking Changes](#breaking-changes-8)
- [Bug Fixes](#bug-fixes-36)
- [Code Generation](#code-generation-46)
- [Code Refactoring](#code-refactoring-7)
- [Documentation](#documentation-22)
- [Features](#features-25)
- [Unclassified](#unclassified-5)
- [1.7.0 (2020-08-14)](#170-2020-08-14)
- [Breaking Changes](#breaking-changes-9)
- [Bug Fixes](#bug-fixes-37)
- [Code Generation](#code-generation-47)
- [Code Refactoring](#code-refactoring-8)
- [Documentation](#documentation-23)
- [Features](#features-26)
- [Unclassified](#unclassified-6)
- [1.6.0 (2020-07-20)](#160-2020-07-20)
- [Bug Fixes](#bug-fixes-38)
- [Code Generation](#code-generation-48)
- [Documentation](#documentation-24)
- [Unclassified](#unclassified-7)
- [1.5.2 (2020-06-23)](#152-2020-06-23)
- [Bug Fixes](#bug-fixes-39)
- [Code Generation](#code-generation-49)
- [Features](#features-27)
- [1.5.1 (2020-06-16)](#151-2020-06-16)
- [Code Generation](#code-generation-50)
- [1.5.0 (2020-06-16)](#150-2020-06-16)
- [Bug Fixes](#bug-fixes-40)
- [Chores](#chores)
- [Documentation](#documentation-25)
- [Features](#features-28)
- [Unclassified](#unclassified-8)
- [1.5.0-beta.5 (2020-05-28)](#150-beta5-2020-05-28)
- [Bug Fixes](#bug-fixes-41)
- [Chores](#chores-1)
- [Documentation](#documentation-26)
- [Features](#features-29)
- [1.5.0-beta.3 (2020-05-23)](#150-beta3-2020-05-23)
- [Chores](#chores-2)
- [1.5.0-beta.2 (2020-05-23)](#150-beta2-2020-05-23)
- [Bug Fixes](#bug-fixes-42)
- [Chores](#chores-3)
- [Code Refactoring](#code-refactoring-9)
- [Documentation](#documentation-27)
- [1.5.0-beta.1 (2020-04-30)](#150-beta1-2020-04-30)
- [Breaking Changes](#breaking-changes-10)
- [Chores](#chores-4)
- [Code Refactoring](#code-refactoring-10)
- [1.4.10 (2020-04-30)](#1410-2020-04-30)
- [Bug Fixes](#bug-fixes-43)
- [Chores](#chores-5)
- [Documentation](#documentation-28)
- [Unclassified](#unclassified-9)
- [1.4.9 (2020-04-25)](#149-2020-04-25)
- [Bug Fixes](#bug-fixes-44)
- [Chores](#chores-6)
- [1.4.8 (2020-04-24)](#148-2020-04-24)
- [Bug Fixes](#bug-fixes-45)
- [Chores](#chores-7)
- [Documentation](#documentation-29)
- [Features](#features-30)
- [1.4.7 (2020-04-24)](#147-2020-04-24)
- [Bug Fixes](#bug-fixes-46)
- [Chores](#chores-8)
- [Documentation](#documentation-30)
- [1.4.6 (2020-04-17)](#146-2020-04-17)
- [Bug Fixes](#bug-fixes-47)
- [Documentation](#documentation-31)
- [1.4.5 (2020-04-16)](#145-2020-04-16)
- [Bug Fixes](#bug-fixes-48)
- [Documentation](#documentation-32)
- [1.4.3 (2020-04-16)](#143-2020-04-16)
- [Bug Fixes](#bug-fixes-49)
- [Code Refactoring](#code-refactoring-11)
- [Documentation](#documentation-33)
- [Features](#features-31)
- [1.4.2 (2020-04-03)](#142-2020-04-03)
- [Chores](#chores-9)
- [Documentation](#documentation-34)
- [1.4.1 (2020-04-02)](#141-2020-04-02)
- [Bug Fixes](#bug-fixes-50)
- [1.4.0 (2020-04-02)](#140-2020-04-02)
- [GHSA-3p3g-vpw6-4w66](#ghsa-3p3g-vpw6-4w66)
- [Impact](#impact)
- [Severity](#severity)
- [Patches](#patches)
- [Workarounds](#workarounds)
- [References](#references)
- [Upstream](#upstream)
- [Breaking Changes](#breaking-changes-11)
- [GHSA-3p3g-vpw6-4w66](#ghsa-3p3g-vpw6-4w66-1)
- [Impact](#impact-1)
- [Severity](#severity-1)
- [Patches](#patches-1)
- [Workarounds](#workarounds-1)
- [References](#references-1)
- [Upstream](#upstream-1)
- [Bug Fixes](#bug-fixes-51)
- [Code Refactoring](#code-refactoring-12)
- [Documentation](#documentation-35)
- [Features](#features-32)
- [Unclassified](#unclassified-10)
- [1.3.2 (2020-02-17)](#132-2020-02-17)
- [Bug Fixes](#bug-fixes-52)
- [Chores](#chores-10)
- [Documentation](#documentation-36)
- [1.3.1 (2020-02-16)](#131-2020-02-16)
- [Continuous Integration](#continuous-integration)
- [1.3.0 (2020-02-14)](#130-2020-02-14)
- [Bug Fixes](#bug-fixes-53)
- [Documentation](#documentation-37)
- [Features](#features-33)
- [Unclassified](#unclassified-11)
- [1.2.3 (2020-01-31)](#123-2020-01-31)
- [Unclassified](#unclassified-12)
- [1.2.2 (2020-01-23)](#122-2020-01-23)
- [Documentation](#documentation-38)
- [Unclassified](#unclassified-13)
- [1.2.1 (2020-01-15)](#121-2020-01-15)
- [Unclassified](#unclassified-14)
- [1.2.0 (2020-01-08)](#120-2020-01-08)
- [Unclassified](#unclassified-15)
- [1.2.0-alpha.3 (2020-01-08)](#120-alpha3-2020-01-08)
- [Unclassified](#unclassified-16)
- [1.2.0-alpha.2 (2020-01-08)](#120-alpha2-2020-01-08)
- [Continuous Integration](#continuous-integration-1)
- [1.2.0-alpha.1 (2020-01-07)](#120-alpha1-2020-01-07)
- [Documentation](#documentation-39)
- [Unclassified](#unclassified-17)
- [1.1.1 (2019-12-19)](#111-2019-12-19)
- [Documentation](#documentation-40)
- [Unclassified](#unclassified-18)
- [1.1.0 (2019-12-16)](#110-2019-12-16)
- [Documentation](#documentation-41)
- [Unclassified](#unclassified-19)
- [1.0.9 (2019-11-02)](#109-2019-11-02)
- [Documentation](#documentation-42)
- [Unclassified](#unclassified-20)
- [1.0.8 (2019-10-04)](#108-2019-10-04)
- [Unclassified](#unclassified-21)
- [1.0.7 (2019-09-29)](#107-2019-09-29)
- [Continuous Integration](#continuous-integration-2)
- [1.0.6 (2019-09-29)](#106-2019-09-29)
- [Continuous Integration](#continuous-integration-3)
- [1.0.5 (2019-09-28)](#105-2019-09-28)
- [Continuous Integration](#continuous-integration-4)
- [1.0.4 (2019-09-26)](#104-2019-09-26)
- [Unclassified](#unclassified-22)
- [1.0.3 (2019-09-23)](#103-2019-09-23)
- [Unclassified](#unclassified-23)
- [1.0.2 (2019-09-18)](#102-2019-09-18)
- [Unclassified](#unclassified-24)
- [1.0.1 (2019-09-04)](#101-2019-09-04)
- [Documentation](#documentation-43)
- [Unclassified](#unclassified-25)
- [1.0.0 (2019-06-24)](#100-2019-06-24)
- [Documentation](#documentation-44)
- [Unclassified](#unclassified-26)
- [1.0.0-rc.16 (2019-06-13)](#100-rc16-2019-06-13)
- [Documentation](#documentation-45)
- [Unclassified](#unclassified-27)
- [1.0.0-rc.15 (2019-06-05)](#100-rc15-2019-06-05)
- [Documentation](#documentation-46)
- [Unclassified](#unclassified-28)
- [1.0.0-rc.14 (2019-05-18)](#100-rc14-2019-05-18)
- [Continuous Integration](#continuous-integration-5)
- [Documentation](#documentation-47)
- [Unclassified](#unclassified-29)
- [1.0.0-rc.12 (2019-05-10)](#100-rc12-2019-05-10)
- [Unclassified](#unclassified-30)
- [0.0.1 (2019-05-08)](#001-2019-05-08)
- [Documentation](#documentation-48)
- [Unclassified](#unclassified-31)
- [1.0.0-rc.11 (2019-05-02)](#100-rc11-2019-05-02)
- [Documentation](#documentation-49)
- [Unclassified](#unclassified-32)
- [1.0.0-rc.10 (2019-04-29)](#100-rc10-2019-04-29)
- [Documentation](#documentation-50)
- [Unclassified](#unclassified-33)
- [1.0.0-rc.9+oryOS.10 (2019-04-18)](#100-rc9oryos10-2019-04-18)
- [Documentation](#documentation-51)
- [Unclassified](#unclassified-34)
- [1.0.0-rc.8+oryOS.10 (2019-04-03)](#100-rc8oryos10-2019-04-03)
- [Continuous Integration](#continuous-integration-6)
- [Documentation](#documentation-52)
- [1.0.0-rc.7+oryOS.10 (2019-04-02)](#100-rc7oryos10-2019-04-02)
- [Continuous Integration](#continuous-integration-7)
- [Documentation](#documentation-53)
- [Unclassified](#unclassified-35)
- [1.0.0-rc.6+oryOS.10 (2018-12-18)](#100-rc6oryos10-2018-12-18)
- [Documentation](#documentation-54)
- [Unclassified](#unclassified-36)
- [1.0.0-rc.5+oryOS.10 (2018-12-13)](#100-rc5oryos10-2018-12-13)
- [Documentation](#documentation-55)
- [Unclassified](#unclassified-37)
- [1.0.0-rc.4+oryOS.9 (2018-12-12)](#100-rc4oryos9-2018-12-12)
- [Documentation](#documentation-56)
- [Unclassified](#unclassified-38)
- [1.0.0-rc.3+oryOS.9 (2018-12-06)](#100-rc3oryos9-2018-12-06)
- [Documentation](#documentation-57)
- [Unclassified](#unclassified-39)
- [1.0.0-rc.2+oryOS.9 (2018-11-21)](#100-rc2oryos9-2018-11-21)
- [Documentation](#documentation-58)
- [Unclassified](#unclassified-40)
- [1.0.0-rc.1+oryOS.9 (2018-11-21)](#100-rc1oryos9-2018-11-21)
- [Build System](#build-system)
- [Documentation](#documentation-59)
- [Unclassified](#unclassified-41)
- [1.0.0-beta.9 (2018-09-01)](#100-beta9-2018-09-01)
- [Documentation](#documentation-60)
- [Unclassified](#unclassified-42)
- [1.0.0-beta.8 (2018-08-10)](#100-beta8-2018-08-10)
- [Documentation](#documentation-61)
- [Unclassified](#unclassified-43)
- [1.0.0-beta.7 (2018-07-16)](#100-beta7-2018-07-16)
- [Documentation](#documentation-62)
- [Unclassified](#unclassified-44)
- [1.0.0-beta.6 (2018-07-11)](#100-beta6-2018-07-11)
- [Documentation](#documentation-63)
- [Unclassified](#unclassified-45)
- [1.0.0-beta.5 (2018-07-07)](#100-beta5-2018-07-07)
- [Documentation](#documentation-64)
- [Unclassified](#unclassified-46)
- [1.0.0-beta.4 (2018-06-13)](#100-beta4-2018-06-13)
- [Documentation](#documentation-65)
- [1.0.0-beta.3 (2018-06-13)](#100-beta3-2018-06-13)
- [Continuous Integration](#continuous-integration-8)
- [Documentation](#documentation-66)
- [Unclassified](#unclassified-47)
- [1.0.0-beta.2 (2018-05-29)](#100-beta2-2018-05-29)
- [Continuous Integration](#continuous-integration-9)
- [1.0.0-beta.1 (2018-05-29)](#100-beta1-2018-05-29)
- [Build System](#build-system-1)
- [Documentation](#documentation-67)
- [Unclassified](#unclassified-48)
- [0.11.10 (2018-03-19)](#01110-2018-03-19)
- [Documentation](#documentation-68)
- [Unclassified](#unclassified-49)
- [0.11.12 (2018-04-08)](#01112-2018-04-08)
- [Documentation](#documentation-69)
- [Unclassified](#unclassified-50)
- [0.11.9 (2018-03-10)](#0119-2018-03-10)
- [Unclassified](#unclassified-51)
- [0.11.7 (2018-03-03)](#0117-2018-03-03)
- [Unclassified](#unclassified-52)
- [0.11.6 (2018-02-07)](#0116-2018-02-07)
- [Unclassified](#unclassified-53)
- [0.11.10 (2018-03-19)](#01110-2018-03-19-1)
- [Documentation](#documentation-70)
- [Unclassified](#unclassified-54)
- [0.11.9 (2018-03-10)](#0119-2018-03-10-1)
- [Unclassified](#unclassified-55)
- [0.11.7 (2018-03-03)](#0117-2018-03-03-1)
- [Unclassified](#unclassified-56)
- [0.11.6 (2018-02-07)](#0116-2018-02-07-1)
- [Unclassified](#unclassified-57)
- [0.11.4 (2018-01-23)](#0114-2018-01-23)
- [Documentation](#documentation-71)
- [0.11.3 (2018-01-23)](#0113-2018-01-23)
- [Documentation](#documentation-72)
- [Unclassified](#unclassified-58)
- [0.11.2 (2018-01-22)](#0112-2018-01-22)
- [Unclassified](#unclassified-59)
- [0.11.1 (2018-01-18)](#0111-2018-01-18)
- [Unclassified](#unclassified-60)
- [0.11.0 (2018-01-08)](#0110-2018-01-08)
- [Documentation](#documentation-73)
- [Unclassified](#unclassified-61)
- [0.10.10 (2017-12-16)](#01010-2017-12-16)
- [Documentation](#documentation-74)
- [Unclassified](#unclassified-62)
- [0.10.9 (2017-12-13)](#0109-2017-12-13)
- [Documentation](#documentation-75)
- [Unclassified](#unclassified-63)
- [0.10.8 (2017-12-12)](#0108-2017-12-12)
- [Documentation](#documentation-76)
- [Unclassified](#unclassified-64)
- [0.10.7 (2017-12-09)](#0107-2017-12-09)
- [Documentation](#documentation-77)
- [Unclassified](#unclassified-65)
- [0.10.6 (2017-12-09)](#0106-2017-12-09)
- [Unclassified](#unclassified-66)
- [0.10.5 (2017-12-09)](#0105-2017-12-09)
- [Documentation](#documentation-78)
- [Unclassified](#unclassified-67)
- [0.10.4 (2017-12-09)](#0104-2017-12-09)
- [Documentation](#documentation-79)
- [Unclassified](#unclassified-68)
- [0.10.3 (2017-12-08)](#0103-2017-12-08)
- [Documentation](#documentation-80)
- [0.10.2 (2017-12-08)](#0102-2017-12-08)
- [Continuous Integration](#continuous-integration-10)
- [0.10.1 (2017-12-08)](#0101-2017-12-08)
- [Continuous Integration](#continuous-integration-11)
- [0.10.0 (2017-12-08)](#0100-2017-12-08)
- [Continuous Integration](#continuous-integration-12)
- [Documentation](#documentation-81)
- [Unclassified](#unclassified-69)
- [0.10.0-alpha.21 (2017-11-27)](#0100-alpha21-2017-11-27)
- [Unclassified](#unclassified-70)
- [0.10.0-alpha.20 (2017-11-26)](#0100-alpha20-2017-11-26)
- [Unclassified](#unclassified-71)
- [0.10.0-alpha.19 (2017-11-26)](#0100-alpha19-2017-11-26)
- [Documentation](#documentation-82)
- [Unclassified](#unclassified-72)
- [0.10.0-alpha.18 (2017-11-06)](#0100-alpha18-2017-11-06)
- [Continuous Integration](#continuous-integration-13)
- [0.10.0-alpha.17 (2017-11-06)](#0100-alpha17-2017-11-06)
- [Continuous Integration](#continuous-integration-14)
- [0.10.0-alpha.16 (2017-11-06)](#0100-alpha16-2017-11-06)
- [Continuous Integration](#continuous-integration-15)
- [Documentation](#documentation-83)
- [Unclassified](#unclassified-73)
- [0.10.0-alpha.15 (2017-11-06)](#0100-alpha15-2017-11-06)
- [Unclassified](#unclassified-74)
- [0.10.0-alpha.14 (2017-11-06)](#0100-alpha14-2017-11-06)
- [Unclassified](#unclassified-75)
- [0.10.0-alpha.13 (2017-11-06)](#0100-alpha13-2017-11-06)
- [Unclassified](#unclassified-76)
- [0.10.0-alpha.12 (2017-11-06)](#0100-alpha12-2017-11-06)
- [Documentation](#documentation-84)
- [Unclassified](#unclassified-77)
- [0.10.0-alpha.10 (2017-10-26)](#0100-alpha10-2017-10-26)
- [Continuous Integration](#continuous-integration-16)
- [Documentation](#documentation-85)
- [0.10.0-alpha.9 (2017-10-25)](#0100-alpha9-2017-10-25)
- [Documentation](#documentation-86)
- [Unclassified](#unclassified-78)
- [0.10.0-alpha.8 (2017-10-18)](#0100-alpha8-2017-10-18)
- [Documentation](#documentation-87)
- [Unclassified](#unclassified-79)
- [0.9.14 (2017-10-06)](#0914-2017-10-06)
- [Documentation](#documentation-88)
- [Unclassified](#unclassified-80)
- [0.10.0-alpha.7 (2017-10-06)](#0100-alpha7-2017-10-06)
- [Unclassified](#unclassified-81)
- [0.10.0-alpha.6 (2017-10-05)](#0100-alpha6-2017-10-05)
- [Unclassified](#unclassified-82)
- [0.10.0-alpha.5 (2017-10-05)](#0100-alpha5-2017-10-05)
- [Unclassified](#unclassified-83)
- [0.10.0-alpha.4 (2017-10-05)](#0100-alpha4-2017-10-05)
- [Unclassified](#unclassified-84)
- [0.10.0-alpha.3 (2017-10-05)](#0100-alpha3-2017-10-05)
- [Unclassified](#unclassified-85)
- [0.10.0-alpha.2 (2017-10-05)](#0100-alpha2-2017-10-05)
- [Documentation](#documentation-89)
- [Unclassified](#unclassified-86)
- [0.10.0-alpha.1 (2017-10-05)](#0100-alpha1-2017-10-05)
- [Documentation](#documentation-90)
- [Unclassified](#unclassified-87)
- [0.9.13 (2017-09-26)](#0913-2017-09-26)
- [Documentation](#documentation-91)
- [Unclassified](#unclassified-88)
- [0.9.12 (2017-07-06)](#0912-2017-07-06)
- [Documentation](#documentation-92)
- [Unclassified](#unclassified-89)
- [0.9.11 (2017-06-30)](#0911-2017-06-30)
- [Documentation](#documentation-93)
- [Unclassified](#unclassified-90)
- [0.9.10 (2017-06-29)](#0910-2017-06-29)
- [Documentation](#documentation-94)
- [Unclassified](#unclassified-91)
- [0.9.9 (2017-06-17)](#099-2017-06-17)
- [Unclassified](#unclassified-92)
- [0.9.8 (2017-06-17)](#098-2017-06-17)
- [Documentation](#documentation-95)
- [Unclassified](#unclassified-93)
- [0.9.7 (2017-06-16)](#097-2017-06-16)
- [Documentation](#documentation-96)
- [Unclassified](#unclassified-94)
- [0.9.6 (2017-06-15)](#096-2017-06-15)
- [Unclassified](#unclassified-95)
- [0.9.5 (2017-06-15)](#095-2017-06-15)
- [Unclassified](#unclassified-96)
- [0.9.4 (2017-06-14)](#094-2017-06-14)
- [Documentation](#documentation-97)
- [Unclassified](#unclassified-97)
- [0.9.3 (2017-06-14)](#093-2017-06-14)
- [Documentation](#documentation-98)
- [Unclassified](#unclassified-98)
- [0.9.2 (2017-06-13)](#092-2017-06-13)
- [Unclassified](#unclassified-99)
- [0.9.1 (2017-06-12)](#091-2017-06-12)
- [Unclassified](#unclassified-100)
- [0.9.0 (2017-06-07)](#090-2017-06-07)
- [Documentation](#documentation-99)
- [Unclassified](#unclassified-101)
- [0.8.7 (2017-06-05)](#087-2017-06-05)
- [Unclassified](#unclassified-102)
- [0.8.6 (2017-06-05)](#086-2017-06-05)
- [Documentation](#documentation-100)
- [Unclassified](#unclassified-103)
- [0.8.5 (2017-06-01)](#085-2017-06-01)
- [Unclassified](#unclassified-104)
- [0.8.4 (2017-05-24)](#084-2017-05-24)
- [Documentation](#documentation-101)
- [Unclassified](#unclassified-105)
- [0.8.3 (2017-05-23)](#083-2017-05-23)
- [Documentation](#documentation-102)
- [Unclassified](#unclassified-106)
- [0.8.2 (2017-05-10)](#082-2017-05-10)
- [Unclassified](#unclassified-107)
- [0.8.1 (2017-05-08)](#081-2017-05-08)
- [Continuous Integration](#continuous-integration-17)
- [0.8.0 (2017-05-07)](#080-2017-05-07)
- [Continuous Integration](#continuous-integration-18)
- [Documentation](#documentation-103)
- [Unclassified](#unclassified-108)
- [0.7.13 (2017-05-03)](#0713-2017-05-03)
- [Documentation](#documentation-104)
- [Unclassified](#unclassified-109)
- [0.7.12 (2017-04-30)](#0712-2017-04-30)
- [Unclassified](#unclassified-110)
- [0.7.11 (2017-04-28)](#0711-2017-04-28)
- [Unclassified](#unclassified-111)
- [0.7.10 (2017-04-14)](#0710-2017-04-14)
- [Documentation](#documentation-105)
- [Unclassified](#unclassified-112)
- [0.7.9 (2017-04-02)](#079-2017-04-02)
- [Unclassified](#unclassified-113)
- [0.7.8 (2017-03-24)](#078-2017-03-24)
- [Documentation](#documentation-106)
- [Unclassified](#unclassified-114)
- [0.7.7 (2017-02-11)](#077-2017-02-11)
- [Unclassified](#unclassified-115)
- [0.7.6 (2017-02-11)](#076-2017-02-11)
- [Unclassified](#unclassified-116)
- [0.7.3 (2017-01-22)](#073-2017-01-22)
- [Unclassified](#unclassified-117)
- [0.7.2 (2017-01-02)](#072-2017-01-02)
- [Unclassified](#unclassified-118)
- [0.7.1 (2016-12-30)](#071-2016-12-30)
- [Unclassified](#unclassified-119)
- [0.7.0 (2016-12-30)](#070-2016-12-30)
- [Documentation](#documentation-107)
- [Unclassified](#unclassified-120)
- [0.6.10 (2016-12-26)](#0610-2016-12-26)
- [Unclassified](#unclassified-121)
- [0.6.9 (2016-12-20)](#069-2016-12-20)
- [Documentation](#documentation-108)
- [Unclassified](#unclassified-122)
- [0.6.8 (2016-12-06)](#068-2016-12-06)
- [Unclassified](#unclassified-123)
- [0.6.7 (2016-12-04)](#067-2016-12-04)
- [Unclassified](#unclassified-124)
- [0.6.6 (2016-12-04)](#066-2016-12-04)
- [Documentation](#documentation-109)
- [Unclassified](#unclassified-125)
- [0.6.5 (2016-11-28)](#065-2016-11-28)
- [Unclassified](#unclassified-126)
- [0.6.4 (2016-11-22)](#064-2016-11-22)
- [Unclassified](#unclassified-127)
- [0.6.3 (2016-11-17)](#063-2016-11-17)
- [Documentation](#documentation-110)
- [Unclassified](#unclassified-128)
- [0.6.2 (2016-11-05)](#062-2016-11-05)
- [Unclassified](#unclassified-129)
- [0.6.1 (2016-10-26)](#061-2016-10-26)
- [Documentation](#documentation-111)
- [Unclassified](#unclassified-130)
- [0.6.0 (2016-10-25)](#060-2016-10-25)
- [Unclassified](#unclassified-131)
- [0.5.8 (2016-10-06)](#058-2016-10-06)
- [Unclassified](#unclassified-132)
- [0.5.7 (2016-10-04)](#057-2016-10-04)
- [Unclassified](#unclassified-133)
- [0.5.6 (2016-10-03)](#056-2016-10-03)
- [Unclassified](#unclassified-134)
- [0.5.5 (2016-09-29)](#055-2016-09-29)
- [Unclassified](#unclassified-135)
- [0.5.4 (2016-09-29)](#054-2016-09-29)
- [Unclassified](#unclassified-136)
- [0.5.3 (2016-09-29)](#053-2016-09-29)
- [Documentation](#documentation-112)
- [Unclassified](#unclassified-137)
- [0.5.2 (2016-09-23)](#052-2016-09-23)
- [Unclassified](#unclassified-138)
- [0.5.1 (2016-09-22)](#051-2016-09-22)
- [Documentation](#documentation-113)
- [Unclassified](#unclassified-139)
- [0.4.3 (2016-09-03)](#043-2016-09-03)
- [Unclassified](#unclassified-140)
- [0.4.2-alpha.3 (2016-09-02)](#042-alpha3-2016-09-02)
- [Unclassified](#unclassified-141)
- [0.4.2-alpha.2 (2016-09-01)](#042-alpha2-2016-09-01)
- [Unclassified](#unclassified-142)
- [0.4.2-alpha.1 (2016-09-01)](#042-alpha1-2016-09-01)
- [Unclassified](#unclassified-143)
- [0.4.2-alpha (2016-09-01)](#042-alpha-2016-09-01)
- [Documentation](#documentation-114)
- [Unclassified](#unclassified-144)
- [0.4.1 (2016-08-18)](#041-2016-08-18)
- [Unclassified](#unclassified-145)
- [0.3.1 (2016-08-17)](#031-2016-08-17)
- [Documentation](#documentation-115)
- [Unclassified](#unclassified-146)
- [0.3.0 (2016-08-09)](#030-2016-08-09)
- [Unclassified](#unclassified-147)
- [0.2.0 (2016-08-09)](#020-2016-08-09)
- [Documentation](#documentation-116)
- [Unclassified](#unclassified-148)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
# [0.0.0](https://github.com/ory/hydra/compare/v2.2.0...v0.0.0) (2024-08-22)
## Breaking Changes
Deleting consents no longer returns 404 in certain edge cases but instead always 204.
### Bug Fixes
* Broken JSON round-tripping for custom claims ([b36b701](https://github.com/ory/hydra/commit/b36b701026d7d7324b0b04529f134d3ed1eb9eb7)):
Adding custom claims with numerical types (think JavaScript Number) previously did not
round-trip through Hydra correctly. For example, passing UNIX timestamps in custom claims
would end up as floating points in exponential notation in the final token. That, in turn,
confused or broke downstream consumers of the token, including Kratos.
Ref https://github.com/go-jose/go-jose/issues/144
* Correctly pass multiple token audiences and prompt parameters when performing the authorization code flow from the CLI ([#3736](https://github.com/ory/hydra/issues/3736)) ([632faef](https://github.com/ory/hydra/commit/632faef15228c2d0a2caedfc3d7c6a3782c2e131))
* Do not iteratively delete records ([#3766](https://github.com/ory/hydra/issues/3766)) ([5ef20a2](https://github.com/ory/hydra/commit/5ef20a2a2bc91ccde79517667ae4bf4a36c833ba)):
Resolves performance issues on some databases when deleting consent.
* Do not retry sending responses ([#3764](https://github.com/ory/hydra/issues/3764)) ([1bbfdb5](https://github.com/ory/hydra/commit/1bbfdb56e55525c5bc0526726fa901cf10af59e4))
* **docs:** Adjust note about SDK support on oauth2 flow endpoints ([#3812](https://github.com/ory/hydra/issues/3812)) ([d0e047c](https://github.com/ory/hydra/commit/d0e047ccc822972cf44ae6ec35c8f6e8507fe3ae))
* Error log when RP responds with status code 204 ([#3731](https://github.com/ory/hydra/issues/3731)) ([153e4b5](https://github.com/ory/hydra/commit/153e4b56e6de645ee44e4e7833c32a3890e43c54))
* Faster GetPublicKeys ([#3787](https://github.com/ory/hydra/issues/3787)) ([04c34aa](https://github.com/ory/hydra/commit/04c34aaf2e3c523f4658910d570de80de328d138)):
GetPublicKeys used to fetch all keys in a set, even if they were actually not being used. This patch fixes that.
* Incorrect context passthru ([fa50e3e](https://github.com/ory/hydra/commit/fa50e3e999ef962fb522dfa2f9a1f6ffa20848bf))
* Incorrect indices ([#3778](https://github.com/ory/hydra/issues/3778)) ([cb0004b](https://github.com/ory/hydra/commit/cb0004b67b2818b3bca397e98c1bb5bcbb62296f))
* Upgrade fosite and improve webhook integration ([#3727](https://github.com/ory/hydra/issues/3727)) ([89323e2](https://github.com/ory/hydra/commit/89323e24de470c2b0f3037e0cf8f99bc4373d4fd))
* Use docker compose rather than docker-compose ([#3815](https://github.com/ory/hydra/issues/3815)) ([ffdfb73](https://github.com/ory/hydra/commit/ffdfb7362a8de6f6f0608879bf034602f01ea250))
* Wrap authorize response in transaction ([#3763](https://github.com/ory/hydra/issues/3763)) ([5b106aa](https://github.com/ory/hydra/commit/5b106aadb0e71add56e3cc68e5a9e33cdb81dd39))
* Wrap token handler in transaction ([#3730](https://github.com/ory/hydra/issues/3730)) ([67a85cc](https://github.com/ory/hydra/commit/67a85cc799b5c6ef278db93aba131e695fd761e9))
### Features
* Add access token strategy parameter to cli ([#3718](https://github.com/ory/hydra/issues/3718)) ([7862dc3](https://github.com/ory/hydra/commit/7862dc337aba2899bdb945e94eb79d3ab3509202)), closes [#3717](https://github.com/ory/hydra/issues/3717)
* Add id parameter to create oauth2-client cli ([#3725](https://github.com/ory/hydra/issues/3725)) ([b372fd2](https://github.com/ory/hydra/commit/b372fd20169156efd7c34710f823e0c5b5dbf183)):
Fixes https://github.com/ory/hydra/issues/3724
* Add Inspect option to registry ([2013450](https://github.com/ory/hydra/commit/2013450a9a55af26523554c3aa01fc5243573f2c))
* Improve persistence logic ([#3756](https://github.com/ory/hydra/issues/3756)) ([50301e0](https://github.com/ory/hydra/commit/50301e0022ca64c9d0823544c7b664309620c70e))
### Unclassified
* update doc example for get oauth2-client ([5e70cde](https://github.com/ory/hydra/commit/5e70cde872f74758e22e89466c5b41e54d475533))
# [2.2.0](https://github.com/ory/hydra/compare/v2.2.0-pre.1...v2.2.0) (2024-02-12)
![Ory Hydra 2.2.0](http://ory.sh/images/newsletter/hydra-2.2.0/banner.png)
Ory Hydra, the OAuth2 and OpenID Connect server designed for web-scale deployments introduces its most advanced update with version 2.2!
Want to check out Ory Hydra yourself? Try common OAuth2 flows in the [Ory OAuth2 Get Started guide](https://www.ory.sh/docs/getting-started/ory-network-oauth2)!
This version significantly enhances performance, supporting six times more authorization flows than version 2.1, thanks to architectural improvements that minimize database interactions for login and consent processes.
Key improvements include:
- Enhanced integration with Ory Kratos, ensuring seamless synchronization of login and logout states across both services. Users logged out from Ory Hydra will automatically log out from Ory Kratos, enhancing security and user experience.
- The ability to bypass the logout consent screen for specific clients, streamlining the logout process.
- Simplified migration with the new feature to import OAuth2 Client IDs, making the transition to Ory Hydra smoother.
- Support for the OIDC Verifiable Credentials specification, expanding the server's capabilities in identity verification.
Thank all contributors who have made this release available!
### Bug Fixes
* Return empty slice if requested_scope or audience is null ([#3711](https://github.com/ory/hydra/issues/3711)) ([65165e7](https://github.com/ory/hydra/commit/65165e77718b37ee720a493f2fb6be20e6b04af6))
### Code Generation
* Pin v2.2.0 release commit ([57096be](https://github.com/ory/hydra/commit/57096be9befbde4a1436ef48338d253a248c91c4))
# [2.2.0-pre.1](https://github.com/ory/hydra/compare/v2.2.0-rc.3...v2.2.0-pre.1) (2024-02-01)
autogen: pin v2.2.0-pre.1 release commit
### Bug Fixes
* Correct id token type in token exchange response ([#3625](https://github.com/ory/hydra/issues/3625)) ([d1f9ba8](https://github.com/ory/hydra/commit/d1f9ba8edee45323e1f13dcf9c67eefbd524dc81)):
Closes https://github.com/ory/client-go/issues/2
* Dropped persistence/sql test errors ([#3670](https://github.com/ory/hydra/issues/3670)) ([22f0119](https://github.com/ory/hydra/commit/22f0119ad300c1e09c03e966a3d3411e57db444f))
* Handle logout double-submit gracefully ([#3675](https://github.com/ory/hydra/issues/3675)) ([5133cf9](https://github.com/ory/hydra/commit/5133cf972ecfca18d7799c00a7afeae6a4386fbf))
* Handle subject mismatch gracefully ([#3619](https://github.com/ory/hydra/issues/3619)) ([af0d477](https://github.com/ory/hydra/commit/af0d477e0eb1e336b01fa8d1321e9dce098c82a8)):
We now redirect to the original request URL if the subjects between
the remembered Hydra session and what was confirmed by the login
screen does not match.
* Handle token hook auth config ([#3677](https://github.com/ory/hydra/issues/3677)) ([1a40833](https://github.com/ory/hydra/commit/1a40833e2c87c98541d053f7c54b38f791dbb448)):
* fix: handle token hook auth config
* fix: bump golangci-lint
* Improved SSRF protection ([#3669](https://github.com/ory/hydra/issues/3669)) ([24c3be5](https://github.com/ory/hydra/commit/24c3be574a11a76e69f09a24754f20cf644b624c))
* Incorrect down migration ([#3708](https://github.com/ory/hydra/issues/3708)) ([8812e0e](https://github.com/ory/hydra/commit/8812e0e67b1f192de4ab6819c8f2bb98e6a5b7a7)), closes [/github.com/ory/hydra/pull/3705#discussion_r1471514014](https://github.com//github.com/ory/hydra/pull/3705/issues/discussion_r1471514014)
* Remove required mark ([#3693](https://github.com/ory/hydra/issues/3693)) ([3a764a0](https://github.com/ory/hydra/commit/3a764a053a3d7eab698668cf63d387ea76c1db40))
* Timeout in jwt-bearer grants when too many grants are available ([#3692](https://github.com/ory/hydra/issues/3692)) ([a748797](https://github.com/ory/hydra/commit/a748797761f5503b048df1b57bcc406f16cd40a3))
* Verifiable credentials JWT format ([#3614](https://github.com/ory/hydra/issues/3614)) ([0176adc](https://github.com/ory/hydra/commit/0176adc17848ab1dd021910ea31202dbdcd51737))
### Code Generation
* Pin v2.2.0-pre.1 release commit ([8168ee3](https://github.com/ory/hydra/commit/8168ee31161784b8a5e686a9a2c42f323e40b7bf))
### Documentation
* Fix typo ([#3649](https://github.com/ory/hydra/issues/3649)) ([f0501d2](https://github.com/ory/hydra/commit/f0501d2cd7f30c550cc07f6f583118efc9f12a5f))
### Features
* Add --skip-logout-consent flag to CLI ([#3709](https://github.com/ory/hydra/issues/3709)) ([f502d6e](https://github.com/ory/hydra/commit/f502d6e38747986cca2ce42b0854f194e85ed103))
* Add authentication options to hooks ([#3633](https://github.com/ory/hydra/issues/3633)) ([5c8e792](https://github.com/ory/hydra/commit/5c8e7923ed22f6d231ca748bb76e4261a87afb08))
* Add flag to export public keys ([#3684](https://github.com/ory/hydra/issues/3684)) ([62c006b](https://github.com/ory/hydra/commit/62c006b916351e7f74fb00e0006ea112801143d7))
* Add missing index for jwk table ([#3691](https://github.com/ory/hydra/issues/3691)) ([39ee5e1](https://github.com/ory/hydra/commit/39ee5e1f0cfa7fae5c4f9e1663a930cb5b8c2bc9))
* Add prompt=registration ([#3636](https://github.com/ory/hydra/issues/3636)) ([19857d2](https://github.com/ory/hydra/commit/19857d20b1d7d3b918de5388f17076de0660a6be)):
Ory Hydra now supports a `registration` value for the `prompt` parameter of
the authorization request. When specifying `prompt=registration`, Ory Hydra
will redirect the user to the URL found under `urls.registration`
(instead of `urls.login`).
* Add skip_logout_consent option to clients ([#3705](https://github.com/ory/hydra/issues/3705)) ([2a653e6](https://github.com/ory/hydra/commit/2a653e66803ddb03de02d981dbc8ea57b2ac0936)):
Adds a special field which disables the logout consent screen when performing OIDC logout.
* Allow injecting extra fosite strategies ([#3646](https://github.com/ory/hydra/issues/3646)) ([88b0b7c](https://github.com/ory/hydra/commit/88b0b7cfdf1a1968bf3a720cb2e6640451e2956b))
* Re-enable legacy client IDs ([#3628](https://github.com/ory/hydra/issues/3628)) ([5dd7d30](https://github.com/ory/hydra/commit/5dd7d306ba8181b1fff1225d056a2ee69183392e)):
This patch changes the primary key of the `hydra_client` table. We do not expect issues, as that table is probably not overly huge in any deployment. We do however highly recommend to test the migration performance on a staging environment with a similar database setup.
* Remove flow cookie ([#3639](https://github.com/ory/hydra/issues/3639)) ([cde3a30](https://github.com/ory/hydra/commit/cde3a30a92bc30cf072763503e9780a79ba44e43)):
This patch removes the flow cookie. All information is already tracked in the request query parameters as part of the {login|consent}_{challenge|verifier}.
* Remove login session cookie during consent flow ([#3667](https://github.com/ory/hydra/issues/3667)) ([5f41949](https://github.com/ory/hydra/commit/5f41949ad209c90d114dc427bd6ccde5e08f05da))
* Support multiple token URLs ([#3676](https://github.com/ory/hydra/issues/3676)) ([95cc273](https://github.com/ory/hydra/commit/95cc2735ed18374cc01d625c66417e42b600778d))
# [2.2.0-rc.3](https://github.com/ory/hydra/compare/v2.2.0-pre.0...v2.2.0-rc.3) (2023-08-16)
Introduces logout compatibility with Ory Kratos.
### Bug Fixes
* Add exceptions for internal IP addresses ([#3608](https://github.com/ory/hydra/issues/3608)) ([1f1121c](https://github.com/ory/hydra/commit/1f1121caef6dd2c99c2ab551bfeb82e3cd2d8cf2))
* Add kid to verifiable credential header ([#3606](https://github.com/ory/hydra/issues/3606)) ([9f1c8d1](https://github.com/ory/hydra/commit/9f1c8d192004e0e7d7f5c3383d4dd1df222dec81))
* Deflake ttl test ([6741a49](https://github.com/ory/hydra/commit/6741a49f7b4d55a270f3eb968921894b1e5f2989))
* Docker build ([#3609](https://github.com/ory/hydra/issues/3609)) ([01ff9da](https://github.com/ory/hydra/commit/01ff9da87e231a3cef8933c16a28ed425daa3355))
* Enable CORS with hot-reloaded origins ([#3601](https://github.com/ory/hydra/issues/3601)) ([6f592fc](https://github.com/ory/hydra/commit/6f592fc8425887fb403516cbb03838b63f85f87e))
* Only query access tokens by hashed signature ([a21e945](https://github.com/ory/hydra/commit/a21e94519416cc7801995b0804696348b18fa844))
* Racy random string generation ([#3555](https://github.com/ory/hydra/issues/3555)) ([1b26c4c](https://github.com/ory/hydra/commit/1b26c4cb96400b333fe214d2da892fc045bbc69f))
* Reject invalid JWKS in client configuration / dependency cleanup and bump ([#3603](https://github.com/ory/hydra/issues/3603)) ([1d73d83](https://github.com/ory/hydra/commit/1d73d83eb03e4ceef6edb4bd0738959007053118))
* Restore ability to override auth and token urls for exemplary app ([#3590](https://github.com/ory/hydra/issues/3590)) ([dfb129a](https://github.com/ory/hydra/commit/dfb129a5b7c8ae01e1c490fce1a127697abc7bee))
* Return proper error when the grant request cannot be parsed ([#3558](https://github.com/ory/hydra/issues/3558)) ([26f2d34](https://github.com/ory/hydra/commit/26f2d34459f55444e880e6e27e081c002d630246))
* Use correct tracer in middleware ([#3567](https://github.com/ory/hydra/issues/3567)) ([807cbd2](https://github.com/ory/hydra/commit/807cbd209af376b9b2d18c278cc927d1c43e6865))
### Code Generation
* Pin v2.2.0-rc.3 release commit ([ad8a4ba](https://github.com/ory/hydra/commit/ad8a4bab63b352c0b259a97d7b3f23247b0238b1))
### Features
* Add `hydra migrate status` subcommand ([#3579](https://github.com/ory/hydra/issues/3579)) ([749eb8d](https://github.com/ory/hydra/commit/749eb8db40fb8b2d6333d917fac6c25b6e5574ef))
* Add more resolution to events and collect client metrics ([#3568](https://github.com/ory/hydra/issues/3568)) ([466e66b](https://github.com/ory/hydra/commit/466e66bd1df7bf589c5a74ad5be399b1eaa80d9b))
* Add state override ([b8b9154](https://github.com/ory/hydra/commit/b8b9154077963492dad3ed0350a4d93d09a95602))
* Add support for OIDC VC ([#3575](https://github.com/ory/hydra/issues/3575)) ([219a7c0](https://github.com/ory/hydra/commit/219a7c068fa0ec423923f157553f430c80934c45)):
This adds initial support for issuing verifiable credentials
as specified in https://openid.net/specs/openid-connect-userinfo-vc-1_0.html.
Because the spec is still in draft, public identifiers are
suffixed with `draft_00`.
* Allow additional SQL migrations ([#3587](https://github.com/ory/hydra/issues/3587)) ([8900cbb](https://github.com/ory/hydra/commit/8900cbb770d6f39a5c3322fce488675ca6d0138a))
* Allow Go migrations ([#3602](https://github.com/ory/hydra/issues/3602)) ([8eed306](https://github.com/ory/hydra/commit/8eed306800fa330a1cda752dbb11ddf09faf25ad))
* Allow to disable claim mirroring ([#3563](https://github.com/ory/hydra/issues/3563)) ([c72a316](https://github.com/ory/hydra/commit/c72a31641ee79f090a2ac1b64a276be58312b2ee)):
This PR introduces another config option called `oauth2:mirror_top_level_claims` which may be used to disable the mirroring of custom claims into the `ext` claim of the jwt.
This new config option is an opt-in. If unused the behavior remains as-is to ensure backwards compatibility.
Example:
```yaml
oauth2:
allowed_top_level_claims:
- test_claim
mirror_top_level_claims: false # -> this will prevent test_claim to be mirrored within ext
```
Closes https://github.com/ory/hydra/issues/3348
* Bump fosite and add some more tracing ([0b56f53](https://github.com/ory/hydra/commit/0b56f53a491e165f68a53f013989328ce86928ba))
* **cmd:** Add route that redirects to the auth code url ([4db6416](https://github.com/ory/hydra/commit/4db64161699e4301c003b2787baecae22c912c17))
* Parallel generation of JSON web key set ([#3561](https://github.com/ory/hydra/issues/3561)) ([5bd9002](https://github.com/ory/hydra/commit/5bd9002db7baa2fe2c2529fee38825d66a68991f))
* Propagate logout to identity provider ([#3596](https://github.com/ory/hydra/issues/3596)) ([c004fee](https://github.com/ory/hydra/commit/c004fee69497a5a0f8af5ccb6a2ab8d104fd9249)):
* feat: propagate logout to identity provider
This commit improves the integration between Hydra and Kratos when logging
out the user.
This adds a new configuration key for configuring a Kratos admin URL.
Additionally, Kratos can send a session ID when accepting a login request.
If a session ID was specified and a Kratos admin URL was configured,
Hydra will disable the corresponding Kratos session through the admin API
if a frontchannel or backchannel logout was triggered.
* fix: add special case for MySQL
* chore: update sdk
* chore: consistent naming
* fix: cleanup persister
* Support different jwt scope claim strategies ([#3531](https://github.com/ory/hydra/issues/3531)) ([45da11e](https://github.com/ory/hydra/commit/45da11e4fb4f0a2f939f11682c095b8dbfcddb78))
# [2.2.0-pre.0](https://github.com/ory/hydra/compare/v2.2.0-rc.2...v2.2.0-pre.0) (2023-06-22)
Test release
### Code Generation
* Pin v2.2.0-pre.0 release commit ([116c1e8](https://github.com/ory/hydra/commit/116c1e89c423eebc333e2a9ff3e582090c5798a5))
### Features
* Add distroless docker image ([#3539](https://github.com/ory/hydra/issues/3539)) ([c1e1a56](https://github.com/ory/hydra/commit/c1e1a569621d88365dceee7372ca49ecd119f939))
* Add event tracing ([#3546](https://github.com/ory/hydra/issues/3546)) ([44ed0ac](https://github.com/ory/hydra/commit/44ed0ac89558bd83513e5240e8c937c908514d76))
# [2.2.0-rc.2](https://github.com/ory/hydra/compare/v2.2.0-rc.1...v2.2.0-rc.2) (2023-06-13)
This release optimizes the performance of authorization code grant flows by minimizing the number of database queries. We acheive this by storing the flow in an AEAD-encoded cookie and AEAD-encoded request parameters for the authentication and consent screens.
BREAKING CHANGE:
* The client that is used as part of the authorization grant flow is stored in the AEAD-encoding. Therefore, running flows will not observe updates to the client after they were started.
* Because the login and consent challenge values now include the AEAD-encoded flow, their size increased to around 1kB for a flow without any metadata (and increases linearly with the amount of metadata). Please adjust your ingress / gateway accordingly.
### Bug Fixes
* Version clash in apk install ([24ebdd3](https://github.com/ory/hydra/commit/24ebdd3feb302f655000a243dad032b04cf25afc))
### Code Generation
* Pin v2.2.0-rc.2 release commit ([b183040](https://github.com/ory/hydra/commit/b183040a0d6c33abd4db01eb21a1bb0e141ea9ec))
### Features
* Hot-reload Oauth2 CORS settings ([#3537](https://github.com/ory/hydra/issues/3537)) ([a8ecf80](https://github.com/ory/hydra/commit/a8ecf807b2c6bfa6cc2d8b474f527a2fda12daef))
* Sqa metrics v2 ([#3533](https://github.com/ory/hydra/issues/3533)) ([3ec683d](https://github.com/ory/hydra/commit/3ec683d7cf582443f29bd93c4c88392b3ce692a4))