File: file.CHANGELOG.html

package info (click to toggle)
ruby-oauth2 2.0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,608 kB
  • sloc: ruby: 5,441; javascript: 529; makefile: 4; sh: 4
file content (1284 lines) | stat: -rw-r--r-- 60,111 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
  File: CHANGELOG
  
    &mdash; Documentation by YARD 0.9.37
  
</title>

  <link rel="stylesheet" href="css/style.css" type="text/css" />

  <link rel="stylesheet" href="css/common.css" type="text/css" />

<script type="text/javascript">
  pathId = "CHANGELOG";
  relpath = '';
</script>


  <script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>

  <script type="text/javascript" charset="utf-8" src="js/app.js"></script>


  </head>
  <body>
    <div class="nav_wrap">
      <iframe id="nav" src="file_list.html?1"></iframe>
      <div id="resizer"></div>
    </div>

    <div id="main" tabindex="-1">
      <div id="header">
        <div id="menu">
  
    <a href="_index.html">Index</a> &raquo; 
    <span class="title">File: CHANGELOG</span>
  
</div>

        <div id="search">
  
    <a class="full_list_link" id="class_list_link"
        href="class_list.html">

        <svg width="24" height="24">
          <rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
          <rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
          <rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
        </svg>
    </a>
  
</div>
        <div class="clear"></div>
      </div>

      <div id="content"><div id='filecontents'><h1 id="changelog">Changelog</h1>

<p><a href="https://semver.org/spec/v2.0.0.html"><img src="https://img.shields.io/badge/semver-2.0.0-FFDD67.svg?style=flat" alt="SemVer 2.0.0"></a> <a href="https://keepachangelog.com/en/1.0.0/"><img src="https://img.shields.io/badge/keep--a--changelog-1.0.0-FFDD67.svg?style=flat" alt="Keep-A-Changelog 1.0.0"></a></p>

<p>All notable changes to this project will be documented in this file.</p>

<p>The format is based on <a href="https://keepachangelog.com/en/1.0.0/">Keep a Changelog</a>,<br>
and this project adheres to <a href="https://semver.org/spec/v2.0.0.html">Semantic Versioning</a>,<br>
and <a href="https://tom.preston-werner.com/2022/05/23/major-version-numbers-are-not-sacred.html">yes</a>, platform and engine support are part of the <a href="https://github.com/semver/semver/issues/716#issuecomment-869336139">public API</a>.<br>
Please file a bug if you notice a violation of semantic versioning.</p>

<h2 id="unreleased"><a href="https://github.com/ruby-oauth/oauth2/compare/v2.0.17...HEAD">Unreleased</a></h2>

<h3 id="added">Added</h3>

<h3 id="changed">Changed</h3>

<h3 id="deprecated">Deprecated</h3>

<h3 id="removed">Removed</h3>

<h3 id="fixed">Fixed</h3>

<h3 id="security">Security</h3>

<h2 id="2017---2025-09-15">
<a href="https://github.com/ruby-oauth/oauth2/compare/v2.0.16...v2.0.17">2.0.17</a> - 2025-09-15</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.17">v2.0.17</a>
</li>
  <li>COVERAGE: 100.00% – 526/526 lines in 14 files</li>
  <li>BRANCH COVERAGE: 100.00% – 178/178 branches in 14 files</li>
  <li>90.48% documented</li>
</ul>

<h3 id="added-1">Added</h3>

<ul>
  <li>[gh!682][gh!682] - AccessToken: support Hash-based verb-dependent token transmission mode (e.g., :query, post: :header)</li>
</ul>

<h2 id="2016---2025-09-14">
<a href="https://github.com/ruby-oauth/oauth2/compare/v2.0.15...v2.0.16">2.0.16</a> - 2025-09-14</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.16">v2.0.16</a>
</li>
  <li>COVERAGE: 100.00% – 520/520 lines in 14 files</li>
  <li>BRANCH COVERAGE: 100.00% – 176/176 branches in 14 files</li>
  <li>90.48% documented</li>
</ul>

<h3 id="added-2">Added</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/680">gh!680</a> - E2E example using mock test server added in v2.0.11 by @pboling
    <ul>
      <li>mock-oauth2-server upgraded to v2.3.0
        <ul>
          <li>https://github.com/navikt/mock-oauth2-server</li>
        </ul>
      </li>
      <li><code>docker compose -f docker-compose-ssl.yml up -d --wait</code></li>
      <li><code>ruby examples/e2e.rb</code></li>
      <li><code>docker compose -f docker-compose-ssl.yml down</code></li>
      <li>mock server readiness wait is 90s</li>
      <li>override via E2E_WAIT_TIMEOUT</li>
    </ul>
  </li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/676">gh!676</a>, <a href="https://github.com/ruby-oauth/oauth2/pull/679">gh!679</a> - Apache SkyWalking Eyes dependency license check by @pboling</li>
</ul>

<h3 id="changed-1">Changed</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/678">gh!678</a> - Many improvements to make CI more resilient (past/future proof) by @pboling</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/681">gh!681</a> - Upgrade to kettle-dev v1.1.19</li>
</ul>

<h2 id="2015---2025-09-08">
<a href="https://github.com/ruby-oauth/oauth2/compare/v2.0.14...v2.0.15">2.0.15</a> - 2025-09-08</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.15">v2.0.15</a>
</li>
  <li>COVERAGE: 100.00% – 519/519 lines in 14 files</li>
  <li>BRANCH COVERAGE: 100.00% – 174/174 branches in 14 files</li>
  <li>90.48% documented</li>
</ul>

<h3 id="added-3">Added</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/671">gh!671</a> - Complete documentation example for Instagram by @pboling</li>
  <li>.env.local.example for contributor happiness</li>
  <li>note lack of builds for JRuby 9.2, 9.3 &amp; Truffleruby 22.3, 23.0
    <ul>
      <li><a href="https://github.com/actions/runner/issues/2347">actions/runner - issues/2347</a></li>
      <li><a href="https://github.com/orgs/community/discussions/15452">community/discussions/15452</a></li>
    </ul>
  </li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/670">gh!670</a> - AccessToken: verb-dependent token transmission mode by @mrj
    <ul>
      <li>e.g., Instagram GET=:query, POST/DELETE=:header</li>
    </ul>
  </li>
