forked from AzureAD/microsoft-authentication-library-for-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG.json
1128 lines (1128 loc) · 38.3 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-node",
"entries": [
{
"date": "Mon, 02 May 2022 22:23:33 GMT",
"tag": "@azure/msal-node_v1.9.0",
"version": "1.9.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "7cdb0217f4a0ef29dc8c255d8351ac586956fbed",
"comment": "Add Node 18 to msal-node supported versions #4727"
},
{
"author": "beachball",
"package": "@azure/msal-node",
"comment": "Bump @azure/msal-common to v6.3.0",
"commit": "cbf5e7a6c81d01ce40bfbcbca9be158c5ee395aa"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "679deb37f3a49a804a95863fc9398fabd46e4494",
"comment": "Tests for SilentFlowClient- when claims are passed #4672"
}
]
}
},
{
"date": "Mon, 04 Apr 2022 21:12:42 GMT",
"tag": "@azure/msal-node_v1.8.0",
"version": "1.8.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "b3cc863ed0decc5a088d16ee0c9489dbb44a4bff",
"comment": "Add Client Application telemetry parameters to MSAL #4616"
},
{
"author": "beachball",
"package": "@azure/msal-node",
"comment": "Bump @azure/msal-common to v6.2.0",
"commit": "63c34341780208480edc2f86e623ba12a7f847c3"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "561749e626ffa0ac14e0708dda0eb3b7ea208780",
"comment": "Use IGuidGenerator interface for GuidGenerator class #4570"
}
]
}
},
{
"date": "Mon, 07 Mar 2022 23:28:43 GMT",
"tag": "@azure/msal-node_v1.7.0",
"version": "1.7.0",
"comments": {
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "eb5b95017798be3081f4e93197ab4ffc767d22fd",
"comment": "Fix support for claims-based token caching #4533"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "34ee02434be99db2e03376b5994579df27c4b546",
"comment": "Persist authority in in memory cache #4081"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "51946eef5cd502f1edee4e37439396671496b31e",
"comment": "Added nonce support to MSAL Node #4504"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "a67bd3b8d476268e1ac18840e6b03828c87f34d5",
"comment": "Unit tests only"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "d4353b05a90998a47f9f3feaef9b2ee5e88b3875",
"comment": "Update axios to address follow-redirects alert #4517"
}
]
}
},
{
"date": "Tue, 08 Feb 2022 00:41:06 GMT",
"tag": "@azure/msal-node_v1.6.0",
"version": "1.6.0",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "b81793d59e29261ecaef3e4fc3493e0c1ddde68e",
"comment": "Node testing overhaul #4433"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "19f76b1d9cd2b0f1a4a7e4765c8ee9e7e17f3d59",
"comment": "Test changes #4383"
}
],
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "abddbfb626260bfaa49a357090884c01828e2216",
"comment": "feat: add the redis distributed cache layer"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "d576b7d35f8f24e53946c72bc78c0401a8d2dc86",
"comment": "Add AzureCloudInstance to JS libraries"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "a6fda9fd4ff40a90d173ecbd1281d8dd02eb4d58",
"comment": "Support proxy in msal-node(#4447)"
},
{
"author": "beachball",
"package": "@azure/msal-node",
"comment": "Bump @azure/msal-common to v6.1.0",
"commit": "639253acbc825e1f19ca712bc72dce8da149e3e8"
}
]
}
},
{
"date": "Tue, 04 Jan 2022 00:20:29 GMT",
"tag": "@azure/msal-node_v1.5.0",
"version": "1.5.0",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "60e2cfc0e9daa3c24e994617b4ac42aef6880b74",
"comment": "Add support for requested claims in silent token acquisition #4296"
}
],
"minor": [
{
"author": "beachball",
"package": "@azure/msal-node",
"comment": "Bump @azure/msal-common to v6.0.0",
"commit": "bd9b1af91c278926ab2e6943cf90817a7ac4957b"
}
]
}
},
{
"date": "Tue, 07 Dec 2021 00:17:01 GMT",
"tag": "@azure/msal-node_v1.4.0",
"version": "1.4.0",
"comments": {
"minor": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "4741b6c3a6a3dd58feefde93c095c05e1eca5e03",
"comment": "Add support for hybrid spa flow #3478"
},
{
"author": "beachball",
"package": "@azure/msal-node",
"comment": "Bump @azure/msal-common to v5.2.0",
"commit": "d7c209f7aa3ae4380a77a31ff1319fbf7201ae45"
}
],
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "8259de7520d2940d290332cd03c5b8babeb0966e",
"comment": "deps: npm audit fix msal-node"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"commit": "02dbd9172368bfc69e4a47f01a3ada0b96345c81",
"comment": "Package.json updates"
}
]
}
},
{
"date": "Mon, 01 Nov 2021 23:53:22 GMT",
"tag": "@azure/msal-node_v1.3.3",
"version": "1.3.3",
"comments": {
"patch": [
{
"author": "beachball",
"package": "@azure/msal-node",
"comment": "Bump @azure/msal-common to v5.1.0",
"commit": "6ac29855822ce1ba9531a68bcaa6f37443ef16c0"
}
]
}
},
{
"date": "Mon, 04 Oct 2021 23:12:35 GMT",
"tag": "@azure/msal-node_v1.3.2",
"version": "1.3.2",
"comments": {
"none": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"comment": "Disallow major bumps",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"comment": "fix: add forked bindings library to node-extensions",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
}
],
"patch": [
{
"author": "[email protected]",
"package": "@azure/msal-node",
"comment": "Export library version #4124",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"comment": "feat: improve the test code coverage for msal-node",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"comment": "Consistently export error types and messages for errors thrown by MSAL #4117",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "[email protected]",
"package": "@azure/msal-node",
"comment": "Axios upgrade to 0.21.4 to address a high severity vulnerability",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
},
{
"author": "beachball",
"package": "@azure/msal-node",
"comment": "Bump @azure/msal-common to v5.0.1",
"commit": "d03c16f09026bac36048241da4635e73d32a6eed"
}
]
}
},
{
"date": "Tue, 07 Sep 2021 23:22:24 GMT",
"tag": "@azure/msal-node_v1.3.1",
"version": "1.3.1",
"comments": {
"patch": [
{
"comment": "Add removeTokenBindingKey missing method to Node's CryptoProvider #3500",
"author": "[email protected]",
"commit": "6592652877f31405c8ed73a66f03eada90a78c0a",
"package": "@azure/msal-node"
},
{
"comment": "Add correlationId to errors #3930",
"author": "[email protected]",
"commit": "b16839505be79b646f131f09d747adb90a613176",
"package": "@azure/msal-node"
},
{
"comment": "Remove non-null assertions #3994",
"author": "[email protected]",
"commit": "17cbef3c32f01e526e33964df21b0cda19e632b9",
"package": "@azure/msal-node"
},
{
"comment": "Add correlationId to AuthenticationResult type #3947",
"author": "[email protected]",
"commit": "1752261b00e773d5187f8d0a9520bdf5f95ee8d6",
"package": "@azure/msal-node"
},
{
"comment": "Fixes biased code verifier generation #3993",
"author": "[email protected]",
"commit": "80434004e06dc11f3770ba84e5ead1c45f449156",
"package": "@azure/msal-node"
}
],
"none": [
{
"comment": "Fix accesstoken_with_authscheme implementation #3910",
"author": "[email protected]",
"commit": "9aceb4219ebad900277aa6a59ca1ff93c5a21e0a",
"package": "@azure/msal-node"
},
{
"comment": "patch fix",
"author": "[email protected]",
"commit": "6f6c1fa9987d62a68583c513c4baabe4041eaf17",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Thu, 22 Jul 2021 22:50:22 GMT",
"tag": "@azure/msal-node_v1.3.0",
"version": "1.3.0",
"comments": {
"minor": [
{
"comment": "feat: add regional authority telemetry, #3662",
"author": "[email protected]",
"commit": "aeeeac862e2fcd5d441bc196545f7a8a70f0a0e2",
"package": "@azure/msal-node"
},
{
"comment": "ROPC added for Confidential Clients (#3838)",
"author": "[email protected]",
"commit": "efb39ddd8be4fc9d4b93b36306cd782a8b27ae32",
"package": "@azure/msal-node"
}
],
"none": [
{
"comment": "Add support for prompt=create #3773",
"author": "[email protected]",
"commit": "c9314cedfe08b643e43e358243dc7f49253f77ef",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Mon, 28 Jun 2021 23:39:48 GMT",
"tag": "@azure/msal-node_v1.2.0",
"version": "1.2.0",
"comments": {
"patch": [
{
"comment": "fix: have the log level propagate to msal-common",
"author": "[email protected]",
"commit": "0b4f088dd8fa862230da1ac967bb5bfc8f8de3e7",
"package": "@azure/msal-node"
},
{
"comment": "fix: update the client capabilities type in configuration #3678",
"author": "[email protected]",
"commit": "8b8e73db8737efa34c93c447e95f1f17354ad9ab",
"package": "@azure/msal-node"
}
],
"none": [
{
"comment": "fix: update package lock files",
"author": "[email protected]",
"commit": "0199e41269b79de70f7d0da0fb12448db534f784",
"package": "@azure/msal-node"
},
{
"comment": "Regnerate package-lock #3719",
"author": "[email protected]",
"commit": "6c34aa5be3ee9536bd2febd2b7781fcdf0d28786",
"package": "@azure/msal-node"
},
{
"comment": "Component governance dependency updates #3655",
"author": "[email protected]",
"commit": "3f74f3bffd88fc0b39a854da090f01aa9c072618",
"package": "@azure/msal-node"
}
],
"minor": [
{
"comment": "Add correlationId to log messages #3601",
"author": "[email protected]",
"commit": "ce883893504cd8021441b540d747aa895787d163",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Thu, 13 May 2021 18:34:08 GMT",
"tag": "@azure/msal-node_v1.1.0",
"version": "1.1.0",
"comments": {
"none": [
{
"comment": "Update packge locks",
"author": "[email protected]",
"commit": "a96f88d90512c2f5a0063a05ebe22240001d91be",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Wed, 12 May 2021 18:35:03 GMT",
"tag": "@azure/msal-node_v1.1.0",
"version": "1.1.0",
"comments": {
"minor": [
{
"comment": "Add Node 16 to msal-node supported versions",
"author": "[email protected]",
"commit": "3998b0de71ca3a78b4ee68de2f31bef8b17e5cb8",
"package": "@azure/msal-node"
},
{
"comment": "add support for regional authorities",
"author": "[email protected]",
"commit": "8baa387b34162b1bc96e341d7ad7158debd4b99d",
"package": "@azure/msal-node"
}
],
"none": [
{
"comment": "[docs] updates and replacements",
"author": "[email protected]",
"commit": "56a947b117302218a625d365b63e8ad85859125f",
"package": "@azure/msal-node"
},
{
"comment": "add faq entry for msal node",
"author": "[email protected]",
"commit": "a90b0dc77e25a7f64d8833ad155f9247289eca95",
"package": "@azure/msal-node"
},
{
"comment": "add guidance for pfx to pem conversion",
"author": "[email protected]",
"commit": "ebee07ce04f850cf29b601a04f28fc6f09d3edd9",
"package": "@azure/msal-node"
},
{
"comment": "Regenerate package-lock #3510",
"author": "[email protected]",
"commit": "ba0092a452f71a7bc58aaf7acdf94536d66f7493",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Thu, 22 Apr 2021 23:26:08 GMT",
"tag": "@azure/msal-node_v1.0.3",
"version": "1.0.3",
"comments": {
"none": [
{
"comment": "Update and fix eslint rules",
"author": "[email protected]",
"commit": "70debe58239b6a6fdf4e533a8a1ee057257846a8",
"package": "@azure/msal-node"
},
{
"comment": "Run npm audit for PRs",
"author": "[email protected]",
"commit": "b3c5bcf2101cbe92edca972c53d64343f775dcc9",
"package": "@azure/msal-node"
}
],
"patch": [
{
"comment": "Add .browserslistrc #3471",
"author": "[email protected]",
"commit": "04c6d659d4dc76183ef9043075d3b6cacc450c9b",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Wed, 14 Apr 2021 18:39:53 GMT",
"tag": "@azure/msal-node_v1.0.2",
"version": "1.0.2",
"comments": {
"none": [
{
"comment": "key vault sample",
"author": "[email protected]",
"commit": "f707b4ba807ceb4df1f4cc6a6a9b8bb7eb0109a3",
"package": "@azure/msal-node"
},
{
"comment": "Add Node.js version support in FAQ(#3290)",
"author": "[email protected]",
"commit": "42fb1e77077b397be38e924a16361bb512833d1e",
"package": "@azure/msal-node"
},
{
"comment": "[msal-node] fix broken links",
"author": "[email protected]",
"commit": "e6c8b7871480e25d9f1ab51a057dd8f16eaff02a",
"package": "@azure/msal-node"
}
],
"patch": [
{
"comment": "feat: fix the device code cancellation flag",
"author": "[email protected]",
"commit": "74f2dfce8804e25035cd3ba21d195530a3fba450",
"package": "@azure/msal-node"
},
{
"comment": "Add support for AccessToken_With_AuthScheme credential type #3426",
"author": "[email protected]",
"commit": "c35e120dd8af5dda03b2480cf559cf226fb2fc21",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Wed, 03 Mar 2021 17:04:22 GMT",
"tag": "@azure/msal-node_v1.0.0",
"version": "1.0.1",
"comments": {
"none": [
{
"comment": "adding docs and samples for using certificates and key vault",
"author": "[email protected]",
"commit": "f707b4ba807ceb4df1f4cc6a6a9b8bb7eb0109a3",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Thu, 18 Feb 2021 00:34:32 GMT",
"tag": "@azure/msal-node_v1.0.0",
"version": "1.0.0",
"comments": {
"patch": [
{
"comment": "update msal-node landing page & samples page",
"author": "[email protected]",
"commit": "c6de840d684291617012cfe444bc5759645076ea",
"package": "@azure/msal-node"
}
],
"prerelease": [
{
"comment": "ADD FAQs (#3038)",
"author": "[email protected]",
"commit": "20f94c3970fb14c7508aa7b61ba80e1639c50605",
"package": "@azure/msal-node"
},
{
"comment": "Update node version support in package.json(#2998)",
"author": "[email protected]",
"commit": "09f9a00784c40b3d2ca8a60ceef7fcefe47dd215",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Tue, 09 Feb 2021 01:48:22 GMT",
"tag": "@azure/msal-node_v1.0.0-beta.6",
"version": "1.0.0-beta.6",
"comments": {
"prerelease": [
{
"comment": "Fix version.json import errors (#2993)",
"author": "[email protected]",
"commit": "6dc3bc9e2148bc53b181d9f079f6e11e0159620b",
"package": "@azure/msal-node"
},
{
"comment": "Ignore OIDC scopes during cache lookup or replacement (#2969)",
"author": "[email protected]",
"commit": "b113b562ffc33ad44b8d98417753db397256aadf",
"package": "@azure/msal-node"
},
{
"comment": "Set the validateStatus locally than globally for `axios` (#2959)",
"author": "[email protected]",
"commit": "55617cb8bc5289c29fd4357a16605b6720195cbc",
"package": "@azure/msal-node"
},
{
"comment": "Add API Extractor for msal-node",
"author": "[email protected]",
"commit": "01747296efdf08eefe585930097d9bbbf6b00789",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Tue, 02 Feb 2021 01:56:47 GMT",
"tag": "@azure/msal-node_v1.0.0-beta.5",
"version": "1.0.0-beta.5",
"comments": {
"none": [
{
"comment": "Typedocs Updates (#2926)",
"author": "[email protected]",
"commit": "3fd4a48143ed4fb62b9e3266338b1abda920d68a",
"package": "@azure/msal-node"
},
{
"comment": "Add project references (#2930)",
"author": "[email protected]",
"commit": "a836e77e372f1b4da28195d4ad8c0c75d6794875",
"package": "@azure/msal-node"
},
{
"comment": "Test updates (#2949)",
"author": "[email protected]",
"commit": "cbdd4cd8ba23b5794aeb1f0788b828f1248f7236",
"package": "@azure/msal-node"
}
],
"prerelease": [
{
"comment": "Get package version from version.json (#2915)",
"author": "[email protected]",
"commit": "a6f4702f9439e318a8cb6dc65d1def16351a84fd",
"package": "@azure/msal-node"
},
{
"comment": "Add interfaces to public APIs in msal-node (#2623)",
"author": "[email protected]",
"commit": "baa4aa037f90209006eb3fb1ba1263fd09690343",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Thu, 21 Jan 2021 21:48:01 GMT",
"tag": "@azure/msal-node_v1.0.0-beta.4",
"version": "1.0.0-beta.4",
"comments": {
"prerelease": [
{
"comment": "Authority metadata caching (#2758)",
"author": "[email protected]",
"commit": "28b3268b1385e99249c0b7a95b0b14299011ca46",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Tue, 12 Jan 2021 00:51:26 GMT",
"tag": "@azure/msal-node_v1.0.0-beta.3",
"version": "1.0.0-beta.3",
"comments": {
"prerelease": [
{
"comment": "ClientAssertion.parseCertificate - allow newlines in cert (#2721).",
"author": "email not defined",
"commit": "199c99ef23aeb013f8dcec94e3210332fbc42ed0",
"package": "@azure/msal-node"
},
{
"comment": "feat: bump up the axios version on msal-node",
"author": "[email protected]",
"commit": "0d8e60f38340cb7b9a49dc3e0be28503105b5857",
"package": "@azure/msal-node"
},
{
"comment": "Add getKVStore to tokenCache (#2771)",
"author": "[email protected]",
"commit": "bb8ef90bcd20f111b903214c10429c1d507eafcf",
"package": "@azure/msal-node"
}
],
"none": [
{
"comment": "package-lock changes",
"author": "[email protected]",
"commit": "c092667cd997935625eafbc491ede54417d4b657",
"package": "@azure/msal-node"
},
{
"comment": "package.lock change",
"author": "[email protected]",
"commit": "4e50ca592f5a17578072be9e4ac28e05b3e6d594",
"package": "@azure/msal-node"
},
{
"comment": "Fix npm audit warnings",
"author": "[email protected]",
"commit": "751026cdaa24dd370c50ad714bf0b1d54c71fbde",
"package": "@azure/msal-node"
}
],
"patch": [
{
"comment": "change the code challenge encoding to uniform base64",
"author": "[email protected]",
"commit": "c0cce3b6f6199bf0db5d77a07c557c8cdb4e383c",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Mon, 07 Dec 2020 22:19:03 GMT",
"tag": "@azure/msal-node_v1.0.0-beta.2",
"version": "1.0.0-beta.2",
"comments": {
"prerelease": [
{
"comment": "Expose idTokenClaims on AccountInfo (#2554)",
"author": "[email protected]",
"commit": "cb2165aad7995d904ec49ade565d907dc314ce16",
"package": "@azure/msal-node"
},
{
"comment": "Add null to API response signatures (#2602)",
"author": "[email protected]",
"commit": "ebf18c6daead16f8cfd2afb3b63cbd59fc63046a",
"package": "@azure/msal-node"
},
{
"comment": "Enforce triple equals in eslint",
"author": "[email protected]",
"commit": "5975eb4077a2b4372683e68af4d748b0808134ab",
"package": "@azure/msal-node"
},
{
"comment": "Log messages contain package name and version (#2589)",
"author": "[email protected]",
"commit": "4568c16bd425e242cdb799ec59b3508654cc2e45",
"package": "@azure/msal-node"
},
{
"comment": "Update request types (#2512)",
"author": "[email protected]",
"commit": "5b891222d674eb5664af9187f319a61b50341f55",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Wed, 11 Nov 2020 23:33:20 GMT",
"tag": "@azure/msal-node_v1.0.0-beta.1",
"version": "1.0.0-beta.1",
"comments": {
"none": [
{
"comment": "Documentation update for new account retrieval APIs (#2585)",
"author": "[email protected]",
"commit": "cb782967cc8f07581488de71c4509fa12a702774",
"package": "@azure/msal-node"
}
],
"prerelease": [
{
"comment": "Add support for SubjectName/Issuer authentication (#2471).",
"author": "[email protected]",
"commit": "4e889b3f8e28b8fd46c0e63d0f142fb61b442510",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Tue, 10 Nov 2020 01:48:44 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.16",
"version": "1.0.0-alpha.16",
"comments": {
"prerelease": [
{
"comment": "Enhance lookup for IdTokens/AppMetadata (#2530)",
"author": "[email protected]",
"commit": "e51446295f8c857f1abc7f6874a4c7fde157699e",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Sat, 07 Nov 2020 01:50:14 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.15",
"version": "1.0.0-alpha.15",
"comments": {
"prerelease": [
{
"comment": "Fixing a bug and adding `localAccountId` in AccountInfo interface (#2516)",
"author": "[email protected]",
"commit": "98f43038608fe66a256dabfff0810476e9e6b3ab",
"package": "@azure/msal-node"
},
{
"comment": "Filtered lookup of IdTokens, AppMetadata; Error handling in Node Storage (#2530)",
"author": "[email protected]",
"commit": "354dd86449d792b7369fb240c5e2cfd70ca73488",
"package": "@azure/msal-node"
},
{
"comment": "Implement Password Grant Flow (#2204)",
"author": "[email protected]",
"commit": "baf6d157e7bbeae439526aee13eb08962974925b",
"package": "@azure/msal-node"
}
],
"none": [
{
"comment": "Build Pipeline Changes (#2406)",
"author": "[email protected]",
"commit": "af8459c0d53a4dc2bf495017608c0bb03004d006",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Mon, 02 Nov 2020 23:33:39 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.14",
"version": "1.0.0-alpha.14",
"comments": {
"prerelease": [
{
"comment": "Add getLogger and setLogger to msal-node (#2520)",
"author": "[email protected]",
"commit": "6fff8c1ed4d3dab2a74ff4b44a159645a6c2f535",
"package": "@azure/msal-node"
},
{
"comment": "Remove `debug` from the `msal-node` library (#2496)",
"author": "[email protected]",
"commit": "e354c26ae74632943109fb9101319acf6c6a691c",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Mon, 26 Oct 2020 21:00:29 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.13",
"version": "1.0.0-alpha.13",
"comments": {
"prerelease": [
{
"comment": "msal-browser and msal-node cache Interfaces to msal-common updated (#2415)",
"author": "[email protected]",
"commit": "9d4c4a18de10eb3d918810dc10766fbd5547165d",
"package": "@azure/msal-node"
},
{
"comment": "Export Node Cache Serializer for use in end-to-end testing framework (#2414)",
"author": "[email protected]",
"commit": "ba3fad77b2f6ea5034c423aa44096c5698cbcb3d",
"package": "@azure/msal-node"
}
],
"none": [
{
"comment": "Update samples path",
"author": "[email protected]",
"commit": "971ff811cb00a3d97b8ceff32999cd80d3d5a7ac",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Tue, 20 Oct 2020 23:47:28 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.12",
"version": "1.0.0-alpha.12",
"comments": {
"prerelease": [
{
"comment": "Adds support for any OIDC-compliant authority (#2389).",
"author": "[email protected]",
"commit": "2b6b9ec9033a8b829393e44c3feb7b19b163d2cd",
"package": "@azure/msal-node"
}
],
"none": [
{
"comment": "Updated eslint rules (#2345)",
"author": "[email protected]",
"commit": "64a4f9e868e63346dfd711dec717abe7fd14d949",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Thu, 15 Oct 2020 00:49:18 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.11",
"version": "1.0.0-alpha.11",
"comments": {
"prerelease": [
{
"comment": "Export all \"Request\" types in msal-node",
"author": "[email protected]",
"commit": "145602c7ced2c9f77a249f0abdca76f3358bd7db",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Wed, 14 Oct 2020 23:45:07 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.10",
"version": "1.0.0-alpha.10",
"comments": {
"prerelease": [
{
"comment": "Docs update for msal-node release",
"author": "[email protected]",
"commit": "20718209d5d567c02223a7f1b220b4aa40ad6817",
"package": "@azure/msal-node"
},
{
"comment": "Export error types for msal-node",
"author": "[email protected]",
"commit": "7a493ee25d80a31cbfa21f04aa952a9ac3528dfb",
"package": "@azure/msal-node"
},
{
"comment": "Add uuid as dependency in msal-node package.json so it is installed with the library",
"author": "[email protected]",
"commit": "cedeefacc09b755fc2edf59440ef7c60c4b872f8",
"package": "@azure/msal-node"
},
{
"comment": "Update TokenCache interface (#2348)",
"author": "[email protected]",
"commit": "26723689e35918c59bd6ce58ba8cb886118676c6",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Fri, 02 Oct 2020 17:42:35 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.9",
"version": "1.0.0-alpha.9",
"comments": {
"prerelease": [
{
"comment": "Dummy implementation of access token proof-of-possession",
"author": "[email protected]",
"commit": "3cffbc99730532bbd0b35f2e3a9df17f032c0675",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Wed, 30 Sep 2020 17:58:33 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.8",
"version": "1.0.0-alpha.8",
"comments": {
"none": [
{
"comment": "Updating the pre-release version(#2342)",
"author": "[email protected]",
"commit": "bc3f324edd6cf83937c31f73d3aefc6dbaf5f748",
"package": "@azure/msal-node"
},
{
"comment": "Update changelog versions for msal-node and extensions (#2336)",
"author": "[email protected]",
"commit": "323875a725e0d5049ff6742a9ca5160c2d4b7d0d",
"package": "@azure/msal-node"
}
]
}
},
{
"date": "Wed, 23 Sep 2020 21:13:48 GMT",
"tag": "@azure/msal-node_v1.0.0-alpha.7",