forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.json
1115 lines (1115 loc) · 37.8 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-angular",
"entries": [
{
"date": "Mon, 12 Sep 2022 18:19:32 GMT",
"tag": "@azure/msal-angular_v2.4.3",
"version": "2.4.3",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "ffde7158aba741b804d5558fc162c1f1c45c28cd",
"comment": "Post Release September 2022 #5186"
}
],
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.28.3",
"commit": "cf19d12246949f9cb99f4853953cbefb7d27009e"
}
]
}
},
{
"date": "Fri, 02 Sep 2022 18:06:53 GMT",
"tag": "@azure/msal-angular_v2.4.2",
"version": "2.4.2",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.28.2",
"commit": "75e3189e8cf3d46497a7587d7f221057a5f0ede6"
}
]
}
},
{
"date": "Mon, 01 Aug 2022 22:22:35 GMT",
"tag": "@azure/msal-angular_v2.4.1",
"version": "2.4.1",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "674ff0c4a543fb2b5b52f3a7aed4fe32b387b7b2",
"comment": "Update package-lock"
}
],
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.28.1",
"commit": "9ddeaca3f2b983b459cd0b4651aa4a7adc10e18c"
}
]
}
},
{
"date": "Mon, 18 Jul 2022 23:26:21 GMT",
"tag": "@azure/msal-angular_v2.4.0",
"version": "2.4.0",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "ff3a2452ff8778a56df04065b798ed827589b434",
"comment": "Update package-locks to fix CI issue #5005"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "9a0b2c0b32c824c549356e29f895672e8439e7e9",
"comment": "Add MsalBroadcastService configurations, allow replay of past events #4998"
},
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.28.0",
"commit": "1b74296d45864f3721895819733ea5ee39006b6f"
}
]
}
},
{
"date": "Tue, 05 Jul 2022 22:37:04 GMT",
"tag": "@azure/msal-angular_v2.3.3",
"version": "2.3.3",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.27.0",
"commit": "bfd3760ce1aca6b4be8ae937606215676a72e5c5"
}
]
}
},
{
"date": "Mon, 13 Jun 2022 22:28:09 GMT",
"tag": "@azure/msal-angular_v2.3.2",
"version": "2.3.2",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.26.0",
"commit": "e325d870a211b4ad6fa97bb95b6b224299247940"
}
]
}
},
{
"date": "Mon, 06 Jun 2022 22:13:00 GMT",
"tag": "@azure/msal-angular_v2.3.1",
"version": "2.3.1",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.25.0",
"commit": "3b8942d3cf281352236b820c931a89b4dbcbf85b"
}
]
}
},
{
"date": "Mon, 02 May 2022 22:23:33 GMT",
"tag": "@azure/msal-angular_v2.3.0",
"version": "2.3.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "cb93cc7e0deadefac126b23c3326c4b2aa4be142",
"comment": "Add support for acquiring tokens from the native broker #4531"
},
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.24.0",
"commit": "cbf5e7a6c81d01ce40bfbcbca9be158c5ee395aa"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "94372ab043804ccd56334d87f7cfa6306fcb1115",
"comment": "Created Angular 14 RxJS 6/7 Sample Apps #4642"
},
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "55adbfb3cc8c84aa64a11936da3cdf8602aa490b",
"comment": "Bump caniuse-lite from 1.0.30001323 to 1.0.30001334 in /lib/msal-angular #4766"
}
]
}
},
{
"date": "Mon, 04 Apr 2022 21:12:41 GMT",
"tag": "@azure/msal-angular_v2.2.0",
"version": "2.2.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "0feaf5678cf92abbf649b08565dfd74dba2a5620",
"comment": "Add support for rxjs v7 and Angular 13 #4605"
},
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.23.0",
"commit": "63c34341780208480edc2f86e623ba12a7f847c3"
}
]
}
},
{
"date": "Mon, 07 Mar 2022 23:28:43 GMT",
"tag": "@azure/msal-angular_v2.1.2",
"version": "2.1.2",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.22.1",
"commit": "34ee02434be99db2e03376b5994579df27c4b546"
}
]
}
},
{
"date": "Tue, 08 Feb 2022 00:41:06 GMT",
"tag": "@azure/msal-angular_v2.1.1",
"version": "2.1.1",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "19f76b1d9cd2b0f1a4a7e4765c8ee9e7e17f3d59",
"comment": "Test changes #4383"
},
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "5767008f8ef9f3b05aeba421cc4aa6c6bb616e86",
"comment": "fix: update package-lock files"
}
],
"patch": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.22.0",
"commit": "639253acbc825e1f19ca712bc72dce8da149e3e8"
}
]
}
},
{
"date": "Tue, 04 Jan 2022 00:20:29 GMT",
"tag": "@azure/msal-angular_v2.1.0",
"version": "2.1.0",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "60e2cfc0e9daa3c24e994617b4ac42aef6880b74",
"comment": "Add support for requested claims in silent token acquisition #4296"
}
],
"minor": [
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.21.0",
"commit": "bd9b1af91c278926ab2e6943cf90817a7ac4957b"
}
]
}
},
{
"date": "Tue, 07 Dec 2021 00:17:01 GMT",
"tag": "@azure/msal-angular_v2.0.6",
"version": "2.0.6",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "02dbd9172368bfc69e4a47f01a3ada0b96345c81",
"comment": "Package.json updates"
},
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "8259de7520d2940d290332cd03c5b8babeb0966e",
"comment": "deps: audit fix on msal-angular"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "13ac4c3dc5a50648b2e462c71d4285b2a320e225",
"comment": "Fix angular guard /code check to ensure proper length #4249"
},
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.20.0",
"commit": "d7c209f7aa3ae4380a77a31ff1319fbf7201ae45"
}
]
}
},
{
"date": "Mon, 01 Nov 2021 23:53:22 GMT",
"tag": "@azure/msal-angular_v2.0.5",
"version": "2.0.5",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "4e6070227590e3ce147546718b59026dac988df2",
"comment": "Fix redirect processing when allowRedirectInIframe: true #4142"
},
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "a554867901e8b830de5e55d312da8540117f9823",
"comment": "Ensure code is in fragment for Angular guard #4190"
},
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.19.0",
"commit": "6ac29855822ce1ba9531a68bcaa6f37443ef16c0"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"commit": "c5a8de4a5dc7acb9bdf1759eb3cb9811459c3d82",
"comment": "Update package-locks to fix dependantbot alerts #4181"
}
]
}
},
{
"date": "Mon, 04 Oct 2021 23:12:35 GMT",
"tag": "@azure/msal-angular_v2.0.4",
"version": "2.0.4",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"comment": "Export library version #4124",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "beachball",
"package": "@azure/msal-angular",
"comment": "Bump @azure/msal-browser to v2.18.0",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"comment": "Disallow major bumps",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"comment": "docs update for ssoSilent #4123",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"comment": "fix: add forked bindings library to node-extensions",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-angular",
"comment": "Docs #3981",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
}
]
}
},
{
"date": "Tue, 07 Sep 2021 23:22:24 GMT",
"tag": "@azure/msal-angular_v2.0.3",
"version": "2.0.3",
"comments": {
"patch": [
{
"comment": "Fix inProgress state bug when returning from a redirect #4013",
"author": "[email protected]",
"commit": "e5189470fb0c9b58ceec24769eccbfd478941eee",
"package": "@azure/msal-angular"
},
{
"comment": "Fix infinite reload on route protected by MsalGuard when '#code=' appears in the url #3995",
"author": "[email protected]",
"commit": "2964454a86fec796bb01f8a5bc3992b423d47009",
"package": "@azure/msal-angular"
}
],
"none": [
{
"comment": "Add missing fields to package.json #3977",
"author": "[email protected]",
"commit": "18a4d771253e1821a3bce77199b632cd8cc0b2a0",
"package": "@azure/msal-angular"
},
{
"comment": "Update docs with self-service sign up FAQ #3934",
"author": "[email protected]",
"commit": "323d7eabbbd95c499d2c2a2446cdea4531af71c5",
"package": "@azure/msal-angular"
},
{
"comment": "patch fix",
"author": "[email protected]",
"commit": "6f6c1fa9987d62a68583c513c4baabe4041eaf17",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Thu, 22 Jul 2021 22:50:22 GMT",
"tag": "@azure/msal-angular_v2.0.2",
"version": "2.0.2",
"comments": {
"patch": [
{
"comment": "allow unprotect resources on certain http methods #3878",
"author": "[email protected]",
"commit": "2ba05427101893edf907d3469dbce81756577d2f",
"package": "@azure/msal-angular"
},
{
"comment": "fix: fixing the npm audit issues",
"author": "[email protected]",
"commit": "9b19470078b65bedf2b69246ba764b32b533a268",
"package": "@azure/msal-angular"
}
],
"none": [
{
"comment": "Remove note from FAQ about active accounts not persisting",
"author": "[email protected]",
"commit": "db59cc072e50f201f09e03a09a1b7b8355e10ee1",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Mon, 28 Jun 2021 23:39:48 GMT",
"tag": "@azure/msal-angular_v2.0.1",
"version": "2.0.1",
"comments": {
"patch": [
{
"comment": "Don't use normalized url in Angular custom nav client #3757",
"author": "[email protected]",
"commit": "267087aa1443bdd8a1b0208f300f56e9b8b5b8d5",
"package": "@azure/msal-angular"
},
{
"comment": "MsalInterceptor relative url fix #3729",
"author": "[email protected]",
"commit": "18e0a6e4e96c640216759547c2945da46182e4ea",
"package": "@azure/msal-angular"
},
{
"comment": "Add window check to msal-guard #3664",
"author": "[email protected]",
"commit": "e4ee6981f042308d44f97590454b548a0197c3f1",
"package": "@azure/msal-angular"
}
],
"none": [
{
"comment": "Unit test updates",
"author": "[email protected]",
"commit": "f0c574a8c2ffeb3132703e7e9e17d01e1898abaa",
"package": "@azure/msal-angular"
},
{
"comment": "Regenerate package-lock #3719",
"author": "[email protected]",
"commit": "6c34aa5be3ee9536bd2febd2b7781fcdf0d28786",
"package": "@azure/msal-angular"
},
{
"comment": "fix: update package lock files",
"author": "[email protected]",
"commit": "0199e41269b79de70f7d0da0fb12448db534f784",
"package": "@azure/msal-angular"
},
{
"comment": "Component governance dependency updates #3655",
"author": "[email protected]",
"commit": "d06ce5f5f4aa774e447d01e9cbf17d05a730bc47",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Thu, 13 May 2021 18:34:08 GMT",
"tag": "@azure/msal-angular_v2.0.0",
"version": "2.0.0",
"comments": {
"none": [
{
"comment": "Update docs #3586",
"author": "[email protected]",
"commit": "85224c634353b49064e41202736896c1c12af2e8",
"package": "@azure/msal-angular"
},
{
"comment": "Update packge locks",
"author": "[email protected]",
"commit": "a96f88d90512c2f5a0063a05ebe22240001d91be",
"package": "@azure/msal-angular"
}
],
"patch": [
{
"comment": "Move MSAL Angular v2 and MSAL React to GA",
"author": "[email protected]",
"commit": "40509896e4820db7ec49093a8afc12b151b85a6a",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Wed, 12 May 2021 18:35:03 GMT",
"tag": "@azure/msal-angular_v2.0.0-beta.6",
"version": "2.0.0-beta.6",
"comments": {
"prerelease": [
{
"comment": "Fix navigation bug when clearing auth code from hash in msal-angular #3609",
"author": "[email protected]",
"commit": "a45a8c65a4261c820604db0c3afbe932928b7ace",
"package": "@azure/msal-angular"
},
{
"comment": "Update MsalInterceptor to accept HTTP methods in protectedResourceMap #3546",
"author": "[email protected]",
"commit": "2de8256047baee8ca46702b2a470fe2dfd7f0947",
"package": "@azure/msal-angular"
},
{
"comment": "Properly handle MSAL guard on redirect uri for hash and path routing",
"author": "[email protected]",
"commit": "ca43850a0a6bac877b7004d3db45d3b28a01625e",
"package": "@azure/msal-angular"
},
{
"comment": "Update msal-angular tooling to angular v11 #3584",
"author": "[email protected]",
"commit": "ca06366ac7c34e9e48fe67f18fef34dab3fab408",
"package": "@azure/msal-angular"
}
],
"none": [
{
"comment": "[docs] updates and replacements",
"author": "[email protected]",
"commit": "56a947b117302218a625d365b63e8ad85859125f",
"package": "@azure/msal-angular"
},
{
"comment": "Update peer dependencies for msal-angular #3510",
"author": "[email protected]",
"commit": "1799e51fcd930dfd166f1136ebe72aa9bcd5c000",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Thu, 22 Apr 2021 23:26:08 GMT",
"tag": "@azure/msal-angular_v2.0.0-beta.5",
"version": "2.0.0-beta.5",
"comments": {
"prerelease": [
{
"comment": "Prevent MSAL Guard from navigating app to url with code hash #3506",
"author": "[email protected]",
"commit": "06904071267f726ecb5501d2b75ec71c751cb097",
"package": "@azure/msal-angular"
},
{
"comment": "Add .browserslistrc #3471",
"author": "[email protected]",
"commit": "04c6d659d4dc76183ef9043075d3b6cacc450c9b",
"package": "@azure/msal-angular"
}
],
"none": [
{
"comment": "Fix msal-angular packge-lock",
"author": "[email protected]",
"commit": "41483305debd20a1345262bd0167f1bef64dfd65",
"package": "@azure/msal-angular"
},
{
"comment": "Update and fix eslint rules",
"author": "[email protected]",
"commit": "70debe58239b6a6fdf4e533a8a1ee057257846a8",
"package": "@azure/msal-angular"
},
{
"comment": "details added to load dynamic configurations using APP_INITIALIZER",
"author": "[email protected]",
"commit": "d22605301e23a65e28513678a10ab8136f149e80",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Wed, 14 Apr 2021 18:39:53 GMT",
"tag": "@azure/msal-angular_v2.0.0-beta.4",
"version": "2.0.0-beta.4",
"comments": {
"prerelease": [
{
"comment": "fix(Msal-Angular): Dynamic interceptor authority",
"author": "[email protected]",
"commit": "ee6480557de68bb84765097e7b3aa79fb2b5977e",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Wed, 31 Mar 2021 22:25:57 GMT",
"tag": "@azure/msal-angular_v2.0.0-beta.3",
"version": "2.0.0-beta.3",
"comments": {
"prerelease": [
{
"comment": "Update MsalInterceptor types and getScopesForEndpoint with query and relative paths #3307",
"author": "[email protected]",
"commit": "054804e1c99b9ac58a0e82c917bf0436d73db481",
"package": "@azure/msal-angular"
}
],
"none": [
{
"comment": "Update samples and docs with event payload typecasting #3360",
"author": "[email protected]",
"commit": "24fda4c133476d87c12ac913f49eb9aff696f68e",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Wed, 24 Mar 2021 22:55:46 GMT",
"tag": "@azure/msal-angular_v2.0.0-beta.2",
"version": "2.0.0-beta.2",
"comments": {
"prerelease": [
{
"comment": "Add support for logoutPopup API #3044",
"author": "[email protected]",
"commit": "5b091a8926cad858b1e00c81b9ff863c5fd40fc4",
"package": "@azure/msal-angular"
},
{
"comment": "Add MsalCustomNavigationClient, updates samples and docs #3174",
"author": "[email protected]",
"commit": "e99568a7060fe53cbea84607e35d2532e9fd605e",
"package": "@azure/msal-angular"
},
{
"comment": "Update MsalGuard and _inProgress subject #3269",
"author": "[email protected]",
"commit": "2f29cb3f2b9cd36e8503ea45f9cf2a4c1a263801",
"package": "@azure/msal-angular"
},
{
"comment": "Update MSAL Service handleRedirectObservable hash handling #3243",
"author": "[email protected]",
"commit": "1b389e80505b610f323347e06ab35249d0d0ecb3",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Mon, 15 Mar 2021 23:45:17 GMT",
"tag": "@azure/msal-angular_v2.0.0-beta.1",
"version": "2.0.0-beta.1",
"comments": {
"prerelease": [
{
"comment": "fix: #3149 - Msal Redirect Component was not part of the Module",
"author": "[email protected]",
"commit": "852fff6690bdb86dec2344b0e01106ebfaf9bc59",
"package": "@azure/msal-angular"
}
],
"none": [
{
"comment": "Docs update (#3137)",
"author": "[email protected]",
"commit": "9dbd969fd6faf7215887746add05cd370d291674",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Wed, 03 Mar 2021 21:47:05 GMT",
"tag": "@azure/msal-angular_v2.0.0-beta.0",
"version": "2.0.0-beta.0",
"comments": {
"prerelease": [
{
"comment": "Fix BroadcastService logging to use msal-angular version, update samples versions, profile, and links (#3015)",
"author": "[email protected]",
"commit": "e7f09b6ada9dd8812c5c29263338a4afd41f2006",
"package": "@azure/msal-angular"
},
{
"comment": "Add FAQ.md and active accounts in sample (#2977)",
"author": "[email protected]",
"commit": "c8561df04cb8d72328803429da37e45399238b53",
"package": "@azure/msal-angular"
},
{
"comment": "Update msal-angular preinstall script to force npm-force-resolutions version (#3074)",
"author": "[email protected]",
"commit": "65c6b630d97ef5acbfa00e621e2177c7d514009f",
"package": "@azure/msal-angular"
}
],
"none": [
{
"comment": "Add errors doc to msal-angular, update FAQ and redirect docs (#3093)",
"author": "[email protected]",
"commit": "c26265e6f337cead73979c8da396d09929d963e8",
"package": "@azure/msal-angular"
},
{
"comment": "Update angular docs and samples with incremental vs. upfront consent of scopes (#3051)",
"author": "[email protected]",
"commit": "ec7b363ce639e15dd4f34049ad9e95e93e26c183",
"package": "@azure/msal-angular"
},
{
"comment": "Correct spelling mistake for 0.x-1.x-upgrade-guide.md",
"author": "[email protected]",
"commit": "1ffad19b63fc55b899eca850fb165241ad66e589",
"package": "@azure/msal-angular"
},
{
"comment": "Add docs and sample for angular client-side navigation (#3073)",
"author": "[email protected]",
"commit": "bcf87e1077a1bd75b77d7b700d4197d64c8799a2",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Thu, 18 Feb 2021 00:34:32 GMT",
"tag": "@azure/msal-angular_v2.0.0-alpha.6",
"version": "2.0.0-alpha.6",
"comments": {
"prerelease": [
{
"comment": "Await loginRedirect in MSAL Guard to prevent race conditions",
"author": "[email protected]",
"commit": "d33571952cfaf696b5151e46149b2f27cf1dfcdc",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Tue, 09 Feb 2021 01:48:22 GMT",
"tag": "@azure/msal-angular_v2.0.0-alpha.5",
"version": "2.0.0-alpha.5",
"comments": {
"prerelease": [
{
"comment": "Msal-angular typedocs and instrumentation (#2863)",
"author": "[email protected]",
"commit": "b5815fe4b20a701cd0210bdfb0b16441f1e8dcfb",
"package": "@azure/msal-angular"
},
{
"comment": "Fix version.json import errors (#2993)",
"author": "[email protected]",
"commit": "6dc3bc9e2148bc53b181d9f079f6e11e0159620b",
"package": "@azure/msal-angular"
},
{
"comment": "Update ssoSilent and cors-api documentation (#2971)",
"author": "[email protected]",
"commit": "a41c9f8a2035ed0965a21b2d6036199c955297e7",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Tue, 02 Feb 2021 01:56:47 GMT",
"tag": "@azure/msal-angular_v2.0.0-alpha.4",
"version": "2.0.0-alpha.4",
"comments": {
"none": [
{
"comment": "Typedocs Updates (#2926)",
"author": "[email protected]",
"commit": "3fd4a48143ed4fb62b9e3266338b1abda920d68a",
"package": "@azure/msal-angular"
},
{
"comment": "Add project references (#2930)",
"author": "[email protected]",
"commit": "a836e77e372f1b4da28195d4ad8c0c75d6794875",
"package": "@azure/msal-angular"
}
],
"prerelease": [
{
"comment": "Invoke interaction if MSAL Interceptor resolves with null access token, mitigates B2C service not supporting RTs for multiple resources",
"author": "[email protected]",
"commit": "c701a75f041263aa2c7ce29c6d73f0b1ccc2a379",
"package": "@azure/msal-angular"
},
{
"comment": "Pass SKU and version to msal-browser (#2845)",
"author": "[email protected]",
"commit": "aaa262bad9a65a6bc391b7a7585504f6ad6ff833",
"package": "@azure/msal-angular"
},
{
"comment": "Add redirect component, get interactionStatus from msal-browser, add inProgress$, and sample updates (#2885)",
"author": "[email protected]",
"commit": "ebd726a6eea98ef097d6f9ee1dc45a206d184065",
"package": "@azure/msal-angular"
},
{
"comment": "Get package version from version.json (#2915)",
"author": "[email protected]",
"commit": "a6f4702f9439e318a8cb6dc65d1def16351a84fd",
"package": "@azure/msal-angular"
},
{
"comment": "Add version detection to msal guard for canLoad interface (#2948)",
"author": "[email protected]",
"commit": "f0dba5aeb3e0e88ca8816ada5323972e362f9d75",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Thu, 21 Jan 2021 21:48:01 GMT",
"tag": "@azure/msal-angular_v2.0.0-alpha.3",
"version": "2.0.0-alpha.3",
"comments": {
"none": [
{
"comment": "Update configuration.md with platformBrowserDynamic (#2879)",
"author": "[email protected]",
"commit": "04fbd99cab9807919584d065b34e3a342ff88f3e",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Tue, 12 Jan 2021 00:51:26 GMT",
"tag": "@azure/msal-angular_v2.0.0-alpha.3",
"version": "2.0.0-alpha.3",
"comments": {
"none": [
{
"comment": "Temporarily use npm-force-resolutions to get update transitive deps for MSAL Angular",
"author": "[email protected]",
"commit": "088541486482acf904b8b8d2461fad9f9bddd645",
"package": "@azure/msal-angular"
},
{
"comment": "Update docs and samples (#2764)",
"author": "[email protected]",
"commit": "0fce9aa83fe0f215a73fda80831c5bbd871d59fc",
"package": "@azure/msal-angular"
},
{
"comment": "Merge angular-v2 to dev (#2709)",
"author": "[email protected]",
"commit": "76a88f98fbab73fd6c0ad6d04b294814c169fc10",
"package": "@azure/msal-angular"
},
{
"comment": "package-lock update",
"author": "[email protected]",
"commit": "c092667cd997935625eafbc491ede54417d4b657",
"package": "@azure/msal-angular"
},
{
"comment": "Add docs for Angular Universal SSR (#2746)",
"author": "[email protected]",
"commit": "4a90d46733b197b578955d6d54a7fad606bc4f05",
"package": "@azure/msal-angular"
},
{
"comment": "package.lock changes",
"author": "[email protected]",
"commit": "0d8e60f38340cb7b9a49dc3e0be28503105b5857",
"package": "@azure/msal-angular"
},
{
"comment": "package.lock change",
"author": "[email protected]",
"commit": "4e50ca592f5a17578072be9e4ac28e05b3e6d594",
"package": "@azure/msal-angular"
}
],
"prerelease": [
{
"comment": "Make scopes optional for msal-guard config (#2829)",
"author": "[email protected]",
"commit": "b2f0bf9b492fa691b373612a7ac20b7763acd65a",
"package": "@azure/msal-angular"
},
{
"comment": "Interceptor, guard, and samples to use active account (#2784)",
"author": "[email protected]",
"commit": "7d2b1014e36bb3234b8a48618a5805a44d7a5dc8",
"package": "@azure/msal-angular"
},
{
"comment": "Msal guard supports angular routes for login failure (#2803)",
"author": "[email protected]",
"commit": "984098e18ac9af4fcdda46d87d7f5503d135f580",
"package": "@azure/msal-angular"
},
{
"comment": "Add additional interfaces to msal-guard (#2759)",
"author": "[email protected]",
"commit": "70888a7b0dde9d2d7fa9e344ad21ad9de6bae39a",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Mon, 07 Dec 2020 23:02:52 GMT",
"tag": "@azure/msal-angular_v2.0.0-alpha.1",
"version": "2.0.0-alpha.1",
"comments": {
"none": [
{
"comment": "Update readme and docs (#2638)",
"author": "[email protected]",
"commit": "ce8c0a1f8e0843d6be7a5dff9985bc38f4ca09a5",
"package": "@azure/msal-angular"
}
],
"prerelease": [
{
"comment": "MSAL Angular v2 alpha.1 changes",
"author": "[email protected]",
"commit": "ad26bb58337d762e1ab60432ad7989b642c4a59c",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Thu, 12 Nov 2020 00:45:30 GMT",
"tag": "@azure/msal-angular_v2.0.0-alpha.0",
"version": "2.0.0-alpha.0",
"comments": {
"prerelease": [
{
"comment": "Add msal-angular-v2-alpha-0 (#2463)",
"author": "[email protected]",
"commit": "31127561c00ce7d24e9a3059399140ab7984eb31",
"package": "@azure/msal-angular"
}
]
}
},
{
"date": "Wed, 11 Nov 2020 23:33:20 GMT",
"tag": "@azure/msal-angular_v1.1.2",
"version": "1.1.2",
"comments": {
"patch": [
{
"comment": "Pass generic to ModuleWithProviders for MsalModule v1, set supported Angular versions to 6-9 (#2577)",
"author": "[email protected]",
"commit": "8cf918d4dc99fe5c09d0b20b138fe71fd3ddb3a1",