</ul>

<h3 id="changed-2">Changed</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/669">gh!669</a> - Upgrade to kettle-dev v1.1.9 by @pboling</li>
</ul>

<h3 id="fixed-1">Fixed</h3>

<ul>
  <li>Remove accidentally duplicated lines, and fix typos in CHANGELOG.md</li>
  <li>point badge to the correct workflow for Ruby 2.3 (caboose.yml)</li>
</ul>

<h2 id="2014---2025-08-31">
<a href="https://github.com/ruby-oauth/oauth2/compare/v2.0.13...v2.0.14">2.0.14</a> - 2025-08-31</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.14">v2.0.14</a>
</li>
  <li>COVERAGE: 100.00% – 519/519 lines in 14 files</li>
  <li>BRANCH COVERAGE: 100.00% – 174/174 branches in 14 files</li>
  <li>90.48% documented</li>
</ul>

<h3 id="added-4">Added</h3>

<ul>
  <li>improved documentation by @pboling</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/665">gh!665</a> - Document Mutual TLS (mTLS) usage with example in README (connection_opts.ssl client_cert/client_key and auth_scheme: :tls_client_auth) by @pboling</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/666">gh!666</a> - Document usage of flat query params using Faraday::FlatParamsEncoder, with example URI, in README by @pboling
    <ul>
      <li>Spec: verify flat params are preserved with Faraday::FlatParamsEncoder (skips on Faraday without FlatParamsEncoder)</li>
    </ul>
  </li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/662">gh!662</a> - documentation notes in code comments and README highlighting OAuth 2.1 differences, with references, by @pboling
    <ul>
      <li>PKCE required for auth code,</li>
      <li>exact redirect URI match,</li>
      <li>implicit/password grants omitted,</li>
      <li>avoid bearer tokens in query,</li>
      <li>refresh token guidance for public clients,</li>
      <li>simplified client definitions</li>
    </ul>
  </li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/663">gh!663</a> - document how to implement an OIDC client with this gem in OIDC.md by @pboling
    <ul>
      <li>also, list libraries built on top of the oauth2 gem that implement OIDC</li>
    </ul>
  </li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/664">gh!664</a> - README: Add example for JHipster UAA (Spring Cloud) password grant, converted from Postman/Net::HTTP by @pboling</li>
</ul>

<h2 id="2013---2025-08-30">
<a href="https://github.com/ruby-oauth/oauth2/compare/v2.0.12...v2.0.13">2.0.13</a> - 2025-08-30</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.13">v2.0.13</a>
</li>
  <li>COVERAGE: 100.00% – 519/519 lines in 14 files</li>
  <li>BRANCH COVERAGE: 100.00% – 174/174 branches in 14 files</li>
  <li>90.48% documented</li>
</ul>

<h3 id="added-5">Added</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/656">gh!656</a> - Support revocation with URL-encoded parameters</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/660">gh!660</a> - Inline yard documentation by @pboling</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/660">gh!660</a> - Complete RBS types documentation by @pboling</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/660">gh!660</a>- (more) Comprehensive documentation / examples by @pboling</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/657">gh!657</a> - Updated documentation for org-rename by @pboling</li>
  <li>More funding links by @Aboling0</li>
  <li>Documentation: Added docs/OIDC.md with OIDC 1.0 overview, example, and references</li>
</ul>

<h3 id="changed-3">Changed</h3>

<ul>
  <li>Upgrade Code of Conduct to Contributor Covenant 2.1 by @pboling</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/660">gh!660</a> - Shrink post-install message by 4 lines by @pboling</li>
</ul>

<h3 id="fixed-2">Fixed</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/660">gh!660</a> - Links in README (including link to HEAD documentation) by @pboling</li>
</ul>

<h3 id="security-1">Security</h3>

<h2 id="2012---2025-05-31">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.11...v2.0.12">2.0.12</a> - 2025-05-31</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.12">v2.0.12</a>
</li>
  <li>Line Coverage: 100.0% (520 / 520)</li>
  <li>Branch Coverage: 100.0% (174 / 174)</li>
  <li>80.00% documented</li>
</ul>

<h3 id="added-6">Added</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/652">gh!652</a> - Support IETF rfc7515 JSON Web Signature - JWS by @mridang
    <ul>
      <li>Support JWT <code>kid</code> for key discovery and management</li>
    </ul>
  </li>
  <li>More Documentation by @pboling
    <ul>
      <li>Documented Serialization Extensions</li>
      <li>Added Gatzo.com FLOSS logo by @Aboling0, CC BY-SA 4.0</li>
    </ul>
  </li>
  <li>Documentation site @ https://oauth2.galtzo.com now complete</li>
</ul>

<h3 id="changed-4">Changed</h3>

<ul>
  <li>Updates to gemspec (email, funding url, post install message)</li>
</ul>

<h3 id="fixed-3">Fixed</h3>

<ul>
  <li>Documentation Typos by @pboling</li>
</ul>

<h2 id="2011---2025-05-23">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.10...v2.0.11">2.0.11</a> - 2025-05-23</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.11">v2.0.11</a>
</li>
  <li>COVERAGE: 100.00% – 518/518 lines in 14 files</li>
  <li>BRANCH COVERAGE: 100.00% – 172/172 branches in 14 files</li>
  <li>80.00% documented</li>
</ul>

