Skip to content

Commit 107f9e3

Browse files
authored
Merge branch 'omniauth:master' into add-extra-token-request-params
2 parents 0a17e31 + f9779f0 commit 107f9e3

File tree

9 files changed

+218
-81
lines changed

9 files changed

+218
-81
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2"]
17+
ruby: ["2.7", "3.0", "3.1", "3.2", "3.3"]
1818
name: Ruby ${{ matrix.ruby }}
1919

2020
steps:

CHANGELOG.md

Lines changed: 28 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,50 @@
1-
# v0.6.1 (22.02.2023)
1+
# Unreleased
2+
3+
# v0.8.0 (2024-07-04)
4+
5+
- Add `send_state` parameter to disable sending of state (https://github.com/omniauth/omniauth_openid_connect/pull/182)
6+
7+
# v0.7.1 (2023-04-26)
8+
9+
- Fix handling of JWKS response (https://github.com/omniauth/omniauth_openid_connect/pull/157)
10+
11+
# v0.7.0 (2023-04-25)
12+
13+
- Update openid_connect to 2.2 (https://github.com/omniauth/omniauth_openid_connect/pull/153)
14+
- Drop Ruby 2.5 and 2.6 CI support (https://github.com/omniauth/omniauth_openid_connect/pull/154)
15+
- Improvements to README (https://github.com/omniauth/omniauth_openid_connect/pull/152, https://github.com/omniauth/omniauth_openid_connect/pull/151)
16+
- Add option `logout_path` (https://github.com/omniauth/omniauth_openid_connect/pull/143)
17+
18+
# v0.6.1 (2023-02-22)
219

320
- Fix uninitialized constant error (https://github.com/omniauth/omniauth_openid_connect/pull/147)
421

5-
# v0.6.0 (21.01.2023)
22+
# v0.6.0 (2023-01-22)
623

724
- Support verification of HS256-signed JWTs (https://github.com/omniauth/omniauth_openid_connect/pull/134)
825

9-
# v0.5.0 (26.12.2022)
26+
# v0.5.0 (2022-12-26)
1027

1128
- Support the "nonce" parameter forwarding without a session [#130](https://github.com/omniauth/omniauth_openid_connect/pull/130)
1229
- Fetch key from JWKS URI if available [#133](https://github.com/omniauth/omniauth_openid_connect/pull/133)
1330
- Make the state parameter verification optional [#122](https://github.com/omniauth/omniauth_openid_connect/pull/122)
1431
- Add email_verified claim in user info [#131](https://github.com/omniauth/omniauth_openid_connect/pull/131)
1532
- Add PKCE verification support [#128](https://github.com/omniauth/omniauth_openid_connect/pull/128)
1633

17-
# v0.4.0 (06.02.2022)
34+
# v0.4.0 (2022-02-06)
1835

1936
- Support dynamic parameters to the authorize URI [#90](https://github.com/omniauth/omniauth_openid_connect/pull/90)
2037
- Upgrade Faker and replace Travis with Github Actions [#102](https://github.com/omniauth/omniauth_openid_connect/pull/102)
2138
- Make `omniauth_openid_connect` gem compatible with `omniauth v2.0` [#95](https://github.com/omniauth/omniauth_openid_connect/pull/95)
2239
- Fall back to the discovered jwks when no key specified [#97](https://github.com/omniauth/omniauth_openid_connect/pull/97)
2340
- Allow updating to omniauth v2 [#88](https://github.com/omniauth/omniauth_openid_connect/pull/88)
2441

25-
# v0.3.5 (07.06.2020)
42+
# v0.3.5 (2020-06-07)
2643

2744
- bugfix: Info from decoded id_token is not exposed into `request.env['omniauth.auth']` [#61](https://github.com/m0n9oose/omniauth_openid_connect/pull/61)
2845
- bugfix: NoMethodError (`undefined method 'count' for #<OpenIDConnect::ResponseObject::IdToken>`) [#60](https://github.com/m0n9oose/omniauth_openid_connect/pull/60)
2946

30-
# v0.3.4 (21.05.2020)
47+
# v0.3.4 (2020-05-21)
3148

3249
- Try to verify id_token when response_type is code [#44](https://github.com/m0n9oose/omniauth_openid_connect/pull/44)
3350
- Provide more information on error [#49](https://github.com/m0n9oose/omniauth_openid_connect/pull/49)
@@ -36,7 +53,7 @@
3653
- refactor: take uid_field from raw_attributes [#54](https://github.com/m0n9oose/omniauth_openid_connect/pull/54)
3754
- chore(ci): add 2.7, ruby-head and jruby-head [#55](https://github.com/m0n9oose/omniauth_openid_connect/pull/55)
3855

39-
# v0.3.3 (09.11.2019)
56+
# v0.3.3 (2019-11-09)
4057

4158
- Pass `acr_values` to authorize url [#43](https://github.com/m0n9oose/omniauth_openid_connect/pull/43)
4259
- Add raw info for id token [#42](https://github.com/m0n9oose/omniauth_openid_connect/pull/42)
@@ -46,17 +63,17 @@
4663
- Fix gemspec homepage [#33](https://github.com/m0n9oose/omniauth_openid_connect/pull/33)
4764
- Add support for `response_type` `id_token` [#32](https://github.com/m0n9oose/omniauth_openid_connect/pull/32)
4865

49-
# v0.3.2 (03.08.2019)
66+
# v0.3.2 (2019-08-03)
5067

5168
- Use response_mode in `authorize_uri` if the option is defined [#30](https://github.com/m0n9oose/omniauth_openid_connect/pull/30)
5269
- Move verification of `id_token` to before accessing tokens [#28](https://github.com/m0n9oose/omniauth_openid_connect/pull/28)
5370
- Update omniauth dependency [#26](https://github.com/m0n9oose/omniauth_openid_connect/pull/26)
5471

55-
# v0.3.1 (08.06.2019)
72+
# v0.3.1 (2019-06-08)
5673

5774
- Set default OmniAuth name to openid_connect [#23](https://github.com/m0n9oose/omniauth_openid_connect/pull/23)
5875

59-
# v0.3.0 (27.04.2019)
76+
# v0.3.0 (2019-04-07)
6077

6178
- RP-Initiated Logout phase [#5](https://github.com/m0n9oose/omniauth_openid_connect/pull/5)
6279
- Allows `ui_locales`, `claims_locales` and `login_hint` as request params [#6](https://github.com/m0n9oose/omniauth_openid_connect/pull/6)
@@ -65,7 +82,7 @@
6582
- Handle errors when fetching access_token at callback_phase [#17](https://github.com/m0n9oose/omniauth_openid_connect/pull/17)
6683
- Allow state method to receive env [#19](https://github.com/m0n9oose/omniauth_openid_connect/pull/19)
6784

68-
# v0.2.4 (06.01.2019)
85+
# v0.2.4 (2019-01-06)
6986

7087
- Prompt and login hint [#4](https://github.com/m0n9oose/omniauth_openid_connect/pull/4)
7188
- Bump openid_connect dependency [#9](https://github.com/m0n9oose/omniauth_openid_connect/pull/9)

0 commit comments

Comments
 (0)