forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.json
2346 lines (2346 loc) · 84.9 KB
/
CHANGELOG.json
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
{
"name": "@azure/msal-browser",
"entries": [
{
"date": "Mon, 21 Nov 2022 19:14:45 GMT",
"tag": "@azure/msal-browser_v2.32.0",
"version": "2.32.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "86a80ac5b9d6db617cbe268aba4cbf50970b3fe9",
"comment": "Export popup attributes #5364"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "3abd22bdd6a3360822f442c5f9408c7d8e47fdde",
"comment": "Added logging to Authority class"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v9.0.0",
"commit": "b6454bd1ff556f8d3482689d6a769e5e659a9f7d"
}
]
}
},
{
"date": "Mon, 07 Nov 2022 22:46:55 GMT",
"tag": "@azure/msal-browser_v2.31.0",
"version": "2.31.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "049d82bda9e1fc90e7ba4bb0d5e175c15882beb1",
"comment": "Add MATS fields to telemetry #5308"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "8e3282f6ddfe949a08e33424c3b05b9d219ab715",
"comment": "Fix double prompt in native broker redirect flow #5239"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "cf5c5886ccc94ab273b6fabe577ebbca9d4bdd38",
"comment": "Add static fields to telemetry #5224"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v8.0.0",
"commit": "ae6f326996be7eec25faa19d3f714b860a424878"
}
]
}
},
{
"date": "Mon, 10 Oct 2022 22:27:02 GMT",
"tag": "@azure/msal-browser_v2.30.0",
"version": "2.30.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "a13f3bd96113821e9bed4d5c95f82e7b205def48",
"comment": "Extend msal-browser TokenCache to load refresh tokens #5233"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "01171423cfbbf37f445316abacfd2caafc51146a",
"comment": "Make popup poll interval configurable #5276"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v7.6.0",
"commit": "1bb8ed44ca44617636fb62199deb005d69341fb7"
}
]
}
},
{
"date": "Mon, 03 Oct 2022 22:12:26 GMT",
"tag": "@azure/msal-browser_v2.29.0",
"version": "2.29.0",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "64e4116894106694d3f904e5eff885f958fd82ea",
"comment": "Update package-lock.json for published releases #5213"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "0d8f85e56eb9d67ee6c3b2cdd866a30aa6fd8225",
"comment": "Implemented Cache Lookup Policy for acquireTokenSilent #5014"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "53b25d537a22c9491094083407264615d14df15e",
"comment": "Add support for MSR Crypto #3826"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "fa3f0d8f63e1980945f2c5bdcb4891f0a50f012c",
"comment": "Add x-ms-request-id to perf telemetry logging #5244"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "886338aea3543f961f2dbce7814938e874a6955a",
"comment": "Added 'no_session' to prompt enum #5131"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v7.5.0",
"commit": "22b4edc74bd5a561ded056cf6451a8371598c76c"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "be0c85f6d4940c5f1f3e95c17f3235cb8099559b",
"comment": "Include Refresh token size in perf telemetry data #5250"
}
]
}
},
{
"date": "Mon, 12 Sep 2022 18:19:32 GMT",
"tag": "@azure/msal-browser_v2.28.3",
"version": "2.28.3",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "ffde7158aba741b804d5558fc162c1f1c45c28cd",
"comment": "Post Release September 2022 #5186"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "b393c6d0c8d7aa142f3b138ce2ffc185039cf203",
"comment": "Fix keystore clearing on Firefox #5112"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "318bba8273151a6260c59461d352ef6e33d129ad",
"comment": "Restore error codes for acquireTokenSilent telemetry #5190"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v7.4.1",
"commit": "cf19d12246949f9cb99f4853953cbefb7d27009e"
}
]
}
},
{
"date": "Fri, 02 Sep 2022 18:06:53 GMT",
"tag": "@azure/msal-browser_v2.28.2",
"version": "2.28.2",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "5a31694427f380f643df9848d19f44f7cac2cddb",
"comment": "Exposed raw id token on account info objects #5036"
}
],
"patch": [
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v7.4.0",
"commit": "75e3189e8cf3d46497a7587d7f221057a5f0ede6"
}
]
}
},
{
"date": "Mon, 01 Aug 2022 22:22:35 GMT",
"tag": "@azure/msal-browser_v2.28.1",
"version": "2.28.1",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "cbd1697063b933c8b6bca93a14a645d1ef471f5c",
"comment": "Rename native request property scopes to scope #5043"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "e035fe595a8f4b809514b1ad26ec9f7e3eb41161",
"comment": "adding network performance measurement #4834"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "9520dd864e2fef29ceb8d8969d5c6ac88ea73a33",
"comment": "Send login_hint claim instead of sid if available #4990"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v7.3.0",
"commit": "9ddeaca3f2b983b459cd0b4651aa4a7adc10e18c"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "c8eb53d59a2df026832a914284c0bfb61486a016",
"comment": " Package-lock updates"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "674ff0c4a543fb2b5b52f3a7aed4fe32b387b7b2",
"comment": "Update package-lock"
}
]
}
},
{
"date": "Mon, 18 Jul 2022 23:26:21 GMT",
"tag": "@azure/msal-browser_v2.28.0",
"version": "2.28.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "0c23631c04e48d14115fd7f2c74e3367bec6ea6f",
"comment": "Added new token size field in the perf telemetry data #4973"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "1cf6266c2a5e52067744fe800772a7740670ca75",
"comment": "Add local cache support for JS-WAM bridge #4971"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v7.2.0",
"commit": "1b74296d45864f3721895819733ea5ee39006b6f"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "aff6dd392ec3a07b6ef0375f625dbcb9617c2dbf",
"comment": "Fix bug with activeAccount when two accounts have same local account id #5004"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "ff3a2452ff8778a56df04065b798ed827589b434",
"comment": "Update package-locks to fix CI issue #5005"
}
]
}
},
{
"date": "Tue, 05 Jul 2022 22:37:04 GMT",
"tag": "@azure/msal-browser_v2.27.0",
"version": "2.27.0",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "23d16b6a21bd89485c6471decbab10c157d0ef15",
"comment": {
"title": "updated the function description for createRedirectClient()",
"value": ""
}
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "6dfc1ebe77fe97964f194da0d9efc82a920a2bed",
"comment": "Update unit tests with jwks_uri #4905"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "48f2df2559f6446fdeb5aa69335e6e5a369b647a",
"comment": "Update WAM docs #4952"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "560fe1d158719556d1aba93bf973b1fbdd620d59",
"comment": "Fix prompt behavior for native broker requests #4949"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "867516c11c83639890abe2fcd6fc6e73ed659644",
"comment": "Non-fatal native broker errors should clear interaction in progress flag #4950"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "bb972bebeccfb8e4fd3d5fc4c8fc857abfc0e59f",
"comment": "Mark temporary cache cookies as SameSite lax #4957"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "d501fbdded20ff9bdadfe02dc46e13a6e6ed4e56",
"comment": "Handle ACCOUNT_UNAVAILABLE error status from native broker #4951"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "37dbd0a0c751d9aef0371b813122d89e978ff57e",
"comment": "feat: adding authority metadata resiliency #4536"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v7.1.0",
"commit": "bfd3760ce1aca6b4be8ae937606215676a72e5c5"
}
]
}
},
{
"date": "Mon, 13 Jun 2022 22:28:09 GMT",
"tag": "@azure/msal-browser_v2.26.0",
"version": "2.26.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "17bf0dd14cc1b23bd43a531d73c878ccd09e66e9",
"comment": "Add errorCode and subErrorCode to client telemetry events (#4863)"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v7.0.0",
"commit": "e325d870a211b4ad6fa97bb95b6b224299247940"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "49d6a3dde3e09a12ee01aeae52137e3c007649e8",
"comment": "Add strict assertion checks for OBO clients (#4691)"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "d7836e8cdad77b5990ecbd4a278ebce097633478",
"comment": "Update redirect_in_iframe message to include messaging for embedded applications #4895"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "00e44cc4bc966d8e4e8a57c0207d4ba26557c88e",
"comment": "preflightBrowserEnvironmentCheck should not always set interaction in progress #4893"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "a78532e3aec29b2ba0b0650f98d065e78c0fac88",
"comment": "Return correct fromCache value when tokens are acquired from native broker #4880"
}
]
}
},
{
"date": "Mon, 06 Jun 2022 22:13:00 GMT",
"tag": "@azure/msal-browser_v2.25.0",
"version": "2.25.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "ce0df0236f729feefce4c85470046e74a7e94961",
"comment": "Add keyId to SHR header and make x5c_ca claim type string array #4729"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "96db5ab0dbe4774bd4b79d56d73d12c54789e41a",
"comment": "Fixes assignment of expiresOn inside loadExternalTokens to fix issue where all access tokens appear expired during E2E #4711"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "3b8942d3cf281352236b820c931a89b4dbcbf85b",
"comment": "SHR params renamed as per MSAL JS's naming convention #4794"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "abdbeb5323698de03795131ca23f040a6e32f0b7",
"comment": "Fallback to web flow when native broker throws 'DISABLED' status #4837"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "64215f9509abdce13ae45d86851d6cb399700fa3",
"comment": "Change log message level in initialize from warning to info #4820"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "214bee3d2fa81f23a742369315a140b89732e68d",
"comment": "Fix empty hash errors in popups #4793"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "90365303db30da0fb4817b3e075db137a1ee3e33",
"comment": "Add PoP support for Encrypted Access Tokens #4730"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v6.4.0",
"commit": "3b8942d3cf281352236b820c931a89b4dbcbf85b"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "db858a9ef01e9fb4022da75dcdc8f28713099d89",
"comment": "Fix failing unit tests #4783"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "79d96ca89542170be24d22dc6750d3f20783dd35"
}
]
}
},
{
"date": "Mon, 02 May 2022 22:23:33 GMT",
"tag": "@azure/msal-browser_v2.24.0",
"version": "2.24.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "cbf5e7a6c81d01ce40bfbcbca9be158c5ee395aa",
"comment": "Fix for WAM window parenting #4755"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "b2a0deb2d8bdced83ea9eae67cfe61defec6944d",
"comment": "Ensure interaction status is properly set during logout with onRedirectNavigate #4719"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "87dc6cdf90ab29668dfb82ba27ab6ed80743312b",
"comment": "Move internals needed for msal-browser-1p to separate export #4742"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "cb93cc7e0deadefac126b23c3326c4b2aa4be142",
"comment": "Add support for acquiring tokens from the native broker #4531"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v6.3.0",
"commit": "cbf5e7a6c81d01ce40bfbcbca9be158c5ee395aa"
}
]
}
},
{
"date": "Mon, 04 Apr 2022 21:12:42 GMT",
"tag": "@azure/msal-browser_v2.23.0",
"version": "2.23.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "561749e626ffa0ac14e0708dda0eb3b7ea208780",
"comment": "Add performance telemetry API #4570"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "b3cc863ed0decc5a088d16ee0c9489dbb44a4bff",
"comment": "Add Client Application telemetry parameters to MSAL #4616"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v6.2.0",
"commit": "63c34341780208480edc2f86e623ba12a7f847c3"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "be68c190f5561e1a8e7c3144cfee35a5dbc5f109",
"comment": "Fix persistent key store deletion on logout #4617"
}
]
}
},
{
"date": "Mon, 07 Mar 2022 23:28:43 GMT",
"tag": "@azure/msal-browser_v2.22.1",
"version": "2.22.1",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "131bde21ec44897898a8f461e80d3865129b6b6e",
"comment": "Clear temporary cache when back button is clicked during redirect flow #4513"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "8fba82a563a25eb92f5d071f0358ef24c4304595",
"comment": "Don't reassign request object properties #4563"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "a67bd3b8d476268e1ac18840e6b03828c87f34d5",
"comment": "Unit tests only"
}
]
}
},
{
"date": "Tue, 08 Feb 2022 00:41:06 GMT",
"tag": "@azure/msal-browser_v2.22.0",
"version": "2.22.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "4c7418a6a76f29706ff0e5f7efd890d22fa4af0b",
"comment": "Add support for logout_hint #4450"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "d576b7d35f8f24e53946c72bc78c0401a8d2dc86",
"comment": "Add AzureCloudInstance to JS libraries"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v6.1.0",
"commit": "639253acbc825e1f19ca712bc72dce8da149e3e8"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "19f76b1d9cd2b0f1a4a7e4765c8ee9e7e17f3d59",
"comment": "Test changes #4383"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "27c04e7adc601b0855714540c2d55ab3dc8e5256",
"comment": "Fix typo in logger message #4385"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "5767008f8ef9f3b05aeba421cc4aa6c6bb616e86",
"comment": "fix: update package-lock files"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "67ce881faa2a6931320541d99de2efe4e9ba6a3f",
"comment": "Expose OIDC_DEFAULT_SCOPES constant #4280"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "729c4a180f8c4f8ba97856af9ad3d626ffad6416",
"comment": "Improve reliability of interaction_in_progress #4460"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "6808be4858c97d4f7d31eda2b6d2a8403f8c6e0f",
"comment": "Clear hash only if it contains known response properties #4415"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "597d8d95e15f1bfc7e62a6346733661cc2454d12",
"comment": "Adding exports and other changes for extensibility #4459"
}
]
}
},
{
"date": "Tue, 04 Jan 2022 00:20:29 GMT",
"tag": "@azure/msal-browser_v2.21.0",
"version": "2.21.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "60e2cfc0e9daa3c24e994617b4ac42aef6880b74",
"comment": "Add support for requested claims in silent token acquisition #4296"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v6.0.0",
"commit": "bd9b1af91c278926ab2e6943cf90817a7ac4957b"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "e3c66105f3bf617dc4fd06905e04b37e865c303c",
"comment": "Clear interaction status even if there is no ongoing request #4314"
}
]
}
},
{
"date": "Tue, 07 Dec 2021 00:17:01 GMT",
"tag": "@azure/msal-browser_v2.20.0",
"version": "2.20.0",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "8259de7520d2940d290332cd03c5b8babeb0966e",
"comment": "deps: run an audit fix on msal-browser"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "02dbd9172368bfc69e4a47f01a3ada0b96345c81",
"comment": "Package.json updates"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "4741b6c3a6a3dd58feefde93c095c05e1eca5e03",
"comment": "Add acquireTokenByCode API for hybrid spa flow #3978"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v5.2.0",
"commit": "d7c209f7aa3ae4380a77a31ff1319fbf7201ae45"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "e983e25ba899bb437a135ec50ad6c77023c72e5b",
"comment": "Fix circular dependencies in AuthenticationHeaderParser and AsyncMemoryStorage #4235"
}
]
}
},
{
"date": "Mon, 01 Nov 2021 23:53:21 GMT",
"tag": "@azure/msal-browser_v2.19.0",
"version": "2.19.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "51669adf5e2fe446bf94925fe77762b64e9513fc",
"comment": "Add support for in-memory storage of token binding keys #4183"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "a81fcef3d82523e03828d91bb0ee8d2ab2cc20d8",
"comment": "Add support for ephemeral SSH certificate acquisition #4178"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "51669adf5e2fe446bf94925fe77762b64e9513fc",
"comment": "Add support for in-memory storage of token binding keys #4183"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "5b350a5f97b43e1a5a87153bb4a13632f7c615b9",
"comment": "Add support for SHR nonce #3999"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v5.1.0",
"commit": "6ac29855822ce1ba9531a68bcaa6f37443ef16c0"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "9099d711c0e52e13937bcfda7ddf34bac48f9ecd",
"comment": "Add support for different key types in IndexedDB storage #4052"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "b1f5bd520f8abb972725c1a863f37b7fb5ebd756",
"comment": "Ensure correlation is passed to all interaction clients in acquireTokenSilent #4186"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "3f3f5a8880a7e46445d71b8920a6ccc70d453f30",
"comment": "Fix typo in noTokenRequestCacheError (#4136)"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "dc80d3177eef0b3c7499cbf3ebb2fea8e2c408c9",
"comment": "Fix redirect processing when allowRedirectInIframe: true #4142"
}
]
}
},
{
"date": "Mon, 04 Oct 2021 23:12:35 GMT",
"tag": "@azure/msal-browser_v2.18.0",
"version": "2.18.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"comment": "Consistently export error types and messages for errors thrown by MSAL #4117",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"comment": "Move helper functions up to BaseInteractionClient #4049",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"comment": "Export library version #4124",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"comment": "Disallow major bumps",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"comment": "fix: add forked bindings library to node-extensions",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"comment": "Emit event when user logs in or out from a different tab or window #3981",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-browser",
"comment": "Remove requirement of user hint on ssoSilent API #4123",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "beachball",
"package": "@azure/msal-browser",
"comment": "Bump @azure/msal-common to v5.0.1",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
}
]
}
},
{
"date": "Tue, 07 Sep 2021 23:22:24 GMT",
"tag": "@azure/msal-browser_v2.17.0",
"version": "2.17.0",
"comments": {
"minor": [
{
"comment": "Add configuration for popup window size and placement #3946",
"author": "[email protected]",
"commit": "aefe791ee660bbb6bf7df789b5cfb77b46887e05",
"package": "@azure/msal-browser"
},
{
"comment": "Add API to sideload tokens to msal-browser #3895",
"author": "[email protected]",
"commit": "cef2629499cf997f9167fe3ecc7628cf32513dfc",
"package": "@azure/msal-browser"
},
{
"comment": "Add SignedHttpRequest class #3058",
"author": "[email protected]",
"commit": "19fe65ef6562deeae0778db5030f44fa6e24aa5d",
"package": "@azure/msal-browser"
},
{
"comment": "Refactor acquireToken logic into InteractionClients #3871",
"author": "[email protected]",
"commit": "8ac64949f23346cdbdac6f8a2f6c8293d016ee32",
"package": "@azure/msal-browser"
}
],
"patch": [
{
"comment": "Clear cache before constructing logout url #3982",
"author": "[email protected]",
"commit": "9e4d8a161cd8eac51ea7ded5dadc2b6ff028f5d7",
"package": "@azure/msal-browser"
},
{
"comment": "Add pop params to request thumbprint #3973",
"author": "[email protected]",
"commit": "b3b18bc86a5949905be265c9b892e288551ac894",
"package": "@azure/msal-browser"
},
{
"comment": "Update ADAL to MSAL SSO logic to use preferred_username instead of upn by default #3945",
"author": "[email protected]",
"commit": "0eb77a9e467f0074bb9ee5bf52d7c2dfa6f7efad",
"package": "@azure/msal-browser"
},
{
"comment": "Populate msal v2 loginHint from cached msal v1 id token #4027",
"author": "[email protected]",
"commit": "de24de1d3a135c106143a6cc9907cc1264f546e0",
"package": "@azure/msal-browser"
},
{
"comment": "Throw interaction in progress if any msal instance has interaction in progress #4014",
"author": "[email protected]",
"commit": "5188d7d9fb2aa7a9e9f2ffd12abd8d438c4c3876",
"package": "@azure/msal-browser"
},
{
"comment": "Only emit handleRedirect start event on first invocation of handleRedirectPromise #4013",
"author": "[email protected]",
"commit": "09f8cece289c07dd9c5681a31ec285e4111db4ae",
"package": "@azure/msal-browser"
},
{
"comment": "Add correlationId to AuthenticationResult type #3947",
"author": "[email protected]",
"commit": "931061695df57488a26397763bbdb3e466713df8",
"package": "@azure/msal-browser"
},
{
"comment": "Remove token binding key from key store when refreshing pop token #3500",
"author": "[email protected]",
"commit": "6592652877f31405c8ed73a66f03eada90a78c0a",
"package": "@azure/msal-browser"
},
{
"comment": "Fix clearing active account on logout #3948",
"author": "[email protected]",
"commit": "cd45c77348f6fc259f9378f69b25569146e1c58a",
"package": "@azure/msal-browser"
},
{
"comment": "Add correlationId to errors thrown #3930",
"author": "[email protected]",
"commit": "c2d19c27d11fdab54fb336b9a455b05c753ae750",
"package": "@azure/msal-browser"
}
],
"none": [
{
"comment": "Fix accesstoken_with_authscheme implementation #3910",
"author": "[email protected]",
"commit": "9aceb4219ebad900277aa6a59ca1ff93c5a21e0a",
"package": "@azure/msal-browser"
},
{
"comment": "Update FAQ #3934",
"author": "[email protected]",
"commit": "323d7eabbbd95c499d2c2a2446cdea4531af71c5",
"package": "@azure/msal-browser"
}
]
}
},
{
"date": "Thu, 22 Jul 2021 22:50:22 GMT",
"tag": "@azure/msal-browser_v2.16.0",
"version": "2.16.0",
"comments": {
"patch": [
{
"comment": "Add fix for loginRedirect failure when angular index.html base href is different from the origin (#3875)",
"author": "[email protected]",
"commit": "9da0b3f92216367d68bdb7fea74cd9050d202a76",
"package": "@azure/msal-browser"
},
{
"comment": "fix: fixing the npm audit issues",
"author": "[email protected]",
"commit": "9b19470078b65bedf2b69246ba764b32b533a268",
"package": "@azure/msal-browser"
},
{
"comment": "Expose isInPopup helper function #3825",
"author": "[email protected]",
"commit": "45e51762597ffde61d70a9e085e77893b339d0e1",
"package": "@azure/msal-browser"
}