<h3 id="added-7">Added</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/651">gh!651</a> - <code>:snaky_hash_klass</code> option (@pboling)</li>
  <li>More documentation</li>
  <li>Codeberg as ethical mirror (@pboling)
    <ul>
      <li>https://codeberg.org/ruby-oauth/oauth2</li>
    </ul>
  </li>
  <li>Don’t check for cert if SKIP_GEM_SIGNING is set (@pboling)</li>
  <li>All runtime deps, including oauth-xx sibling gems, are now tested against HEAD (@pboling)</li>
  <li>All runtime deps, including ruby-oauth sibling gems, are now tested against HEAD (@pboling)</li>
  <li>YARD config, GFM compatible with relative file links (@pboling)</li>
  <li>Documentation site on GitHub Pages (@pboling)
    <ul>
      <li><a href="https://oauth2.galtzo.com">oauth2.galtzo.com</a></li>
    </ul>
  </li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/649">!649</a> - Test compatibility with all key minor versions of Hashie v0, v1, v2, v3, v4, v5, HEAD (@pboling)</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/651">gh!651</a> - Mock OAuth2 server for testing (@pboling)
    <ul>
      <li>https://github.com/navikt/mock-oauth2-server</li>
    </ul>
  </li>
</ul>

<h3 id="changed-5">Changed</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/651">gh!651</a> - Upgraded to snaky_hash v2.0.3 (@pboling)
    <ul>
      <li>Provides solution for serialization issues</li>
    </ul>
  </li>
  <li>Updated <code>spec.homepage_uri</code> in gemspec to GitHub Pages YARD documentation site (@pboling)</li>
</ul>

<h3 id="fixed-4">Fixed</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/650">gh!650</a> - Regression in return type of <code>OAuth2::Response#parsed</code> (@pboling)</li>
  <li>Incorrect documentation related to silencing warnings (@pboling)</li>
</ul>

<h2 id="2010---2025-05-17">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.9...v2.0.10">2.0.10</a> - 2025-05-17</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.10">v2.0.10</a>
</li>
  <li>COVERAGE: 100.00% – 518/518 lines in 14 files</li>
  <li>BRANCH COVERAGE: 100.00% – 170/170 branches in 14 files</li>
  <li>79.05% documented</li>
</ul>

<h3 id="added-8">Added</h3>

