forked from ory/kratos
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG.md
11804 lines (10058 loc) · 584 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**
- [ (2024-04-26)](#2024-04-26)
- [Breaking Changes](#breaking-changes)
- [Bug Fixes](#bug-fixes)
- [Features](#features)
- [Tests](#tests)
- [Unclassified](#unclassified)
- [1.1.0 (2024-02-20)](#110-2024-02-20)
- [Breaking Changes](#breaking-changes-1)
- [Bug Fixes](#bug-fixes-1)
- [Code Generation](#code-generation)
- [Documentation](#documentation)
- [Features](#features-1)
- [Reverts](#reverts)
- [Tests](#tests-1)
- [Unclassified](#unclassified-1)
- [1.0.0 (2023-07-12)](#100-2023-07-12)
- [Bug Fixes](#bug-fixes-2)
- [Code Generation](#code-generation-1)
- [Documentation](#documentation-1)
- [Features](#features-2)
- [Tests](#tests-2)
- [Unclassified](#unclassified-2)
- [0.13.0 (2023-04-18)](#0130-2023-04-18)
- [Breaking Changes](#breaking-changes-2)
- [Bug Fixes](#bug-fixes-3)
- [Code Generation](#code-generation-2)
- [Code Refactoring](#code-refactoring)
- [Documentation](#documentation-2)
- [Features](#features-3)
- [Tests](#tests-3)
- [Unclassified](#unclassified-3)
- [0.11.1 (2023-01-14)](#0111-2023-01-14)
- [Breaking Changes](#breaking-changes-3)
- [Bug Fixes](#bug-fixes-4)
- [Code Generation](#code-generation-3)
- [Documentation](#documentation-3)
- [Features](#features-4)
- [Tests](#tests-4)
- [0.11.0 (2022-12-02)](#0110-2022-12-02)
- [Code Generation](#code-generation-4)
- [Features](#features-5)
- [0.11.0-alpha.0.pre.2 (2022-11-28)](#0110-alpha0pre2-2022-11-28)
- [Breaking Changes](#breaking-changes-4)
- [Bug Fixes](#bug-fixes-5)
- [Code Generation](#code-generation-5)
- [Code Refactoring](#code-refactoring-1)
- [Documentation](#documentation-4)
- [Features](#features-6)
- [Reverts](#reverts-1)
- [Tests](#tests-5)
- [Unclassified](#unclassified-4)
- [0.10.1 (2022-06-01)](#0101-2022-06-01)
- [Bug Fixes](#bug-fixes-6)
- [Code Generation](#code-generation-6)
- [0.10.0 (2022-05-30)](#0100-2022-05-30)
- [Breaking Changes](#breaking-changes-5)
- [Bug Fixes](#bug-fixes-7)
- [Code Generation](#code-generation-7)
- [Code Refactoring](#code-refactoring-2)
- [Documentation](#documentation-5)
- [Features](#features-7)
- [Tests](#tests-6)
- [Unclassified](#unclassified-5)
- [0.9.0-alpha.3 (2022-03-25)](#090-alpha3-2022-03-25)
- [Breaking Changes](#breaking-changes-6)
- [Bug Fixes](#bug-fixes-8)
- [Code Generation](#code-generation-8)
- [Documentation](#documentation-6)
- [0.9.0-alpha.2 (2022-03-22)](#090-alpha2-2022-03-22)
- [Bug Fixes](#bug-fixes-9)
- [Code Generation](#code-generation-9)
- [0.9.0-alpha.1 (2022-03-21)](#090-alpha1-2022-03-21)
- [Breaking Changes](#breaking-changes-7)
- [Bug Fixes](#bug-fixes-10)
- [Code Generation](#code-generation-10)
- [Code Refactoring](#code-refactoring-3)
- [Documentation](#documentation-7)
- [Features](#features-8)
- [Tests](#tests-7)
- [Unclassified](#unclassified-6)
- [0.8.3-alpha.1.pre.0 (2022-01-21)](#083-alpha1pre0-2022-01-21)
- [Breaking Changes](#breaking-changes-8)
- [Bug Fixes](#bug-fixes-11)
- [Code Generation](#code-generation-11)
- [Code Refactoring](#code-refactoring-4)
- [Documentation](#documentation-8)
- [Features](#features-9)
- [Tests](#tests-8)
- [0.8.2-alpha.1 (2021-12-17)](#082-alpha1-2021-12-17)
- [Bug Fixes](#bug-fixes-12)
- [Code Generation](#code-generation-12)
- [Documentation](#documentation-9)
- [0.8.1-alpha.1 (2021-12-13)](#081-alpha1-2021-12-13)
- [Bug Fixes](#bug-fixes-13)
- [Code Generation](#code-generation-13)
- [Documentation](#documentation-10)
- [Features](#features-10)
- [Tests](#tests-9)
- [0.8.0-alpha.4.pre.0 (2021-11-09)](#080-alpha4pre0-2021-11-09)
- [Breaking Changes](#breaking-changes-9)
- [Bug Fixes](#bug-fixes-14)
- [Code Generation](#code-generation-14)
- [Documentation](#documentation-11)
- [Features](#features-11)
- [Tests](#tests-10)
- [0.8.0-alpha.3 (2021-10-28)](#080-alpha3-2021-10-28)
- [Bug Fixes](#bug-fixes-15)
- [Code Generation](#code-generation-15)
- [0.8.0-alpha.2 (2021-10-28)](#080-alpha2-2021-10-28)
- [Code Generation](#code-generation-16)
- [0.8.0-alpha.1 (2021-10-27)](#080-alpha1-2021-10-27)
- [Breaking Changes](#breaking-changes-10)
- [Bug Fixes](#bug-fixes-16)
- [Code Generation](#code-generation-17)
- [Code Refactoring](#code-refactoring-5)
- [Documentation](#documentation-12)
- [Features](#features-12)
- [Reverts](#reverts-2)
- [Tests](#tests-11)
- [Unclassified](#unclassified-7)
- [0.7.6-alpha.1 (2021-09-12)](#076-alpha1-2021-09-12)
- [Code Generation](#code-generation-18)
- [0.7.5-alpha.1 (2021-09-11)](#075-alpha1-2021-09-11)
- [Code Generation](#code-generation-19)
- [0.7.4-alpha.1 (2021-09-09)](#074-alpha1-2021-09-09)
- [Bug Fixes](#bug-fixes-17)
- [Code Generation](#code-generation-20)
- [Documentation](#documentation-13)
- [Features](#features-13)
- [Tests](#tests-12)
- [0.7.3-alpha.1 (2021-08-28)](#073-alpha1-2021-08-28)
- [Bug Fixes](#bug-fixes-18)
- [Code Generation](#code-generation-21)
- [Documentation](#documentation-14)
- [Features](#features-14)
- [0.7.1-alpha.1 (2021-07-22)](#071-alpha1-2021-07-22)
- [Bug Fixes](#bug-fixes-19)
- [Code Generation](#code-generation-22)
- [Documentation](#documentation-15)
- [Tests](#tests-13)
- [0.7.0-alpha.1 (2021-07-13)](#070-alpha1-2021-07-13)
- [Breaking Changes](#breaking-changes-11)
- [Bug Fixes](#bug-fixes-20)
- [Code Generation](#code-generation-23)
- [Code Refactoring](#code-refactoring-6)
- [Documentation](#documentation-16)
- [Features](#features-15)
- [Tests](#tests-14)
- [Unclassified](#unclassified-8)
- [0.6.3-alpha.1 (2021-05-17)](#063-alpha1-2021-05-17)
- [Breaking Changes](#breaking-changes-12)
- [Bug Fixes](#bug-fixes-21)
- [Code Generation](#code-generation-24)
- [Code Refactoring](#code-refactoring-7)
- [0.6.2-alpha.1 (2021-05-14)](#062-alpha1-2021-05-14)
- [Code Generation](#code-generation-25)
- [Documentation](#documentation-17)
- [0.6.1-alpha.1 (2021-05-11)](#061-alpha1-2021-05-11)
- [Code Generation](#code-generation-26)
- [Features](#features-16)
- [0.6.0-alpha.2 (2021-05-07)](#060-alpha2-2021-05-07)
- [Bug Fixes](#bug-fixes-22)
- [Code Generation](#code-generation-27)
- [Features](#features-17)
- [0.6.0-alpha.1 (2021-05-05)](#060-alpha1-2021-05-05)
- [Breaking Changes](#breaking-changes-13)
- [Bug Fixes](#bug-fixes-23)
- [Code Generation](#code-generation-28)
- [Code Refactoring](#code-refactoring-8)
- [Documentation](#documentation-18)
- [Features](#features-18)
- [Tests](#tests-15)
- [Unclassified](#unclassified-9)
- [0.5.5-alpha.1 (2020-12-09)](#055-alpha1-2020-12-09)
- [Bug Fixes](#bug-fixes-24)
- [Code Generation](#code-generation-29)
- [Documentation](#documentation-19)
- [Features](#features-19)
- [Tests](#tests-16)
- [Unclassified](#unclassified-10)
- [0.5.4-alpha.1 (2020-11-11)](#054-alpha1-2020-11-11)
- [Bug Fixes](#bug-fixes-25)
- [Code Generation](#code-generation-30)
- [Code Refactoring](#code-refactoring-9)
- [Documentation](#documentation-20)
- [Features](#features-20)
- [0.5.3-alpha.1 (2020-10-27)](#053-alpha1-2020-10-27)
- [Bug Fixes](#bug-fixes-26)
- [Code Generation](#code-generation-31)
- [Documentation](#documentation-21)
- [Features](#features-21)
- [Tests](#tests-17)
- [0.5.2-alpha.1 (2020-10-22)](#052-alpha1-2020-10-22)
- [Bug Fixes](#bug-fixes-27)
- [Code Generation](#code-generation-32)
- [Documentation](#documentation-22)
- [Tests](#tests-18)
- [0.5.1-alpha.1 (2020-10-20)](#051-alpha1-2020-10-20)
- [Bug Fixes](#bug-fixes-28)
- [Code Generation](#code-generation-33)
- [Documentation](#documentation-23)
- [Features](#features-22)
- [Tests](#tests-19)
- [Unclassified](#unclassified-11)
- [0.5.0-alpha.1 (2020-10-15)](#050-alpha1-2020-10-15)
- [Breaking Changes](#breaking-changes-14)
- [Bug Fixes](#bug-fixes-29)
- [Code Generation](#code-generation-34)
- [Code Refactoring](#code-refactoring-10)
- [Documentation](#documentation-24)
- [Features](#features-23)
- [Tests](#tests-20)
- [Unclassified](#unclassified-12)
- [0.4.6-alpha.1 (2020-07-13)](#046-alpha1-2020-07-13)
- [Bug Fixes](#bug-fixes-30)
- [Code Generation](#code-generation-35)
- [0.4.5-alpha.1 (2020-07-13)](#045-alpha1-2020-07-13)
- [Bug Fixes](#bug-fixes-31)
- [Code Generation](#code-generation-36)
- [0.4.4-alpha.1 (2020-07-10)](#044-alpha1-2020-07-10)
- [Bug Fixes](#bug-fixes-32)
- [Code Generation](#code-generation-37)
- [Documentation](#documentation-25)
- [0.4.3-alpha.1 (2020-07-08)](#043-alpha1-2020-07-08)
- [Bug Fixes](#bug-fixes-33)
- [Code Generation](#code-generation-38)
- [0.4.2-alpha.1 (2020-07-08)](#042-alpha1-2020-07-08)
- [Bug Fixes](#bug-fixes-34)
- [Code Generation](#code-generation-39)
- [0.4.0-alpha.1 (2020-07-08)](#040-alpha1-2020-07-08)
- [Breaking Changes](#breaking-changes-15)
- [Bug Fixes](#bug-fixes-35)
- [Code Generation](#code-generation-40)
- [Code Refactoring](#code-refactoring-11)
- [Documentation](#documentation-26)
- [Features](#features-24)
- [Unclassified](#unclassified-13)
- [0.3.0-alpha.1 (2020-05-15)](#030-alpha1-2020-05-15)
- [Breaking Changes](#breaking-changes-16)
- [Bug Fixes](#bug-fixes-36)
- [Chores](#chores)
- [Code Refactoring](#code-refactoring-12)
- [Documentation](#documentation-27)
- [Features](#features-25)
- [Unclassified](#unclassified-14)
- [0.2.1-alpha.1 (2020-05-05)](#021-alpha1-2020-05-05)
- [Chores](#chores-1)
- [Documentation](#documentation-28)
- [0.2.0-alpha.2 (2020-05-04)](#020-alpha2-2020-05-04)
- [Breaking Changes](#breaking-changes-17)
- [Bug Fixes](#bug-fixes-37)
- [Chores](#chores-2)
- [Code Refactoring](#code-refactoring-13)
- [Documentation](#documentation-29)
- [Features](#features-26)
- [Unclassified](#unclassified-15)
- [0.1.1-alpha.1 (2020-02-18)](#011-alpha1-2020-02-18)
- [Bug Fixes](#bug-fixes-38)
- [Code Refactoring](#code-refactoring-14)
- [Documentation](#documentation-30)
- [0.1.0-alpha.6 (2020-02-16)](#010-alpha6-2020-02-16)
- [Bug Fixes](#bug-fixes-39)
- [Code Refactoring](#code-refactoring-15)
- [Documentation](#documentation-31)
- [Features](#features-27)
- [0.1.0-alpha.5 (2020-02-06)](#010-alpha5-2020-02-06)
- [Documentation](#documentation-32)
- [Features](#features-28)
- [0.1.0-alpha.4 (2020-02-06)](#010-alpha4-2020-02-06)
- [Continuous Integration](#continuous-integration)
- [Documentation](#documentation-33)
- [0.1.0-alpha.3 (2020-02-06)](#010-alpha3-2020-02-06)
- [Continuous Integration](#continuous-integration-1)
- [0.1.0-alpha.2 (2020-02-03)](#010-alpha2-2020-02-03)
- [Bug Fixes](#bug-fixes-40)
- [Documentation](#documentation-34)
- [Features](#features-29)
- [Unclassified](#unclassified-16)
- [0.1.0-alpha.1 (2020-01-31)](#010-alpha1-2020-01-31)
- [Documentation](#documentation-35)
- [0.0.3-alpha.15 (2020-01-31)](#003-alpha15-2020-01-31)
- [Unclassified](#unclassified-17)
- [0.0.3-alpha.14 (2020-01-31)](#003-alpha14-2020-01-31)
- [Unclassified](#unclassified-18)
- [0.0.3-alpha.13 (2020-01-31)](#003-alpha13-2020-01-31)
- [Unclassified](#unclassified-19)
- [0.0.3-alpha.11 (2020-01-31)](#003-alpha11-2020-01-31)
- [Unclassified](#unclassified-20)
- [0.0.3-alpha.10 (2020-01-31)](#003-alpha10-2020-01-31)
- [Unclassified](#unclassified-21)
- [0.0.3-alpha.7 (2020-01-30)](#003-alpha7-2020-01-30)
- [Unclassified](#unclassified-22)
- [0.0.3-alpha.5 (2020-01-30)](#003-alpha5-2020-01-30)
- [Continuous Integration](#continuous-integration-2)
- [Unclassified](#unclassified-23)
- [0.0.3-alpha.4 (2020-01-30)](#003-alpha4-2020-01-30)
- [Unclassified](#unclassified-24)
- [0.0.3-alpha.2 (2020-01-30)](#003-alpha2-2020-01-30)
- [Unclassified](#unclassified-25)
- [0.0.3-alpha.1 (2020-01-30)](#003-alpha1-2020-01-30)
- [Unclassified](#unclassified-26)
- [0.0.1-alpha.9 (2020-01-29)](#001-alpha9-2020-01-29)
- [Continuous Integration](#continuous-integration-3)
- [0.0.2-alpha.1 (2020-01-29)](#002-alpha1-2020-01-29)
- [Unclassified](#unclassified-27)
- [0.0.1-alpha.6 (2020-01-29)](#001-alpha6-2020-01-29)
- [Continuous Integration](#continuous-integration-4)
- [0.0.1-alpha.5 (2020-01-29)](#001-alpha5-2020-01-29)
- [Continuous Integration](#continuous-integration-5)
- [Unclassified](#unclassified-28)
- [0.0.1-alpha.3 (2020-01-28)](#001-alpha3-2020-01-28)
- [Continuous Integration](#continuous-integration-6)
- [Documentation](#documentation-36)
- [Unclassified](#unclassified-29)
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
# [](https://github.com/ory/kratos/compare/v1.1.0...v) (2024-04-26)
## Breaking Changes
This feature enables two-step registration per default. Two-step registration is
a significantly improved sign up flow and recommended when using more than one
sign up methods. To disable two-step registration, set
`selfservice.flows.registration.enable_legacy_flow` to `true`. This value
defaults to `false`.
### Bug Fixes
- Add login succeeded event to post registration hook
([#3739](https://github.com/ory/kratos/issues/3739))
([b685fa5](https://github.com/ory/kratos/commit/b685fa5477be2ba099fd2420b27b2411fafc7e51))
- Add missing env vars to set up guide
([#3855](https://github.com/ory/kratos/issues/3855))
([da90502](https://github.com/ory/kratos/commit/da90502dc3bf8e3d34fb4ecc531834b1919989ad)):
Closes https://github.com/ory/kratos/issues/3828
- Add missing indexes and remove unused index
([6d7372e](https://github.com/ory/kratos/commit/6d7372ee3d88ee4fc552b969dd0ff338dcc0544c))
- Add missing indexes and remove unused index
([#3756](https://github.com/ory/kratos/issues/3756))
([c905f02](https://github.com/ory/kratos/commit/c905f02473c5d77ab309a45f10251b1ba7e88584))
- Add sms mfa via parameter to spec
([#3766](https://github.com/ory/kratos/issues/3766))
([b291c95](https://github.com/ory/kratos/commit/b291c959c18c72f5edc55607ab23b4592faf8d53))
- Allow updating just the verified_at timestamp of addresses
([#3880](https://github.com/ory/kratos/issues/3880))
([696cc1b](https://github.com/ory/kratos/commit/696cc1b59b18627fec63915070f4d8c5b3e3250d))
- Always issue session last ([#3876](https://github.com/ory/kratos/issues/3876))
([e942507](https://github.com/ory/kratos/commit/e94250705e999567e2ed58cebdb3f6a9d589e3ef)):
In post persist hooks, the session issuance hook always needs to come last.
This fixes the getHooks function to ensure this.
- Audit issues ([#3797](https://github.com/ory/kratos/issues/3797))
([7017490](https://github.com/ory/kratos/commit/7017490caa9c70e22d5c626773c0266521813ff5))
- Close res body ([#3870](https://github.com/ory/kratos/issues/3870))
([cc39f8d](https://github.com/ory/kratos/commit/cc39f8df7c235af0df616432bc4f88681896ad85))
- Db index and duplicate credentials error
([#3896](https://github.com/ory/kratos/issues/3896))
([9f34a21](https://github.com/ory/kratos/commit/9f34a21ea2035a5d33edd96753023a3c8c6c054c)):
- fix: don't return password cred type if empty
- fix: better index for config.user_handle on identity_credentials
- Do not require method to be passkey in settings schema
([#3862](https://github.com/ory/kratos/issues/3862))
([660f330](https://github.com/ory/kratos/commit/660f330ab69ef0e6fd21501fbc9dfed693d4a715))
- Don't require connection_uri in SMTP
([#3861](https://github.com/ory/kratos/issues/3861))
([800f8f1](https://github.com/ory/kratos/commit/800f8f1036ef46a561d24dcdec45dd48803978d7))
- Don't treat passkeys as AAL2
([#3853](https://github.com/ory/kratos/issues/3853))
([8eee972](https://github.com/ory/kratos/commit/8eee972d89accb02b3caa053fca2f16ed2c876f1))
- Drop index if exists ([#3846](https://github.com/ory/kratos/issues/3846))
([ad0619d](https://github.com/ory/kratos/commit/ad0619d803cd2842a67c56a545ec5ab252501b0f))
- Drop trigram index on identifiers
([#3827](https://github.com/ory/kratos/issues/3827))
([8f8fd90](https://github.com/ory/kratos/commit/8f8fd90304886ecd689a85fc60c4712e47526cdd))
- Enum type of session expandables
([#3891](https://github.com/ory/kratos/issues/3891))
([63d785e](https://github.com/ory/kratos/commit/63d785e5e73ff067ec804ecc2107fac1525d3688))
- Enum type of session expandables
([#3895](https://github.com/ory/kratos/issues/3895))
([c435727](https://github.com/ory/kratos/commit/c435727c1e3c70c040b7fc7648ce621b136e5fc2))
- Execute verification & verification_ui properly in login flows
([#3847](https://github.com/ory/kratos/issues/3847))
([5aad1c1](https://github.com/ory/kratos/commit/5aad1c1e6cc92f72af56511dacb9812edb600813))
- Ignore decrypt errors in WithDeclassifiedCredentials
([#3731](https://github.com/ory/kratos/issues/3731))
([8f5192f](https://github.com/ory/kratos/commit/8f5192fbb74c4b952029a6856284de8d59027770))
- Improve SDK discriminators
([#3844](https://github.com/ory/kratos/issues/3844))
([c08b3ad](https://github.com/ory/kratos/commit/c08b3ad76c5adb712c945cdbd92a9a51832e94b9))
- Include all creds in duplicate credential err
([#3881](https://github.com/ory/kratos/issues/3881))
([e06c241](https://github.com/ory/kratos/commit/e06c241ffe3f0e696bb1cbc1d1080f9d4e09fbd2))
- Linkedin issuer override ([#3875](https://github.com/ory/kratos/issues/3875))
([11d221a](https://github.com/ory/kratos/commit/11d221a4d33878930ca7025ae1b5c18b25dd1add))
- Make sure emails can still be sent with SMS enabled
([#3795](https://github.com/ory/kratos/issues/3795))
([7c68c5a](https://github.com/ory/kratos/commit/7c68c5aa69ed76a84a37a37a3555277ddc772cf8))
- Missing indices and foreign keys
([#3800](https://github.com/ory/kratos/issues/3800))
([0b32ce1](https://github.com/ory/kratos/commit/0b32ce113be47aa724d3468062ced09f8f60c52a))
- Passing transient payloads
([#3838](https://github.com/ory/kratos/issues/3838))
([d01b670](https://github.com/ory/kratos/commit/d01b6705bf36efb6e0f3d71ed22d0574ab8a98a4))
- Prevent SMTP URL leak on unparsable URL
([#3770](https://github.com/ory/kratos/issues/3770))
([c5f39f4](https://github.com/ory/kratos/commit/c5f39f4bc481e400f736ede7f8f0be546a55eebf))
- Respect return_to in OIDC API flow error case
([#3893](https://github.com/ory/kratos/issues/3893))
([e8f1bcb](https://github.com/ory/kratos/commit/e8f1bcb1342af994b8e08282aa4066ee00ffe7d4)):
- fix: respect return_to in OIDC API flow error case
This fix ensures that we redirect the user to the return_to URL when an error
occurs during the OIDC login for native flows.
Native flows are initialized through the API, and the browser URL is retrieved
from a 422 response after a POST to submit the login flow. Successful OIDC
flows already returned the `code` to the `return_to` URL. Now, unsuccessful
flows return the `flow` with the current flow ID (which might have changed),
so that the caller can retrieve the full flow and act accordingly.
- fix: ignore trivvy CVE report
Bump in distroless is still open
- **sdk:** Expand identity in session extension
([#3843](https://github.com/ory/kratos/issues/3843))
([04f0231](https://github.com/ory/kratos/commit/04f02318d4de5290cbf100e9b301284d5ee40fe7)),
closes [#3842](https://github.com/ory/kratos/issues/3842)
- **sdk:** Improve discriminators for node and Go
([#3821](https://github.com/ory/kratos/issues/3821))
([9ddf7cc](https://github.com/ory/kratos/commit/9ddf7cc7c52313c4ee13ccdc2886ad94b5d1317f))
- Show error page on identity mismatch
([#3790](https://github.com/ory/kratos/issues/3790))
([e6db689](https://github.com/ory/kratos/commit/e6db689e0de41067e6e78889c3dab9637a96236e))
- Test assertions on declassifying OIDC tokens
([#3773](https://github.com/ory/kratos/issues/3773))
([7f8a7f1](https://github.com/ory/kratos/commit/7f8a7f142a91c8c74f32eadb41224fc4f69c2109))
- Tolerate more "truthy" values when creating new flows
([#3841](https://github.com/ory/kratos/issues/3841))
([49d93c0](https://github.com/ory/kratos/commit/49d93c0e3383f602fe6be3c7bf749b54f344aa72)),
closes [#3839](https://github.com/ory/kratos/issues/3839):
Use strconv.ParseBool to accept multiple "truthy" values for the `refresh` and
`return_session_token_exchange_code` query parameters when creating a new
login flow.
For some SDKs (e.g.: Python), these stringification of booleans is not
user-controlled and these endpoints could not be used fully due to the backend
ignoring any value other than `true` (all lowercase).
- Tweaks to UpsertSessions ([#3878](https://github.com/ory/kratos/issues/3878))
([da51dcd](https://github.com/ory/kratos/commit/da51dcdb8c82a5dbd290ab2f48ad74a1c6dd18f0))
- Use correct post-verification identity state in post-hooks
([#3863](https://github.com/ory/kratos/issues/3863))
([6e63d06](https://github.com/ory/kratos/commit/6e63d06db1cd1ab62f8a2d0b202ec74572420204))
- Webhook transient payload in OIDC login flows
([#3857](https://github.com/ory/kratos/issues/3857))
([2cdfc70](https://github.com/ory/kratos/commit/2cdfc70c726a166790b98d419895f0396d13176f)):
- fix: transient payload with OIDC login
### Features
- Add `include_credential` query param to `/admin/identities` list call
([#3343](https://github.com/ory/kratos/issues/3343))
([d94530a](https://github.com/ory/kratos/commit/d94530a716358895b01b65babd77226fab69f494))
- Add headers to web hooks ([#3849](https://github.com/ory/kratos/issues/3849))
([4642de0](https://github.com/ory/kratos/commit/4642de0cfd1fb15bc48c7093be9449abd488755c))
- Add session to post login webhook
([#3877](https://github.com/ory/kratos/issues/3877))
([386078e](https://github.com/ory/kratos/commit/386078e0b5c74c54ce2c7dc6fd12fd865817b87a))
- Add transient payloads to all flows
([#3738](https://github.com/ory/kratos/issues/3738))
([b8b747b](https://github.com/ory/kratos/commit/b8b747b2adc59c8cf938a0ee30accdb4135634b8))
- Add twitter SSO ([#3778](https://github.com/ory/kratos/issues/3778))
([930fb19](https://github.com/ory/kratos/commit/930fb19842e527e5e9c415efa983b36e02829516))
- Add verification hook to login flow
([#3829](https://github.com/ory/kratos/issues/3829))
([43e4ead](https://github.com/ory/kratos/commit/43e4eadce7fa6e66bf1f9c03136d141bffd3094f))
- Control edge cache ttl ([#3808](https://github.com/ory/kratos/issues/3808))
([c9dcce5](https://github.com/ory/kratos/commit/c9dcce5a41137937df1aad7ac81170b443740f88))
- Linkedin v2 provider ([#3804](https://github.com/ory/kratos/issues/3804))
([a6ad983](https://github.com/ory/kratos/commit/a6ad983ac83aa3ea65c4dc0c46b582096574c25a)):
- feat: add linkedin-v2 provider
- docs: document linkedin special-case
- PassKeys with Resident Keys and two-step registration
([#3748](https://github.com/ory/kratos/issues/3748))
([3621411](https://github.com/ory/kratos/commit/3621411dc4386d841bc6766a5ab8d03e65812073))
- Send OIDC claim keys to tracing
([#3798](https://github.com/ory/kratos/issues/3798))
([04390be](https://github.com/ory/kratos/commit/04390bee426befe51af2ee8177afabaa9ce4fa80))
- Use authenticate endpoint for x
([#3833](https://github.com/ory/kratos/issues/3833))
([3d9ba5d](https://github.com/ory/kratos/commit/3d9ba5df85e0d0c4d8002365987e536b37678104)):
Improves the "Log in with X" experience by not asking the user to
re-authenticate every time.
### Tests
- Deflake session test ([#3864](https://github.com/ory/kratos/issues/3864))
([6b275f3](https://github.com/ory/kratos/commit/6b275f35a0732ffb723d47df5b6afbdc06eaf71f))
- Resolve failing test for empty tokens
([#3775](https://github.com/ory/kratos/issues/3775))
([7277368](https://github.com/ory/kratos/commit/7277368bc28df8f0badffc7e739cef20f05e9a02))
### Unclassified
- Remove unnecessary COPY command from Dockerfile (#3771)
([087748c](https://github.com/ory/kratos/commit/087748c0651ff0fc93259f7ab6b10668c09f5eba)),
closes [#3771](https://github.com/ory/kratos/issues/3771)
# [1.1.0](https://github.com/ory/kratos/compare/v1.0.0...v1.1.0) (2024-02-20)
![Ory Kratos v1.1.0](https://www.ory.sh/images/newsletter/kratos-1.1.0/banner.png)
Ory Kratos v1.1 is the most complete, most scalable, and most secure open-source
identity server on the planet, and we are thrilled to announce its release! This
release comes with over 270 commits and an incredible amount of new features and
capabilities!
- **Phone Verification & 2FA with SMS**: Enhance convenient security with phone
verification and two-factor authentication (2FA) via SMS, integrating easily
with SMS gateways like Twilio. This feature not only adds a convenient layer
of security but also offers a straightforward method for user verification,
increasing your trust in user accounts.
- **Translations & Internationalization**: Ory Kratos now supports multiple
languages, making it accessible to a global audience. This improvement
enhances the user experience by providing a localized interface, ensuring
users interact with the system in their preferred language.
- **Native Support for Sign in with Google and Apple on Android/iOS**: Get more
sign-ups with native support for "Sign in with Google" and "Sign in with
Apple" on mobile platforms. Great user experience matters!
- **Account Linking**: Simplify user management with new features that
facilitate account linking. If a user registers with a password and later
signs in with a social account sharing the same email, new screens make
account linking straightforward, enhancing user convenience and reducing
support inquiries.
- **Passwordless "Magic Code"**: Introduce a passwordless login method with
"Magic Code," which sends a one-time code to the user's email for sign-up and
login. This method can also serve as a fallback when users forget their
password or their social login is unavailable, streamlining the login process
and improving user accessibility.
- **Session to JWT Conversion**: Convert an Ory Session Cookie or Ory Session
Token into a JSON Web Token (JWT), providing more flexibility in handling
sessions and integrating with other systems. This feature allows for seamless
authentication and authorization processes across different platforms and
services.
**Note:** To ensure a seamless upgrade experience with minimal impact, some of
these features are gated behind the `feature_flags` config parameter, allowing
controlled deployment and testing.
The following features have been shipped exclusively to Ory Network for this
version:
- **[B2B SSO](https://www.ory.sh/docs/kratos/organizations)** allows your
customers to connect their LDAP / Okta / AD / … to your login. Ory selects the
correct login provider based on the user’s email domain.
- [\*\*Significantly better API performance](https://www.ory.sh/docs/api/eventual-consistency)\*\*
for expensive API operations by specifying the desired consistency
(`strong`, `eventual`).
- **Finding users effortlessly** with our new fuzzy search for credential
identifiers available for
the [Identity List API](https://www.ory.sh/docs/kratos/reference/api#tag/identity/operation/listIdentities).
- Better reliability when sending out emails across different providers.
- Streamlining the HTTP API and improving related SDK methods.
- Better performance when calling the whoami API endpoint, updating identities,
and listing identities.
- The performance of listing identities has significantly improved with the
introduction of keyset pagination. Page pagination is still available but will
be fully deprecated soon.
- Ability to list multiple identities in a batch call.
- Passkeys and WebAuthn now support multiple origins, useful when working with
subdomains.
- The logout flow now redirects the user back to the `return_to` parameter set
in the API call.
- When updating their settings, the user was sometimes incorrectly asked to
confirm the changes by providing their password. This issue has now been
fixed.
- When signing up with an account that already exists, the user will be shown a
hint helping them sign in to their existing account.
- CORS configuration can now be hot-reloaded.
- The integration with Ory OAuth2 / Ory Hydra has improved for logout, login
session management, verification, and recovery flows.
- A new passwordless method has been added: "Magic code". It sends a one-time
code to the user's email during sign-up and log-in. This method can
additionally be used as a fallback login method when the user forgets their
password.
- Integration with social sign-in has improved, and it is now possible to use
the email verified status from the social sign-in provider.
- Ory Elements and the default Ory Account Experience are now internationalized
with translations.
- It is now possible to convert an Ory Session Cookie or Ory Session Token into
a JSON Web Token.
- Recovery on native apps has improved significantly and no longer requires the
user to switch to a browser for the recovery step.
- Administrators can now find users by their identifiers with fuzzy search -
this feature is still in preview.
- Importing HMAC-hashed passwords is now possible.
- Webhooks can now update identity admin metadata.
- New screens have been added to make account linking possible when a user has
registered with a password and later tries signing in with a social account
sharing the same email.
- Ability to revoke all sessions of a user when they change their password.
- Webhooks are now available for all login, registration, and login methods,
including Passkeys, TOTP, and others.
- The login screen now longer shows “ID” for the primary identifier, but instead
extracts the correct label - for example, “Email” or “Username” from the
Identity Schema.
- Login hints help users with guidance when they are unable to sign in (wrong
social sign-in provider) but have an active account.
- Phone numbers can now be verified via an SMS gateway like Twilio.
- SMS OTP is now a two-factor option. Ory Kratos 1.1 is a major release that
marks a significant milestone in our journey.
We sincerely hope that you find these new features and improvements in Ory
Kratos 1.1 valuable for your projects. To experience the power of the latest
release, we encourage you to get the latest version of Ory
Kratos [here](https://github.com/ory/kratos) or leverage Ory Kratos
in [Ory Network](https://www.ory.sh/network/) — the easiest, simplest, and most
cost-effective way to run Ory.
For organizations seeking to upgrade their self-hosted solution, **Ory offers
enterprise support services to ensure a smooth transition**. Our team is ready
to assist you throughout the migration process, ensuring uninterrupted access to
the latest features and improvements. Additionally, we provide
various [support plans](https://www.ory.sh/support/) specifically tailored for
self-hosting organizations. These plans offer comprehensive assistance and
guidance to optimize your Ory deployments and meet your unique requirements. We
extend our heartfelt gratitude to the vibrant and supportive Ory Community.
Without your constant support, feedback, and contributions, reaching this
significant milestone would not have been possible. As we continue on this
journey, your feedback and suggestions are invaluable to us. Together, we are
shaping the future of identity management and authentication in the digital
landscape.
Contributors to this release in no particular
order: [moose115](https://github.com/ory/kratos/commits?author=moose115), [K3das](https://github.com/ory/kratos/commits?author=K3das), [sidartha](https://github.com/ory/kratos/commits?author=sidartha), [efesler](https://github.com/ory/kratos/commits?author=efesler), [BrandonNoad](https://github.com/ory/kratos/commits?author=BrandonNoad) ,[Saancreed](https://github.com/ory/kratos/commits?author=Saancreed), [jpogorzelski](https://github.com/ory/kratos/commits?author=jpogorzelski), [dreksx](https://github.com/ory/kratos/commits?author=dreksx), [martinloesethjensen](https://github.com/ory/kratos/commits?author=martinloesethjensen), [cpoyatos1](https://github.com/ory/kratos/commits?author=cpoyatos1), [misamu](https://github.com/ory/kratos/commits?author=misamu), [tristankenney](https://github.com/ory/kratos/commits?author=tristankenney), [nxy7](https://github.com/ory/kratos/commits?author=nxy7), [anhnmt](https://github.com/ory/kratos/commits?author=anhnmt)
Are you passionate about security and want to make a meaningful impact in one of
the biggest open-source communities? Join
the [Ory community](https://slack.ory.sh/) and become a part of the new ID
stack. Together, we are building the next generation of IAM solutions that
empower organizations and individuals to secure their identities effectively.
Want to check out Ory Kratos yourself? Use these commands to get your Ory Kratos
project running on the Ory Network:
```
brew install ory/tap/cli
scoop bucket add ory <https://github.com/ory/scoop.git>
scoop install ory
bash <(curl <https://raw.githubusercontent.com/ory/meta/master/install.sh>) -b . ory
sudo mv ./ory /usr/local/bin/
ory auth login
ory create project --name "My first Kratos project"
ory open account-experience registration
ory patch identity-config \
--replace '/identity/default_schema_id="preset://username"' \
--replace '/identity/schemas=[{"id":"preset://username","url":"preset://username"}]' \
--format yaml
ory open account-experience registration
```
## Breaking Changes
Pagination parameters for the `list identities` CLI command have changed from
arguments to flags `--page-token` and `page-size`:
```
- kratos list identities 1 100
+ kratos list identities --page-size 100 --page-token ...
```
Furthermore, the JSON / JSON pretty output of `list identities` has changed:
```patch
-[
- { "id": "..." },
- { /* ... */ },
- // ...
-]
+{
+ "identities": [
+ {"id": "..."},
+ { /* ... */ },
+ // ...
+ ],
+ "next_page_token": "..."
+}
```
Closes https://github.com/ory/sdk/issues/284 Closes
https://github.com/ory/kratos/pull/3480
### Bug Fixes
- `oidc` does not require a method in the payload
([#3564](https://github.com/ory/kratos/issues/3564))
([b299abc](https://github.com/ory/kratos/commit/b299abcfa1ebdb8bbb6bb9339f61873d5c77c44f)):
- fix: `oidc` does not require a method in the payload
- refactor: only update strategies order in test
- chore: update audit messages and comments
- Accept all 200 responses as OK in courier
([#3401](https://github.com/ory/kratos/issues/3401))
([88237e2](https://github.com/ory/kratos/commit/88237e25b080a9643f6cbf7eedbf23988ba9ba7c)),
closes [#3399](https://github.com/ory/kratos/issues/3399):
- fix: accept all 200 responses as OK in courier
- Accept login_challenge after verification
([#3427](https://github.com/ory/kratos/issues/3427))
([6b02350](https://github.com/ory/kratos/commit/6b02350c21aa65decd1bb16e559e1cc7dae42d55)):
Part of https://github.com/ory/network/issues/320
- Add caching to Jsonnet snippet during session JWT tokenization
([#3699](https://github.com/ory/kratos/issues/3699))
([1da8180](https://github.com/ory/kratos/commit/1da818072154baa5c0921134919afde595031e94))
- Add consistency flag ([#3733](https://github.com/ory/kratos/issues/3733))
([fd79950](https://github.com/ory/kratos/commit/fd7995077307cc101550eda5d7724ea1f68fa98a))
- Add max-age to default cors headers
([#3584](https://github.com/ory/kratos/issues/3584))
([c5b4aaa](https://github.com/ory/kratos/commit/c5b4aaa2df5d010b62a99ccf45850583daad3a66))
- Add missing tracing & attributes in oidc strategy
([#3429](https://github.com/ory/kratos/issues/3429))
([09bcb71](https://github.com/ory/kratos/commit/09bcb71f1f0b3238e2d0f4376a1a2290d062c6c1))
- Add return_to parameter to API spec of createRecoveryLinkForIdentity
([#3711](https://github.com/ory/kratos/issues/3711))
([757a5e4](https://github.com/ory/kratos/commit/757a5e43257e9ff28a16bfe76f8e737b656d3696))
- Add value code to authentication method enum
([#3546](https://github.com/ory/kratos/issues/3546))
([95dc7a2](https://github.com/ory/kratos/commit/95dc7a20f49aa682f324b70e507ec56c20159ebb)):
- fix: add value code to authentication method enum
- chore: generate sdk
- Additional_id_token_audiences key in config schema
([#3622](https://github.com/ory/kratos/issues/3622))
([9396bb0](https://github.com/ory/kratos/commit/9396bb0b586d1d1e74a85c0ae3bcf9de81214f1b))
- Adjust tracing verbosity
([976cd0d](https://github.com/ory/kratos/commit/976cd0dc3dd95c2c1992bfa82394e9fad39f34f2))
- Allow post recovery hooks to interrupt the flow
([#3393](https://github.com/ory/kratos/issues/3393))
([6c1d2f1](https://github.com/ory/kratos/commit/6c1d2f1e4173cfb9a7abe2bfe4f20e47b7568d3b))
- Allow updating admin metadata from webhook responses
([#3569](https://github.com/ory/kratos/issues/3569))
([22f61f0](https://github.com/ory/kratos/commit/22f61f015495c55e58db4f31ee6882444b9a3caf))
- Always return relative URLs in the Link header for pagination
([fb229c9](https://github.com/ory/kratos/commit/fb229c982c6f7d7a4f5f0f84ffc971a576906160))
- Auto migrate old accounts to use code credential
([#3581](https://github.com/ory/kratos/issues/3581))
([569b14a](https://github.com/ory/kratos/commit/569b14aba864761236bd3d5a48e4e69f10ea6c86))
- Carry `oauth2_login_challenge` over to registration flow
([#3419](https://github.com/ory/kratos/issues/3419))
([76241be](https://github.com/ory/kratos/commit/76241bee3dc7fec4690346ee85bc4b9f897fdd34)):
Fixes https://github.com/ory/kratos/issues/3321
- Change ListIdentities to keyset pagination
([e16fed1](https://github.com/ory/kratos/commit/e16fed1f8563509aac30886386668bb85e6dc797))
- Change shebangs and makefile from /bin/bash to /usr/bin/env bash
([#3597](https://github.com/ory/kratos/issues/3597))
([1343bbb](https://github.com/ory/kratos/commit/1343bbbfa11ff3e7fcbc0f233b858d13fd40c66d)):
- makefile fix
- shebangs changed to /usr/bin/env bash
Signed-off-by: nxy7 <[email protected]>
- Check whoami aal before accepting hydra login request
([#3669](https://github.com/ory/kratos/issues/3669))
([a2f79c3](https://github.com/ory/kratos/commit/a2f79c31f3208b88024897fc8bf1307ccac6f895))
- Code method on registration and 2fa
([#3481](https://github.com/ory/kratos/issues/3481))
([7aa2e29](https://github.com/ory/kratos/commit/7aa2e293175d0f4b6c13552cc3781f54f8caf3a0))
- Consider OIDC registration flows errored with duplicate credential to be
completed by strategy ([#3525](https://github.com/ory/kratos/issues/3525))
([3e3c789](https://github.com/ory/kratos/commit/3e3c78967523676cbce9a227d574c2f7f4ea314d)):
Returning anything else here may cause Kratos to respond with two concatenated
JSON objects: new login flow with actual error message as the first one and a
very confusing '500, aborted registration hook execution' as the second one.
- Csrf token regenerate on browser flows
([#3706](https://github.com/ory/kratos/issues/3706))
([e4908db](https://github.com/ory/kratos/commit/e4908dbe4a42fad5a80c4d46004e1e3710cabeb7)),
closes [#3705](https://github.com/ory/kratos/issues/3705)
- Data race in test
([ab6dc31](https://github.com/ory/kratos/commit/ab6dc3121535d27668fed58804a218b17b17ae43))
- Do not encode full config in multiple places
([#3500](https://github.com/ory/kratos/issues/3500))
([57a3273](https://github.com/ory/kratos/commit/57a3273055c6e8627dd0b736e881dba3fb0fe75d))
- Do not generate CSRF token for api flows
([#3704](https://github.com/ory/kratos/issues/3704))
([d93570d](https://github.com/ory/kratos/commit/d93570d330155c27a9315d1f530a0002a459910a))
- Do not initialize parts of the registry in parallel
([#3534](https://github.com/ory/kratos/issues/3534))
([ff177db](https://github.com/ory/kratos/commit/ff177db8a97f27abc3e883e79832685348602334))
- Don't list org SSOs in settings
([#3637](https://github.com/ory/kratos/issues/3637))
([6c7068c](https://github.com/ory/kratos/commit/6c7068cf41df51cde5fe9fc79cca84ec6124d38a))
- Don't require code credential for MFA flows
([#3753](https://github.com/ory/kratos/issues/3753))
([40ed809](https://github.com/ory/kratos/commit/40ed809db631149874864f216a106c43ea5df670))
- Don't require session for OIDC verification
([#3443](https://github.com/ory/kratos/issues/3443))
([e08f831](https://github.com/ory/kratos/commit/e08f831c2715e515bf58dc2dbb47fc3576421a5c))
- Don't return 500 on conflict for POST /admin/identities
([#3437](https://github.com/ory/kratos/issues/3437))
([1429949](https://github.com/ory/kratos/commit/142994932e449d9948148804502c98ef73daafff))
- Don't return nil if code is invalid
([#3662](https://github.com/ory/kratos/issues/3662))
([df8ec2b](https://github.com/ory/kratos/commit/df8ec2b9b77a53beb32e3f94a8fccb711896d8e7)):
- fix: don't return nil if code is invalid
- chore: add test
- Error handling on identity import
([#3520](https://github.com/ory/kratos/issues/3520))
([83bfb2d](https://github.com/ory/kratos/commit/83bfb2d2a9c69bf3a3442500b9484c1a69f8c794)):
When importing identities without any traits, or with malformed traits, 500s
are returned. This improves the error handling and messaging.
- False-positives for requiring re-authentication on update
([#3421](https://github.com/ory/kratos/issues/3421))
([ce8139f](https://github.com/ory/kratos/commit/ce8139f2325a8317388cbcaaa98f3f83d626657b))
- Http courier using should use lower case json
([#3740](https://github.com/ory/kratos/issues/3740))
([84149c4](https://github.com/ory/kratos/commit/84149c4b420ea89f0a16a579c017a8e7e1670204))
- Identity list pagination in CLI command and SDK
([#3482](https://github.com/ory/kratos/issues/3482))
([1e8b1ae](https://github.com/ory/kratos/commit/1e8b1aeb4bf866892788986f62a31255372de999)):
Adds correct pagination parameters to the SDK methods for listing identities
and sessions.
- Ignore CSRF middleware on Apple OIDC callback
([309c506](https://github.com/ory/kratos/commit/309c50694c11162cad070337f9b1d4e0fcdf444b))
- Ignore more cloudflare cookies
([#3499](https://github.com/ory/kratos/issues/3499))
([f124ab5](https://github.com/ory/kratos/commit/f124ab5586781cdbfc0a0cfd11b4355bfc8a115c))
- Improved SSRF protection ([#3629](https://github.com/ory/kratos/issues/3629))
([6d08576](https://github.com/ory/kratos/commit/6d08576bbc2c06014192f05e0129b95eb6c9fd80)):
This also improves tracing in the OIDC strategy.
- Incorrect login accept challenge
([#3658](https://github.com/ory/kratos/issues/3658))
([b5dede3](https://github.com/ory/kratos/commit/b5dede329247d0962688b15872a6caf027cf910f))
- Incorrect sdk generator path
([#3488](https://github.com/ory/kratos/issues/3488))
([ed996c0](https://github.com/ory/kratos/commit/ed996c0d25e68e8a2c7de861c546f0b0e42e9e6e))
- Incorrect SMTP error handling
([#3636](https://github.com/ory/kratos/issues/3636))
([ee138ec](https://github.com/ory/kratos/commit/ee138ec4e1ba55ef077858653220db9e6b0c7254))
- Incorrect swagger spec for filter parameter
([#3684](https://github.com/ory/kratos/issues/3684))
([2c1470a](https://github.com/ory/kratos/commit/2c1470ab3556e639f06a01ac1646a6b90c7ecac7)),
closes [#3676](https://github.com/ory/kratos/issues/3676)
[#3675](https://github.com/ory/kratos/issues/3675)
- Increase connection-level timeouts and shutdown timeouts
([#3570](https://github.com/ory/kratos/issues/3570))
([200b413](https://github.com/ory/kratos/commit/200b4138a429d113ee045d16031bb0a6312c1c01)):
The admin API is generally expected to require longer timeouts, for example
during bulk identity import.
- Issue session after verification after registration with OIDC SSO
([#3467](https://github.com/ory/kratos/issues/3467))
([a28b523](https://github.com/ory/kratos/commit/a28b523238743f3873b51479eea3b86d684092f9))
- Lint
([e8740c3](https://github.com/ory/kratos/commit/e8740c3498446dcaeab2990604a317e61dc170df))
- Lower-case recovery & verification emails on import
([#3571](https://github.com/ory/kratos/issues/3571))
([e2ac9ff](https://github.com/ory/kratos/commit/e2ac9ff4e2101788f1fca1b8c83f8791cce446e2)):
Emails that contained upper-case characters would be overwritten by the
identity schema extension runner, because there all emails are lower-cased.
- Mark identity as optional in session struct
([#3463](https://github.com/ory/kratos/issues/3463))
([7ae02ba](https://github.com/ory/kratos/commit/7ae02ba697f68c9cfae5fe8f696b2c55a3ba9ddc)),
closes [#3461](https://github.com/ory/kratos/issues/3461):
The identity is not always available in the session struct, for example when
AAL2 is required.
- Omit irrelevant OIDC providers in forced refresh login flows
([#3608](https://github.com/ory/kratos/issues/3608))
([912dccd](https://github.com/ory/kratos/commit/912dccdf04a550604c5bfeb53ccf79c5f1133ef2)):
Whenever an user is asked to reauthenticate (e.g. because they wish to execute
settings flow touching their credentials and their session is no longer
privileged) they are asked to provide their credentials again. The
forced-refresh login flow generated for such cases already excludes some
strategies that are enabled in Kratos but cannot be used to authenticate as
current identity, and for example the form presented to the user will not have
a password field if the identity does not have a password credential.
This, however, does not currently apply to OIDC providers; the user will
always see the full set even if some of them can't be used to sign in as
current identity. This change causes forced refresh login flows to also omit
irrelevant OIDC providers in generated form in order to avoid confunding the
user about which strategies/providers are valid and can actually be used to
reauthenticate.
- On verification required after registration, preserve return_to
([#3589](https://github.com/ory/kratos/issues/3589))
([6a0a914](https://github.com/ory/kratos/commit/6a0a9149b9828ba994bec9b48a43f9d70245f43f)):
- fix: on verification required after registration, preserve return_to
- test: return_to on verification flow
- chore: refactor
- Panic in recovery ([#3639](https://github.com/ory/kratos/issues/3639))
([c25ddff](https://github.com/ory/kratos/commit/c25ddffd2270a8d0861e2fc78cd0ba26e63af4eb))
- Pass context ([#3452](https://github.com/ory/kratos/issues/3452))
([c492bdc](https://github.com/ory/kratos/commit/c492bdcd0c5dbdf527ae523d879a6c1eeb9c4cdf))
- Properly normalize OIDC verified emails
([#3450](https://github.com/ory/kratos/issues/3450))
([703b910](https://github.com/ory/kratos/commit/703b910927d879558bfeb0fd2c3339b1d301fac8))
- Redirect to verification URL even if login_challenge is set
([#3412](https://github.com/ory/kratos/issues/3412))
([cd9e6a0](https://github.com/ory/kratos/commit/cd9e6a0e1e4cb4957d2a50ae3d288ebb0591e42d)):
Fixes https://github.com/ory/network/issues/320
- Reduce db lookups in whoami for aal check
([#3372](https://github.com/ory/kratos/issues/3372))
([d814a48](https://github.com/ory/kratos/commit/d814a4864d5c25c4f320daca733873577d517331)):
Significantly improves performance by reducing the amount of queries we need
to do when checking for the different AAL levels.
- Registration code ui nodes group
([#3505](https://github.com/ory/kratos/issues/3505))
([6220184](https://github.com/ory/kratos/commit/622018459ddb16c182da49dfd91fd1c6ef8c6b73)):
- fix: registration code ui nodes group
- style: format
- Registration should accept hydra login
([#3592](https://github.com/ory/kratos/issues/3592))
([7a47827](https://github.com/ory/kratos/commit/7a47827cfd58ef68ebfbbeaf5ed86c394ba2bd5e)):
- fix: registration should accept hydra login
- fix: oauth2 registration flow with session
- wip: registration oauth flow tests
- wip: refactor oauth flows test
- wip: refactor op_registration_test
- wip: oauth provider registration test
- wip: refactor oauth flows test
- fix(test): oauth provider login
- style: format