<ul>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/632">gh!632</a> - Added <code>funding.yml</code> (@Aboling0)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/635">!635</a> - Added <code>.gitlab-ci.yml</code> (@jessieay)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/638">#638</a> - Documentation of support for <strong>ILO Fundamental Principles of Rights at Work</strong> (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/642">!642</a> - 20-year certificate for signing gem releases, expires 2045-04-29 (@pboling)
    <ul>
      <li>Gemspec metadata
        <ul>
          <li>funding_uri</li>
          <li>news_uri</li>
          <li>mailing_list_uri</li>
        </ul>
      </li>
      <li>SHA256 and SHA512 Checksums for release</li>
    </ul>
  </li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/643">!643</a> - Add <code>token_name</code> option (@pboling)
    <ul>
      <li>Specify the parameter name that identifies the access token</li>
    </ul>
  </li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/645">!645</a> - Add <code>OAuth2::OAUTH_DEBUG</code> constant, based on `ENV[“OAUTH_DEBUG”] (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/646">!646</a> - Add <code>OAuth2.config.silence_extra_tokens_warning</code>, default: false (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647">!647</a> - Add IETF RFC 7009 Token Revocation compliant (@pboling)
    <ul>
      <li><code>OAuth2::Client#revoke_token</code></li>
      <li><code>OAuth2::AccessToken#revoke</code></li>
      <li>See: https://datatracker.ietf.org/doc/html/rfc7009</li>
    </ul>
  </li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/644">gh!644</a>, <a href="https://github.com/ruby-oauth/oauth2/pull/645">gh!645</a> - Added CITATION.cff (@Aboling0)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/648">!648</a> - Improved documentation (@pboling)</li>
</ul>

<h3 id="changed-6">Changed</h3>

<ul>
  <li>Default value of <code>OAuth2.config.silence_extra_tokens_warning</code> was <code>false</code>, now <code>true</code> (@pboling)</li>
  <li>Gem releases are now cryptographically signed, with a 20-year cert (@pboling)
    <ul>
      <li>Allow linux distros to build release without signing, as their package managers sign independently</li>
    </ul>
  </li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647">!647</a> - <code>OAuth2::AccessToken#refresh</code> now supports block param pass through (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647">!647</a> - <code>OAuth2.config</code> is no longer writable (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/647">!647</a> - Errors raised by <code>OAuth2::AccessToken</code> are now always <code>OAuth2::Error</code> and have better metadata (@pboling)</li>
</ul>

<h3 id="fixed-5">Fixed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/95">#95</a> - restoring an access token via <code>AccessToken#from_hash</code> (@pboling)
    <ul>
      <li>This was a 13 year old bug report. 😘</li>
    </ul>
  </li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/619">#619</a> - Internal options (like <code>snaky</code>, <code>raise_errors</code>, and <code>parse</code>) are no longer included in request (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/633">!633</a> - Spaces will now be encoded as <code>%20</code> instead of <code>+</code> (@nov.matake)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/634">!634</a> - <code>CHANGELOG.md</code> documentation fix (@skuwa229)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/638">!638</a> - fix <code>expired?</code> when <code>expires_in</code> is <code>0</code> (@disep)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/639">!639</a> - Only instantiate <code>OAuth2::Error</code> if <code>raise_errors</code> option is <code>true</code> (@glytch2)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/639">#639</a> - <code>AccessToken#to_hash</code> is now serializable, just a regular Hash (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/640">!640</a> - <code>README.md</code> documentation fix (@martinezcoder)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/641">!641</a> - Do not include sensitive information in the <code>inspect</code> (@manuelvanrijn)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/641">#641</a> - Made default JSON response parser more resilient (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/645">#645</a> - Response no longer becomes a snaky hash (@pboling)</li>
  <li>
<a href="https://github.com/ruby-oauth/oauth2/pull/646">gh!646</a> - Change <code>require</code> to <code>require_relative</code> (improve performance) (@Aboling0)</li>
</ul>

<h2 id="209---2022-09-16">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.8...v2.0.9">2.0.9</a> - 2022-09-16</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.9">v2.0.9</a>
</li>
</ul>

<h3 id="added-9">Added</h3>

<ul>
  <li>More specs (@pboling)</li>
</ul>

<h3 id="changed-7">Changed</h3>

<ul>
  <li>Complete migration to main branch as default (@pboling)</li>
  <li>Complete migration to Gitlab, updating all links, and references in VCS-managed files (@pboling)</li>
</ul>

<h2 id="208---2022-09-01">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.7...v2.0.8">2.0.8</a> - 2022-09-01</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.8">v2.0.8</a>
</li>
</ul>

<h3 id="changed-8">Changed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/630">!630</a> - Extract snaky_hash to external dependency (@pboling)</li>
</ul>

<h3 id="added-10">Added</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/631">!631</a> - New global configuration option OAuth2.config.silence_extra_tokens_warning (default: false) fixes <a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/628">#628</a>
</li>
</ul>

<h2 id="207---2022-08-22">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.6...v2.0.7">2.0.7</a> - 2022-08-22</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.7">v2.0.7</a>
</li>
</ul>

<h3 id="added-11">Added</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/629">!629</a> - Allow POST of JSON to get token (@pboling, @terracatta)</li>
</ul>

<h3 id="fixed-6">Fixed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/626">!626</a> - Fixes a regression in 2.0.6. Will now prefer the key order from the lookup, not the hash keys (@rickselby)
    <ul>
      <li>Note: This fixes compatibility with <code>omniauth-oauth2</code> and AWS</li>
    </ul>
  </li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/625">!625</a> - Fixes the printed version in the post install message (@hasghari)</li>
</ul>

<h2 id="206---2022-07-13">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.5...v2.0.6">2.0.6</a> - 2022-07-13</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.6">v2.0.6</a>
</li>
</ul>

<h3 id="fixed-7">Fixed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/624">!624</a> - Fixes a <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/623">regression</a> in v2.0.5, where an error would be raised in refresh_token flows due to (legitimate) lack of access_token (@pboling)</li>
</ul>

<h2 id="205---2022-07-07">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.4...v2.0.5">2.0.5</a> - 2022-07-07</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.5">v2.0.5</a>
</li>
</ul>

<h3 id="fixed-8">Fixed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/620">!620</a> - Documentation improvements, to help with upgrading (@swanson)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/621">!621</a> - Fixed <a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/528">#528</a> and <a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/619">#619</a> (@pboling)
    <ul>
      <li>All data in responses is now returned, with the access token removed and set as <code>token</code>
        <ul>
          <li>
<code>refresh_token</code> is no longer dropped</li>
          <li>
<strong>BREAKING</strong>: Microsoft’s <code>id_token</code> is no longer left as <code>access_token['id_token']</code>, but moved to the standard <code>access_token.token</code> that all other strategies use</li>
        </ul>
      </li>
      <li>Remove <code>parse</code> and <code>snaky</code> from options so they don’t get included in response</li>
      <li>There is now 100% test coverage, for lines <em>and</em> branches, and it will stay that way.</li>
    </ul>
  </li>
</ul>

<h2 id="204---2022-07-01">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.3...v2.0.4">2.0.4</a> - 2022-07-01</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.4">v2.0.4</a>
</li>
</ul>

<h3 id="fixed-9">Fixed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/618">!618</a> - In some scenarios the <code>snaky</code> option default value was not applied (@pboling)</li>
</ul>

<h2 id="203---2022-06-28">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.2...v2.0.3">2.0.3</a> - 2022-06-28</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.3">v2.0.3</a>
</li>
</ul>

<h3 id="added-12">Added</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/611">!611</a> - Proper deprecation warnings for <code>extract_access_token</code> argument (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/612">!612</a> - Add <code>snaky: false</code> option to skip conversion to <code>OAuth2::SnakyHash</code> (default: true) (@pboling)</li>
</ul>

<h3 id="fixed-10">Fixed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/608">!608</a> - Wrap <code>Faraday::TimeoutError</code> in <code>OAuth2::TimeoutError</code> (@nbibler)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/615">!615</a> - Fix support for requests with blocks, see <code>Faraday::Connection#run_request</code> (@pboling)</li>
</ul>

<h2 id="202---2022-06-24">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.1...v2.0.2">2.0.2</a> - 2022-06-24</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.2">v2.0.2</a>
</li>
</ul>

<h3 id="fixed-11">Fixed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/604">!604</a> - Wrap <code>Faraday::TimeoutError</code> in <code>OAuth2::TimeoutError</code> (@stanhu)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/606">!606</a> - Ruby 2.7 deprecation warning fix: Move <code>access_token_class</code> parameter into <code>Client</code> constructor (@stanhu)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/607">!607</a> - CHANGELOG correction, reference to <code>OAuth2::ConnectionError</code> (@zavan)</li>
</ul>

<h2 id="201---2022-06-22">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v2.0.0...v2.0.1">2.0.1</a> - 2022-06-22</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.1">v2.0.1</a>
</li>
</ul>

<h3 id="added-13">Added</h3>

<ul>
  <li>Documentation improvements (@pboling)</li>
  <li>Increased test coverage to 99% (@pboling)</li>
</ul>

<h2 id="200---2022-06-21">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.11...v2.0.0">2.0.0</a> - 2022-06-21</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v2.0.0">v2.0.0</a>
</li>
</ul>

<h3 id="added-14">Added</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/158">!158</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/344">!344</a> - Optionally pass raw response to parsers (@niels)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/190">!190</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/332">!332</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/334">!334</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/335">!335</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/360">!360</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/426">!426</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/427">!427</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/461">!461</a> - Documentation (@josephpage, @pboling, @meganemura, @joshRpowell, @elliotcm)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/220">!220</a> - Support IETF rfc7523 JWT Bearer Tokens Draft 04+ (@jhmoore)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/298">!298</a> - Set the response object on the access token on Client#get_token for debugging (@cpetschnig)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/305">!305</a> - Option: <code>OAuth2::Client#get_token</code> - <code>:access_token_class</code> (<code>AccessToken</code>); user specified class to use for all calls to <code>get_token</code> (@styd)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/571">!346</a> - Modern gem structure (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/351">!351</a> - Support Jruby 9k (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/362">!362</a> - Support SemVer release version scheme (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/363">!363</a> - New method <code>OAuth2::AccessToken#refresh!</code> same as old <code>refresh</code>, with backwards compatibility alias (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/364">!364</a> - Support <code>application/hal+json</code> format (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/365">!365</a> - Support <code>application/vnd.collection+json</code> format (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/376">!376</a> - <em>Documentation</em>: Example / Test for Google 2-legged JWT (@jhmoore)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/381">!381</a> - Spec for extra header params on client credentials (@nikz)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/394">!394</a> - Option: <code>OAuth2::AccessToken#initialize</code> - <code>:expires_latency</code> (<code>nil</code>); number of seconds by which AccessToken validity will be reduced to offset latency (@klippx)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/412">!412</a> - Support <code>application/vdn.api+json</code> format (from jsonapi.org) (@david-christensen)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/413">!413</a> - <em>Documentation</em>: License scan and report (@meganemura)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/442">!442</a> - Option: <code>OAuth2::Client#initialize</code> - <code>:logger</code> (<code>::Logger.new($stdout)</code>) logger to use when OAUTH_DEBUG is enabled (for parity with <code>1-4-stable</code> branch) (@rthbound)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/494">!494</a> - Support <a href="https://openid.net/specs/openid-connect-core-1_0.html#ClientAuthentication">OIDC 1.0 Private Key JWT</a>; based on the OAuth JWT assertion specification <a href="https://tools.ietf.org/html/rfc7523">(RFC 7523)</a> (@SteveyblamWork)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/549">!549</a> - Wrap <code>Faraday::ConnectionFailed</code> in <code>OAuth2::ConnectionError</code> (@nikkypx)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/550">!550</a> - Raise error if location header not present when redirecting (@stanhu)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/552">!552</a> - Add missing <code>version.rb</code> require (@ahorek)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/553">!553</a> - Support <code>application/problem+json</code> format (@janz93)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/560">!560</a> - Support IETF rfc6749, section 2.3.1 - don’t set auth params when <code>nil</code> (@bouk)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/571">!571</a> - Support Ruby 3.1 (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/575">!575</a> - Support IETF rfc7231, section 7.1.2 - relative location in redirect (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/581">!581</a> - <em>Documentation</em>: of breaking changes (@pboling)</li>
</ul>

<h3 id="changed-9">Changed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/191">!191</a> - <strong>BREAKING</strong>: Token is expired if <code>expired_at</code> time is <code>now</code> (@davestevens)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/312">!312</a> - <strong>BREAKING</strong>: Set <code>:basic_auth</code> as default for <code>:auth_scheme</code> instead of <code>:request_body</code>. This was default behavior before 1.3.0. (@tetsuya, @wy193777)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/317">!317</a> - <em>Dependency</em>: Upgrade <code>jwt</code> to 2.x.x (@travisofthenorth)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/338">!338</a> - <em>Dependency</em>: Switch from <code>Rack::Utils.escape</code> to <code>CGI.escape</code> (@josephpage)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/339">!339</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/368">!368</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/424">!424</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/479">!479</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/493">!493</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/539">!539</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/542">!542</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/553">!553</a> - CI Updates, code coverage, linting, spelling, type fixes, New VERSION constant (@pboling, @josephpage, @ahorek)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/410">!410</a> - <strong>BREAKING</strong>: Removed the ability to call .error from an OAuth2::Response object (@jhmoore)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/414">!414</a> - Use Base64.strict_encode64 instead of custom internal logic (@meganemura)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/469">!469</a> - <strong>BREAKING</strong>: Default value for option <code>OAuth2::Client</code> - <code>:authorize_url</code> removed leading slash to work with relative paths by default (<code>'oauth/authorize'</code>) (@ghost)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/469">!469</a> - <strong>BREAKING</strong>: Default value for option <code>OAuth2::Client</code> - <code>:token_url</code> removed leading slash to work with relative paths by default (<code>'oauth/token'</code>) (@ghost)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/507">!507</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/575">!575</a> - <strong>BREAKING</strong>: Transform keys to snake case, always, by default (ultimately via <code>rash_alt</code> gem)
    <ul>
      <li>Original keys will still work as previously, in most scenarios, thanks to <code>rash_alt</code> gem.</li>
      <li>However, this is a <em>breaking</em> change if you rely on <code>response.parsed.to_h</code>, as the keys in the result will be snake case.</li>
      <li>As of version 2.0.4 you can turn key transformation off with the <code>snaky: false</code> option.</li>
    </ul>
  </li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/576">!576</a> - <strong>BREAKING</strong>: Stop rescuing parsing errors (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/576">!591</a> - <em>DEPRECATION</em>: <code>OAuth2::Client</code> - <code>:extract_access_token</code> option is deprecated</li>
</ul>

<h3 id="fixed-12">Fixed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/158">!158</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/344">!344</a> - Handling of errors when using <code>omniauth-facebook</code> (@niels)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/294">!294</a> - Fix: “Unexpected middleware set” issue with Faraday when <code>OAUTH_DEBUG=true</code> (@spectator, @gafrom)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/300">!300</a> - <em>Documentation</em>: <code>Oauth2::Error</code> - Error codes are strings, not symbols (@NobodysNightmare)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/318">!318</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/326">!326</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/343">!343</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/347">!347</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/397">!397</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/464">!464</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/561">!561</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/565">!565</a> - <em>Dependency</em>: Support all versions of <code>faraday</code> (see <a href="gemfiles/README.md">gemfiles/README.md</a> for compatibility matrix with Ruby engines &amp; versions) (@pboling, @raimondasv, @zacharywelch, @Fudoshiki, @ryogift, @sj26, @jdelStrother)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/322">!322</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/331">!331</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/337">!337</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/361">!361</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/371">!371</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/377">!377</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/383">!383</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/392">!392</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/395">!395</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/400">!400</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/401">!401</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/403">!403</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/415">!415</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/567">!567</a> - Updated Rubocop, Rubocop plugins and improved code style (@pboling, @bquorning, @lautis, @spectator)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/328">!328</a> - <em>Documentation</em>: Homepage URL is SSL (@amatsuda)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/339">!339</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/479">!479</a> - Update testing infrastructure for all supported Rubies (@pboling and @josephpage)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/366">!366</a> - <strong>Security</strong>: Fix logging to <code>$stdout</code> of request and response bodies via Faraday’s logger and <code>ENV["OAUTH_DEBUG"] == 'true'</code> (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/380">!380</a> - Fix: Stop attempting to encode non-encodable objects in <code>Oauth2::Error</code> (@jhmoore)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/399">!399</a> - Fix: Stop duplicating <code>redirect_uri</code> in <code>get_token</code> (@markus)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/410">!410</a> - Fix: <code>SystemStackError</code> caused by circular reference between Error and Response classes (@jhmoore)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/460">!460</a> - Fix: Stop throwing errors when <code>raise_errors</code> is set to <code>false</code>; analog of <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/524">!524</a> for <code>1-4-stable</code> branch (@joaolrpaulo)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/472">!472</a> - <strong>Security</strong>: Add checks to enforce <code>client_secret</code> is <em>never</em> passed in authorize_url query params for <code>implicit</code> and <code>auth_code</code> grant types (@dfockler)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/482">!482</a> - <em>Documentation</em>: Update last of <code>intridea</code> links to <code>ruby-oauth</code> (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/536">!536</a> - <strong>Security</strong>: Compatibility with more (and recent) Ruby OpenSSL versions, Github Actions, Rubocop updated, analogous to <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/535">!535</a> on <code>1-4-stable</code> branch (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/595">!595</a> - Graceful handling of empty responses from <code>Client#get_token</code>, respecting <code>:raise_errors</code> config (@stanhu)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/596">!596</a> - Consistency between <code>AccessToken#refresh</code> and <code>Client#get_token</code> named arguments (@stanhu)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/598">!598</a> - Fix unparseable data not raised as error in <code>Client#get_token</code>, respecting <code>:raise_errors</code> config (@stanhu)</li>
</ul>

<h3 id="removed-1">Removed</h3>

<ul>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/341">!341</a> - Remove Rdoc &amp; Jeweler related files (@josephpage)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/342">!342</a> - <strong>BREAKING</strong>: Dropped support for Ruby 1.8 (@josephpage)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/539">!539</a> - Remove reliance on globally included OAuth2 in tests, analog of <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/538">!538</a> for 1-4-stable (@anderscarling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/566">!566</a> - <em>Dependency</em>: Removed <code>wwtd</code> (@bquorning)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/589">!589</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/593">!593</a> - Remove support for expired MAC token draft spec (@stanhu)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/590">!590</a> - <em>Dependency</em>: Removed <code>multi_json</code> (@stanhu)</li>
</ul>

<h2 id="1411---2022-09-16">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.10...v1.4.11">1.4.11</a> - 2022-09-16</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.11">v1.4.11</a>
</li>
  <li>Complete migration to main branch as default (@pboling)</li>
  <li>Complete migration to Gitlab, updating all links, and references in VCS-managed files (@pboling)</li>
</ul>

<h2 id="1410---2022-07-01">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.9...v1.4.10">1.4.10</a> - 2022-07-01</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.10">v1.4.10</a>
</li>
  <li>FIPS Compatibility <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/587">!587</a> (@akostadinov)</li>
</ul>

<h2 id="149---2022-02-20">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.8...v1.4.9">1.4.9</a> - 2022-02-20</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.9">v1.4.9</a>
</li>
  <li>Fixes compatibility with Faraday v2 <a href="https://gitlab.com/ruby-oauth/oauth2/-/issues/572">572</a>
</li>
  <li>Includes supported versions of Faraday in test matrix:
    <ul>
      <li>Faraday ~&gt; 2.2.0 with Ruby &gt;= 2.6</li>
      <li>Faraday ~&gt; 1.10 with Ruby &gt;= 2.4</li>
      <li>Faraday ~&gt; 0.17.3 with Ruby &gt;= 1.9</li>
    </ul>
  </li>
  <li>Add Windows and MacOS to test matrix</li>
</ul>

<h2 id="148---2022-02-18">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.7...v1.4.8">1.4.8</a> - 2022-02-18</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.8">v1.4.8</a>
</li>
  <li>MFA is now required to push new gem versions (@pboling)</li>
  <li>README overhaul w/ new Ruby Version and Engine compatibility policies (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/569">!569</a> Backport fixes (<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/561">!561</a> by @ryogift), and add more fixes, to allow faraday 1.x and 2.x (@jrochkind)</li>
  <li>Improve Code Coverage tracking (Coveralls, CodeCov, CodeClimate), and enable branch coverage (@pboling)</li>
  <li>Add CodeQL, Security Policy, Funding info (@pboling)</li>
  <li>Added Ruby 3.1, jruby, jruby-head, truffleruby, truffleruby-head to build matrix (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/543">!543</a> - Support for more modern Open SSL libraries (@pboling)</li>
</ul>

<h2 id="147---2021-03-19">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.6...v1.4.7">1.4.7</a> - 2021-03-19</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.7">v1.4.7</a>
</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/541">!541</a> - Backport fix to expires_at handling <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/533">!533</a> to 1-4-stable branch. (@dobon)</li>
</ul>

<h2 id="146---2021-03-19">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.5...v1.4.6">1.4.6</a> - 2021-03-19</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.6">v1.4.6</a>
</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/540">!540</a> - Add VERSION constant (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/537">!537</a> - Fix crash in OAuth2::Client#get_token (@anderscarling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/538">!538</a> - Remove reliance on globally included OAuth2 in tests, analogous to <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/539">!539</a> on main branch (@anderscarling)</li>
</ul>

<h2 id="145---2021-03-18">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.4...v1.4.5">1.4.5</a> - 2021-03-18</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.5">v1.4.5</a>
</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/535">!535</a> - Compatibility with range of supported Ruby OpenSSL versions, Rubocop updates, Github Actions, analogous to <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/536">!536</a> on main branch (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/518">!518</a> - Add extract_access_token option to OAuth2::Client (@jonspalmer)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/507">!507</a> - Fix camel case content type, response keys (@anvox)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/500">!500</a> - Fix YARD documentation formatting (@olleolleolle)</li>
</ul>

<h2 id="144---2020-02-12">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.3...v1.4.4">1.4.4</a> - 2020-02-12</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.4">v1.4.4</a>
</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/408">!408</a> - Fixed expires_at for formatted time (@Lomey)</li>
</ul>

<h2 id="143---2020-01-29">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.2...v1.4.3">1.4.3</a> - 2020-01-29</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.3">v1.4.3</a>
</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/483">!483</a> - add project metadata to gemspec (@orien)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/495">!495</a> - support additional types of access token requests (@SteveyblamFreeagent, @thomcorley, @dgholz)
    <ul>
      <li>Adds support for private_key_jwt and tls_client_auth</li>
    </ul>
  </li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/433">!433</a> - allow field names with square brackets and numbers in params (@asm256)</li>
</ul>

<h2 id="142---2019-10-01">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.1...v1.4.2">1.4.2</a> - 2019-10-01</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.2">v1.4.2</a>
</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/478">!478</a> - support latest version of faraday &amp; fix build (@pboling)
    <ul>
      <li>Officially support Ruby 2.6 and truffleruby</li>
    </ul>
  </li>
</ul>

<h2 id="141---2018-10-13">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.4.0...v1.4.1">1.4.1</a> - 2018-10-13</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.1">v1.4.1</a>
</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/417">!417</a> - update jwt dependency (@thewoolleyman)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/419">!419</a> - remove rubocop dependency (temporary, added back in <a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/423">!423</a>) (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/418">!418</a> - update faraday dependency (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/420">!420</a> - update <a href="https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/oauth2.gemspec">oauth2.gemspec</a> (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/421">!421</a> - fix <a href="https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/CHANGELOG.md">CHANGELOG.md</a> for previous releases (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/422">!422</a> - update <a href="https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/LICENSE">LICENSE</a> and <a href="https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/README.md">README.md</a> (@pboling)</li>
  <li>
<a href="https://gitlab.com/ruby-oauth/oauth2/-/merge_requests/423">!423</a> - update <a href="https://travis-ci.org/ruby-oauth/oauth2/builds">builds</a>, <a href="https://gitlab.com/ruby-oauth/oauth2/-/blob/1-4-stable/Rakefile">Rakefile</a> (@pboling)
    <ul>
      <li>officially document supported Rubies
        <ul>
          <li>Ruby 1.9.3</li>
          <li>Ruby 2.0.0</li>
          <li>Ruby 2.1</li>
          <li>Ruby 2.2</li>
          <li>
<a href="https://www.jruby.org/2017/05/11/jruby-1-7-27.html">JRuby 1.7</a> (targets MRI v1.9)</li>
          <li>
<a href="https://www.jruby.org/2016/01/26/jruby-9-0-5-0.html">JRuby 9.0</a> (targets MRI v2.0)</li>
          <li>Ruby 2.3</li>
          <li>Ruby 2.4</li>
          <li>Ruby 2.5</li>
          <li>
<a href="https://www.jruby.org/2017/05/16/jruby-9-1-9-0.html">JRuby 9.1</a> (targets MRI v2.3)</li>
          <li>
<a href="https://www.jruby.org/2018/05/24/jruby-9-2-0-0.html">JRuby 9.2</a> (targets MRI v2.5)</li>
        </ul>
      </li>
    </ul>
  </li>
</ul>

<h2 id="140---2017-06-09">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.3.1...v1.4.0">1.4.0</a> - 2017-06-09</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.4.0">v1.4.0</a>
</li>
  <li>Drop Ruby 1.8.7 support (@sferik)</li>
  <li>Fix some RuboCop offenses (@sferik)</li>
  <li>
<em>Dependency</em>: Remove Yardstick (@sferik)</li>
  <li>
<em>Dependency</em>: Upgrade Faraday to 0.12 (@sferik)</li>
</ul>

<h2 id="131---2017-03-03">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.3.0...v1.3.1">1.3.1</a> - 2017-03-03</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.3.1">v1.3.1</a>
</li>
  <li>Add support for Ruby 2.4.0 (@pschambacher)</li>
  <li>
<em>Dependency</em>: Upgrade Faraday to Faraday 0.11 (@mcfiredrill, @rhymes, @pschambacher)</li>
</ul>

<h2 id="130---2016-12-28">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.2.0...v1.3.0">1.3.0</a> - 2016-12-28</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.3.0">v1.3.0</a>
</li>
  <li>Add support for header-based authentication to the <code>Client</code> so it can be used across the library (@bjeanes)</li>
  <li>Default to header-based authentication when getting a token from an authorisation code (@maletor)</li>
  <li>
<strong>Breaking</strong>: Allow an <code>auth_scheme</code> (<code>:basic_auth</code> or <code>:request_body</code>) to be set on the client, defaulting to <code>:request_body</code> to maintain backwards compatibility (@maletor, @bjeanes)</li>
  <li>Handle <code>redirect_uri</code> according to the OAuth 2 spec, so it is passed on redirect and at the point of token exchange (@bjeanes)</li>
  <li>Refactor handling of encoding of error responses (@urkle)</li>
  <li>Avoid instantiating an <code>Error</code> if there is no error to raise (@urkle)</li>
  <li>Add support for Faraday 0.10 (@rhymes)</li>
</ul>

<h2 id="120---2016-07-01">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.1.0...v1.2.0">1.2.0</a> - 2016-07-01</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.2.0">v1.2.0</a>
</li>
  <li>Properly handle encoding of error responses (so we don’t blow up, for example, when Google’s response includes a ∞) (@Motoshi-Nishihira)</li>
  <li>Make a copy of the options hash in <code>AccessToken#from_hash</code> to avoid accidental mutations (@Linuus)</li>
  <li>Use <code>raise</code> rather than <code>fail</code> to throw exceptions (@sferik)</li>
</ul>

<h2 id="110---2016-01-30">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v1.0.0...v1.1.0">1.1.0</a> - 2016-01-30</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.1.0">v1.1.0</a>
</li>
  <li>Various refactors (eliminating <code>Hash#merge!</code> usage in <code>AccessToken#refresh!</code>, use <code>yield</code> instead of <code>#call</code>, freezing mutable objects in constants, replacing constants with class variables) (@sferik)</li>
  <li>Add support for Rack 2, and bump various other dependencies (@sferik)</li>
</ul>

<h2 id="100---2014-07-09">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.9.4...v1.0.0">1.0.0</a> - 2014-07-09</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v1.0.0">v1.0.0</a>
</li>
</ul>

<h3 id="added-15">Added</h3>

<ul>
  <li>Add an implementation of the MAC token spec.</li>
</ul>

<h3 id="fixed-13">Fixed</h3>

<ul>
  <li>Fix Base64.strict_encode64 incompatibility with Ruby 1.8.7.</li>
</ul>

<h2 id="050---2011-07-29">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.4.1...v0.5.0">0.5.0</a> - 2011-07-29</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.5.0">v0.5.0</a>
</li>
</ul>

<h3 id="changed-10">Changed</h3>

<ul>
  <li>
<em>breaking</em> <code>oauth_token</code> renamed to <code>oauth_bearer</code>.</li>
  <li>
<em>breaking</em> <code>authorize_path</code> Client option renamed to <code>authorize_url</code>.</li>
  <li>
<em>breaking</em> <code>access_token_path</code> Client option renamed to <code>token_url</code>.</li>
  <li>
<em>breaking</em> <code>access_token_method</code> Client option renamed to <code>token_method</code>.</li>
  <li>
<em>breaking</em> <code>web_server</code> renamed to <code>auth_code</code>.</li>
</ul>

<h2 id="041---2011-04-20">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.4.0...v0.4.1">0.4.1</a> - 2011-04-20</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.4.1">v0.4.1</a>
</li>
</ul>

<h2 id="040---2011-04-20">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.3.0...v0.4.0">0.4.0</a> - 2011-04-20</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.4.0">v0.4.0</a>
</li>
</ul>

<h2 id="030---2011-04-08">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.2.0...v0.3.0">0.3.0</a> - 2011-04-08</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.3.0">v0.3.0</a>
</li>
</ul>

<h2 id="020---2011-04-01">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.1.1...v0.2.0">0.2.0</a> - 2011-04-01</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.2.0">v0.2.0</a>
</li>
</ul>

<h2 id="011---2011-01-12">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.1.0...v0.1.1">0.1.1</a> - 2011-01-12</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.1.1">v0.1.1</a>
</li>
</ul>

<h2 id="010---2010-10-13">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.13...v0.1.0">0.1.0</a> - 2010-10-13</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.1.0">v0.1.0</a>
</li>
</ul>

<h2 id="0013---2010-08-17">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.12...v0.0.13">0.0.13</a> - 2010-08-17</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.13">v0.0.13</a>
</li>
</ul>

<h2 id="0012---2010-08-17">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.11...v0.0.12">0.0.12</a> - 2010-08-17</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.12">v0.0.12</a>
</li>
</ul>

<h2 id="0011---2010-08-17">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.10...v0.0.11">0.0.11</a> - 2010-08-17</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.11">v0.0.11</a>
</li>
</ul>

<h2 id="0010---2010-06-19">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.9...v0.0.10">0.0.10</a> - 2010-06-19</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.10">v0.0.10</a>
</li>
</ul>

<h2 id="009---2010-06-18">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.8...v0.0.9">0.0.9</a> - 2010-06-18</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.9">v0.0.9</a>
</li>
</ul>

<h2 id="008---2010-04-27">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.7...v0.0.8">0.0.8</a> - 2010-04-27</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.8">v0.0.8</a>
</li>
</ul>

<h2 id="007---2010-04-27">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.6...v0.0.7">0.0.7</a> - 2010-04-27</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.7">v0.0.7</a>
</li>
</ul>

<h2 id="006---2010-04-25">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.5...v0.0.6">0.0.6</a> - 2010-04-25</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.6">v0.0.6</a>
</li>
</ul>

<h2 id="005---2010-04-23">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.4...v0.0.5">0.0.5</a> - 2010-04-23</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.5">v0.0.5</a>
</li>
</ul>

<h2 id="004---2010-04-22">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.3...v0.0.4">0.0.4</a> - 2010-04-22</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.4">v0.0.4</a>
</li>
</ul>

<h2 id="003---2010-04-22">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.2...v0.0.3">0.0.3</a> - 2010-04-22</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.3">v0.0.3</a>
</li>
</ul>

<h2 id="002---2010-04-22">
<a href="https://gitlab.com/ruby-oauth/oauth2/-/compare/v0.0.1...v0.0.2">0.0.2</a> - 2010-04-22</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.2">v0.0.2</a>
</li>
</ul>

<h2 id="001---2010-04-22">
<a href="https://github.com/ruby-oauth/oauth2/compare/311d9f4...v0.0.1">0.0.1</a> - 2010-04-22</h2>

<ul>
  <li>TAG: <a href="https://github.com/ruby-oauth/oauth2/releases/tag/v0.0.1">v0.0.1</a>
</li>
</ul>

</div></div>

      <div id="footer">
  Generated on Mon Sep 15 21:28:40 2025 by
  <a href="https://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
  0.9.37 (ruby-3.4.5).
</div>

    </div>
  </body>
</html>