omniauth-identity 3.2.0 → 3.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8f528159624b770ade56aa4237743e051de3a4f3563644987aaa94f93e20afcf
4
- data.tar.gz: f598bd8e275ebdf6ff6dc8b715aa5902fda8fa96f10c5b9105215a148451a34a
3
+ metadata.gz: 8d6c5c19c87bfae564702490d38fc897d15dd2eb13a973c2988c7e757e38e47f
4
+ data.tar.gz: f64a55f83157ef8a8e87bcdc4e7e20cb9d37241a0fbaeefe88f90af561d0227b
5
5
  SHA512:
6
- metadata.gz: 84348f43f60496db4c3f670c078ed29408a91d8117bd80ca67a5a7b14470ab5795bdabaa029c183dc04bfe1eedd541d5348d0363fbc0f2942db02db9514eeacc
7
- data.tar.gz: 199805e82eb1ae2d50e819c47a54834ada88374fea175a7c99e319a099e862c67efec9946748ce860e5b205cf403133e8fcb0cc14be135082a0a96bf36ea6514
6
+ metadata.gz: c4afd39437ef0cc4c37e731651370608ab6c9ce3f353e7c3f99cff5639ef21a8a2c4c41976946b39ab30feb0d2bb989acdb47e74b84d43e0ed7dc788a79e7ab4
7
+ data.tar.gz: a67a905c8e44c003bf013264dec3200eb1bc01bd36859bac831e4ab0883f528c43c10d30643d35b49b70447eaf4585c3be18adce2d7ca4a9c793df853164761a
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -28,10 +28,38 @@ Please file a bug if you notice a violation of semantic versioning.
28
28
 
29
29
  ### Fixed
30
30
 
31
+ ### Security
32
+
33
+ ## [3.2.1] - 2026-07-14
34
+
35
+ - TAG: [v3.2.1][3.2.1t]
36
+ - COVERAGE: 22.91% -- 93/406 lines in 12 files
37
+ - BRANCH COVERAGE: 20.75% -- 22/106 branches in 12 files
38
+ - 85.26% documented
39
+
40
+ ### Added
41
+
42
+ - Added support for JRuby 10.1 and TruffleRuby 34.0.
43
+
44
+ ### Changed
45
+
46
+ - Retemplated generated project metadata, support documentation, CI workflows,
47
+ binstubs, and development dependency floors with `kettle-jem` v7.0.0.
48
+ - Raised the `anonymous_loader` runtime dependency floor to `>= 0.1.3`.
49
+ - Raised the runtime dependency floor for `auth-sanitizer` to `>= 0.2.3`, so
50
+ OmniAuth Identity consumers get hash and nested-attribute inspect redaction
51
+ fixes plus downstream RBS duplicate-declaration fixes, and switched isolated
52
+ sanitizer loading to the released `anonymous_loader` gem.
53
+ - Raised generated `version_gem` and `appraisal2` dependency floors to
54
+ `version_gem` >= 1.1.14 and `appraisal2` >= 3.1.4.
55
+ - Refreshed generated Rakefile metadata from the current kettle-jem template.
56
+
57
+ ### Fixed
58
+
31
59
  - Restored ORM-specific spec rake tasks and made optional ORM spec files avoid
32
60
  loading unavailable adapter gems when the matching appraisal does not include them.
33
61
 
34
- ### Security
62
+ - Package configured license files in gem release file lists.
35
63
 
36
64
  ## [3.2.0] - 2026-06-05
37
65
 
@@ -368,7 +396,9 @@ Please file a bug if you notice a violation of semantic versioning.
368
396
  - Gemfile.lock file
369
397
  - MongoMapper support; unable to satisfy dependencies of both MongoMapper and Mongoid now that MongoMapper is no longer actively maintained.
370
398
 
371
- [Unreleased]: https://github.com/omniauth/omniauth-identity/compare/v3.2.0...HEAD
399
+ [Unreleased]: https://github.com/omniauth/omniauth-identity/compare/v3.2.1...HEAD
400
+ [3.2.1]: https://github.com/omniauth/omniauth-identity/compare/v3.2.0...v3.2.1
401
+ [3.2.1t]: https://github.com/omniauth/omniauth-identity/releases/tag/v3.2.1
372
402
  [3.2.0]: https://github.com/omniauth/omniauth-identity/compare/v3.1.5...v3.2.0
373
403
  [3.2.0t]: https://github.com/omniauth/omniauth-identity/releases/tag/v3.2.0
374
404
  [3.1.5]: https://github.com/omniauth/omniauth-identity/compare/v3.1.4...v3.1.5
data/CONTRIBUTING.md CHANGED
@@ -109,14 +109,14 @@ Git diff driver setup
109
109
  - Git hosting forges generally ignore external diff drivers, so pull request views may still show raw textual diffs even when local `git diff` uses semantic drivers.
110
110
 
111
111
  ```console
112
- K_JEM_TEMPLATING=true bundle exec kettle-jem install
112
+ K_JEM_TEMPLATING=true kettle-jem install
113
113
  ```
114
114
 
115
115
  Troubleshooting Git diffs
116
116
  - Use `git diff --no-ext-diff` to compare against Git's built-in diff output.
117
117
  - Use `git diff --no-textconv` when a textconv projection obscures the raw file bytes you need to inspect.
118
118
  - If Git reports a missing `smorg-*` executable, rerun `bundle install` and the setup command above, then check `git config --local --get-regexp '^diff\.smorg-'`.
119
- - To remove managed local entries, run `K_JEM_TEMPLATING=true bundle exec kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
119
+ - To remove managed local entries, run `K_JEM_TEMPLATING=true kettle-jem install --undo`; remove global command registrations with `git config --global --unset-all diff.smorg-ruby.command`.
120
120
 
121
121
  For a quick starting point, this repository’s `mise.toml` defines the shared defaults, and `.env.local` can override them locally. Copy `.env.local.example` to `.env.local`, use `KEY=value` lines, and either activate `mise` in your shell or run commands through `mise exec -C /path/to/project -- ...`.
122
122
 
@@ -131,9 +131,12 @@ toolchain, and it may be higher than the gemspec runtime floor.
131
131
  They are created and updated with the commands:
132
132
 
133
133
  ```console
134
- bin/rake appraisal:update
134
+ bin/rake appraisal:generate
135
135
  ```
136
136
 
137
+ Use `bin/rake appraisal:update` when you intentionally need to resolve fresh
138
+ appraisal locks.
139
+
137
140
  If you need to reset all gemfiles/*.gemfile.lock files:
138
141
 
139
142
  ```console
data/FUNDING.md CHANGED
@@ -6,7 +6,7 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
6
6
 
7
7
  [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal]
8
8
 
9
- [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS efforts using Patreon][🖇patreon-img]][🖇patreon]
9
+ [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
10
10
 
11
11
  [⛳liberapay-img]: https://img.shields.io/liberapay/goal/pboling.svg?logo=liberapay&color=a51611&style=flat
12
12
  [⛳liberapay]: https://liberapay.com/pboling/donate
@@ -16,12 +16,8 @@ Many paths lead to being a sponsor or a backer of this project. Are you on such
16
16
  [🖇osc-sponsors-i]: https://opencollective.com/omniauth/sponsors/badge.svg?style=flat
17
17
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
18
18
  [🖇sponsor]: https://github.com/sponsors/pboling
19
- [🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
20
- [🖇polar]: https://polar.sh/pboling
21
19
  [🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
22
20
  [🖇kofi]: https://ko-fi.com/pboling
23
- [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
24
- [🖇patreon]: https://patreon.com/galtzo
25
21
  [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
26
22
  [🖇buyme]: https://www.buymeacoffee.com/pboling
27
23
  [🖇paypal-img]: https://img.shields.io/badge/donate-paypal-a51611.svg?style=flat&logo=paypal
data/MIT.md ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ See [LICENSE.md](LICENSE.md) for the copyright notice.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  <a href="https://github.com/omniauth"><img alt="omniauth Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/omniauth/avatar-128px.svg" width="14%" align="right"/></a>
2
2
 
3
- # 🫵 Omniauth::Identity
3
+ # 🫵 OmniAuth::Identity
4
4
 
5
5
  [![Version][👽versioni]][👽version] [![GitHub tag (latest SemVer)][⛳️tag-img]][⛳️tag] [![License: MIT][📄license-img]][📄license] [![Downloads Rank][👽dl-ranki]][👽dl-rank] [![CodeCov Test Coverage][🏀codecovi]][🏀codecov] [![Coveralls Test Coverage][🏀coveralls-img]][🏀coveralls] [![QLTY Test Coverage][🏀qlty-covi]][🏀qlty-cov] [![QLTY Maintainability][🏀qlty-mnti]][🏀qlty-mnt] [![CI Heads][🚎3-hd-wfi]][🚎3-hd-wf] [![CI Runtime Dependencies @ HEAD][🚎12-crh-wfi]][🚎12-crh-wf] [![CI Current][🚎11-c-wfi]][🚎11-c-wf] [![CI Truffle Ruby][🚎9-t-wfi]][🚎9-t-wf] [![CI JRuby][🚎10-j-wfi]][🚎10-j-wf] [![Deps Locked][🚎13-🔒️-wfi]][🚎13-🔒️-wf] [![Deps Unlocked][🚎14-🔓️-wfi]][🚎14-🔓️-wf] [![CI Test Coverage][🚎2-cov-wfi]][🚎2-cov-wf] [![CI Style][🚎5-st-wfi]][🚎5-st-wf] [![Apache SkyWalking Eyes License Compatibility Check][🚎15-🪪-wfi]][🚎15-🪪-wf]
6
6
 
@@ -10,9 +10,9 @@
10
10
 
11
11
  `if ci_badges.map(&:color).all? { it == "green"}` 👇️ send money so I can do more of this. FLOSS maintenance is now my full-time job.
12
12
 
13
- [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
13
+ [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate at ko-fi.com][🖇kofi-img]][🖇kofi]
14
14
 
15
- <details>
15
+ <details markdown="1">
16
16
  <summary>👣 How will this project approach the September 2025 hostile takeover of RubyGems? 🚑️</summary>
17
17
 
18
18
  I've summarized my thoughts in [this blog post](https://dev.to/galtzo/hostile-takeover-of-rubygems-my-thoughts-5hlo).
@@ -31,9 +31,9 @@ basic construct for user management and then gets out of the way.
31
31
 
32
32
  | Tokens to Remember | [![Gem name][⛳️name-img]][⛳️gem-name] [![Gem namespace][⛳️namespace-img]][⛳️gem-namespace] |
33
33
  |-------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
34
- | Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
35
- | Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf]|
36
- | Works with MRI Ruby 4 | [![Ruby 4.0 Compat][💎ruby-4.0i]][🚎11-c-wf] [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
34
+ | Works with JRuby | [![JRuby 9.2 Compat][💎jruby-9.2i]][🚎jruby-9.2-wf] [![JRuby 9.3 Compat][💎jruby-9.3i]][🚎jruby-9.3-wf] <br/> [![JRuby 9.4 Compat][💎jruby-9.4i]][🚎jruby-9.4-wf] [![JRuby 10.0 Compat][💎jruby-10.0i]][🚎jruby-10.0-wf] [![JRuby current Compat][💎jruby-c-i]][🚎10-j-wf] [![JRuby HEAD Compat][💎jruby-headi]][🚎3-hd-wf]|
35
+ | Works with Truffle Ruby | [![Truffle Ruby 22.3 Compat][💎truby-22.3i]][🚎truby-22.3-wf] [![Truffle Ruby 23.0 Compat][💎truby-23.0i]][🚎truby-23.0-wf] [![Truffle Ruby 23.1 Compat][💎truby-23.1i]][🚎truby-23.1-wf] <br/> [![Truffle Ruby 24.2 Compat][💎truby-24.2i]][🚎truby-24.2-wf] [![Truffle Ruby 25.0 Compat][💎truby-25.0i]][🚎truby-25.0-wf] [![Truffle Ruby 33.0 Compat][💎truby-33.0i]][🚎truby-33.0-wf] [![Truffle Ruby current Compat][💎truby-c-i]][🚎9-t-wf] [![Truffle Ruby HEAD Compat][💎truby-headi]][🚎3-hd-wf]|
36
+ | Works with MRI Ruby 4 | [![Ruby current Compat][💎ruby-c-i]][🚎11-c-wf] [![Ruby HEAD Compat][💎ruby-headi]][🚎3-hd-wf]|
37
37
  | Works with MRI Ruby 3 | [![Ruby 3.0 Compat][💎ruby-3.0i]][🚎ruby-3.0-wf] [![Ruby 3.1 Compat][💎ruby-3.1i]][🚎ruby-3.1-wf] [![Ruby 3.2 Compat][💎ruby-3.2i]][🚎ruby-3.2-wf] [![Ruby 3.3 Compat][💎ruby-3.3i]][🚎ruby-3.3-wf] [![Ruby 3.4 Compat][💎ruby-3.4i]][🚎ruby-3.4-wf]|
38
38
  | Works with MRI Ruby 2 | [![Ruby 2.4 Compat][💎ruby-2.4i]][🚎ruby-2.4-wf] [![Ruby 2.5 Compat][💎ruby-2.5i]][🚎ruby-2.5-wf] [![Ruby 2.6 Compat][💎ruby-2.6i]][🚎ruby-2.6-wf] [![Ruby 2.7 Compat][💎ruby-2.7i]][🚎ruby-2.7-wf]|
39
39
  | Support & Community | [![Join Me on Daily.dev's RubyFriends][✉️ruby-friends-img]][✉️ruby-friends] [![Live Chat on Discord][✉️discord-invite-img-ftb]][✉️discord-invite] [![Get help from me on Upwork][👨🏼‍🏫expsup-upwork-img]][👨🏼‍🏫expsup-upwork] [![Get help from me on Codementor][👨🏼‍🏫expsup-codementor-img]][👨🏼‍🏫expsup-codementor] |
@@ -52,9 +52,25 @@ This test floor is configured by `ruby.test_minimum` in `.kettle-jem.yml` and
52
52
  may be higher than the gem's runtime compatibility floor when legacy Rubies are
53
53
  not practical for the current toolchain.
54
54
 
55
- | 🚚 _Amazing_ test matrix was brought to you by | 🔎 appraisal2 🔎 and the color 💚 green 💚 |
56
- |------------------------------------------------|--------------------------------------------------------|
57
- | 👟 Check it out! | [github.com/appraisal-rb/appraisal2][💎appraisal2] ✨ |
55
+ <a href="https://github.com/kettle-dev"><img alt="kettle-dev Logo by Aboling0, CC BY-SA 4.0" src="https://logos.galtzo.com/assets/images/kettle-dev/avatar-128px.svg" width="14%" align="right"/></a>
56
+
57
+ The _amazing_ test matrix is powered by the kettle-dev stack.
58
+
59
+ <details markdown="1">
60
+ <summary>How kettle-dev manages complexity in tests</summary>
61
+
62
+ | Gem | Source | Role | Daily download rank |
63
+ |-----|--------|------|---------------------|
64
+ | [appraisal2](https://bestgems.org/gems/appraisal2) | [GitHub](https://github.com/appraisal-rb/appraisal2) | multi-dependency Appraisal matrix generation | [![Daily download rank for appraisal2](https://img.shields.io/gem/rd/appraisal2.svg?style=flat-square)](https://bestgems.org/gems/appraisal2) |
65
+ | [appraisal2-rubocop](https://bestgems.org/gems/appraisal2-rubocop) | [GitHub](https://github.com/appraisal-rb/appraisal2-rubocop) | RuboCop Appraisal generator integration | [![Daily download rank for appraisal2-rubocop](https://img.shields.io/gem/rd/appraisal2-rubocop.svg?style=flat-square)](https://bestgems.org/gems/appraisal2-rubocop) |
66
+ | [kettle-dev](https://bestgems.org/gems/kettle-dev) | [GitHub](https://github.com/kettle-dev/kettle-dev) | development, release, and CI workflow tooling | [![Daily download rank for kettle-dev](https://img.shields.io/gem/rd/kettle-dev.svg?style=flat-square)](https://bestgems.org/gems/kettle-dev) |
67
+ | [kettle-jem](https://bestgems.org/gems/kettle-jem) | [GitHub](https://github.com/kettle-dev/kettle-jem) | Appraisals & CI workflow templates | [![Daily download rank for kettle-jem](https://img.shields.io/gem/rd/kettle-jem.svg?style=flat-square)](https://bestgems.org/gems/kettle-jem) |
68
+ | [kettle-soup-cover](https://bestgems.org/gems/kettle-soup-cover) | [GitHub](https://github.com/kettle-dev/kettle-soup-cover) | SimpleCov coverage policy and reporting | [![Daily download rank for kettle-soup-cover](https://img.shields.io/gem/rd/kettle-soup-cover.svg?style=flat-square)](https://bestgems.org/gems/kettle-soup-cover) |
69
+ | [kettle-test](https://bestgems.org/gems/kettle-test) | [GitHub](https://github.com/kettle-dev/kettle-test) | standard test runner and coverage harness | [![Daily download rank for kettle-test](https://img.shields.io/gem/rd/kettle-test.svg?style=flat-square)](https://bestgems.org/gems/kettle-test) |
70
+ | [rubocop-lts](https://bestgems.org/gems/rubocop-lts) | [GitHub](https://github.com/rubocop-lts/rubocop-lts) | Ruby-version-aware linting | [![Daily download rank for rubocop-lts](https://img.shields.io/gem/rd/rubocop-lts.svg?style=flat-square)](https://bestgems.org/gems/rubocop-lts) |
71
+ | [turbo_tests2](https://bestgems.org/gems/turbo_tests2) | [GitHub](https://github.com/galtzo-floss/turbo_tests2) | parallel test execution | [![Daily download rank for turbo_tests2](https://img.shields.io/gem/rd/turbo_tests2.svg?style=flat-square)](https://bestgems.org/gems/turbo_tests2) |
72
+
73
+ </details>
58
74
 
59
75
  ### Federated DVCS
60
76
 
@@ -427,7 +443,7 @@ NOTE: [kettle-readme-backers][kettle-readme-backers] updates this list every day
427
443
  No sponsors yet. Be the first!
428
444
  <!-- OPENCOLLECTIVE-ORGANIZATIONS:END -->
429
445
 
430
- [kettle-readme-backers]: https://github.com/omniauth/omniauth-identity/blob/main/exe/kettle-readme-backers
446
+ [kettle-readme-backers]: https://github.com/omniauth/omniauth-identity/blob/main/bin/kettle-readme-backers
431
447
 
432
448
  ### Another way to support open-source
433
449
 
@@ -439,7 +455,7 @@ I’m developing a new library, [floss_funding][🖇floss-funding-gem], designed
439
455
 
440
456
  **[Floss-Funding.dev][🖇floss-funding.dev]: 👉️ No network calls. 👉️ No tracking. 👉️ No oversight. 👉️ Minimal crypto hashing. 💡 Easily disabled nags**
441
457
 
442
- [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate on Polar][🖇polar-img]][🖇polar] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi] [![Donate to my FLOSS efforts using Patreon][🖇patreon-img]][🖇patreon]
458
+ [![OpenCollective Backers][🖇osc-backers-i]][🖇osc-backers] [![OpenCollective Sponsors][🖇osc-sponsors-i]][🖇osc-sponsors] [![Sponsor Me on Github][🖇sponsor-img]][🖇sponsor] [![Liberapay Goal Progress][⛳liberapay-img]][⛳liberapay] [![Donate on PayPal][🖇paypal-img]][🖇paypal] [![Buy me a coffee][🖇buyme-small-img]][🖇buyme] [![Donate to my FLOSS efforts at ko-fi.com][🖇kofi-img]][🖇kofi]
443
459
 
444
460
  ## 🔐 Security
445
461
 
@@ -485,7 +501,7 @@ Made with [contributors-img][🖐contrib-rocks].
485
501
 
486
502
  Also see GitLab Contributors: [https://gitlab.com/omniauth/omniauth-identity/-/graphs/main][🚎contributors-gl]
487
503
 
488
- <details>
504
+ <details markdown="1">
489
505
  <summary>⭐️ Star History</summary>
490
506
 
491
507
  <a href="https://star-history.com/omniauth/omniauth-identity&Date">
@@ -580,12 +596,8 @@ Thanks for RTFM. ☺️
580
596
  [🖇sponsor-img]: https://img.shields.io/badge/Sponsor_Me!-pboling.svg?style=social&logo=github
581
597
  [🖇sponsor-bottom-img]: https://img.shields.io/badge/Sponsor_Me!-pboling-blue?style=for-the-badge&logo=github
582
598
  [🖇sponsor]: https://github.com/sponsors/pboling
583
- [🖇polar-img]: https://img.shields.io/badge/polar-donate-a51611.svg?style=flat
584
- [🖇polar]: https://polar.sh/pboling
585
599
  [🖇kofi-img]: https://img.shields.io/badge/ko--fi-%E2%9C%93-a51611.svg?style=flat
586
600
  [🖇kofi]: https://ko-fi.com/pboling
587
- [🖇patreon-img]: https://img.shields.io/badge/patreon-donate-a51611.svg?style=flat
588
- [🖇patreon]: https://patreon.com/galtzo
589
601
  [🖇buyme-small-img]: https://img.shields.io/badge/buy_me_a_coffee-%E2%9C%93-a51611.svg?style=flat
590
602
  [🖇buyme-img]: https://img.buymeacoffee.com/button-api/?text=Buy%20me%20a%20latte&emoji=&slug=pboling&button_colour=FFDD00&font_colour=000000&font_family=Cookie&outline_colour=000000&coffee_colour=ffffff
591
603
  [🖇buyme]: https://www.buymeacoffee.com/pboling
@@ -601,7 +613,7 @@ Thanks for RTFM. ☺️
601
613
 
602
614
  [✇bundle-group-pattern]: https://gist.github.com/pboling/4564780
603
615
  [⛳️gem-namespace]: https://github.com/omniauth/omniauth-identity
604
- [⛳️namespace-img]: https://img.shields.io/badge/namespace-Omniauth::Identity-3C2D2D.svg?style=square&logo=ruby&logoColor=white
616
+ [⛳️namespace-img]: https://img.shields.io/badge/namespace-OmniAuth::Identity-3C2D2D.svg?style=square&logo=ruby&logoColor=white
605
617
  [⛳️gem-name]: https://bestgems.org/gems/omniauth-identity
606
618
  [⛳️name-img]: https://img.shields.io/badge/name-omniauth--identity-3C2D2D.svg?style=square&logo=rubygems&logoColor=red
607
619
  [⛳️tag-img]: https://img.shields.io/github/tag/omniauth/omniauth-identity.svg
@@ -675,11 +687,13 @@ Thanks for RTFM. ☺️
675
687
  [🚎jruby-9.2-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/jruby-9.2.yml
676
688
  [🚎jruby-9.3-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/jruby-9.3.yml
677
689
  [🚎jruby-9.4-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/jruby-9.4.yml
690
+ [🚎jruby-10.0-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/jruby-10.0.yml
678
691
  [🚎truby-22.3-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/truffleruby-22.3.yml
679
692
  [🚎truby-23.0-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/truffleruby-23.0.yml
680
693
  [🚎truby-23.1-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/truffleruby-23.1.yml
681
694
  [🚎truby-24.2-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/truffleruby-24.2.yml
682
695
  [🚎truby-25.0-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/truffleruby-25.0.yml
696
+ [🚎truby-33.0-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/truffleruby-33.0.yml
683
697
  [🚎2-cov-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/coverage.yml
684
698
  [🚎2-cov-wfi]: https://github.com/omniauth/omniauth-identity/actions/workflows/coverage.yml/badge.svg
685
699
  [🚎3-hd-wf]: https://github.com/omniauth/omniauth-identity/actions/workflows/heads.yml
@@ -709,7 +723,6 @@ Thanks for RTFM. ☺️
709
723
  [💎ruby-3.2i]: https://img.shields.io/badge/Ruby-3.2-CC342D?style=for-the-badge&logo=ruby&logoColor=white
710
724
  [💎ruby-3.3i]: https://img.shields.io/badge/Ruby-3.3-CC342D?style=for-the-badge&logo=ruby&logoColor=white
711
725
  [💎ruby-3.4i]: https://img.shields.io/badge/Ruby-3.4-CC342D?style=for-the-badge&logo=ruby&logoColor=white
712
- [💎ruby-4.0i]: https://img.shields.io/badge/Ruby-4.0-CC342D?style=for-the-badge&logo=ruby&logoColor=white
713
726
  [💎ruby-c-i]: https://img.shields.io/badge/Ruby-current-CC342D?style=for-the-badge&logo=ruby&logoColor=green
714
727
  [💎ruby-headi]: https://img.shields.io/badge/Ruby-HEAD-CC342D?style=for-the-badge&logo=ruby&logoColor=blue
715
728
  [💎truby-22.3i]: https://img.shields.io/badge/Truffle_Ruby-22.3-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
@@ -717,10 +730,13 @@ Thanks for RTFM. ☺️
717
730
  [💎truby-23.1i]: https://img.shields.io/badge/Truffle_Ruby-23.1-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
718
731
  [💎truby-24.2i]: https://img.shields.io/badge/Truffle_Ruby-24.2-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
719
732
  [💎truby-25.0i]: https://img.shields.io/badge/Truffle_Ruby-25.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
733
+ [💎truby-33.0i]: https://img.shields.io/badge/Truffle_Ruby-33.0-34BCB1?style=for-the-badge&logo=ruby&logoColor=pink
720
734
  [💎truby-c-i]: https://img.shields.io/badge/Truffle_Ruby-current-34BCB1?style=for-the-badge&logo=ruby&logoColor=green
735
+ [💎truby-headi]: https://img.shields.io/badge/Truffle_Ruby-HEAD-34BCB1?style=for-the-badge&logo=ruby&logoColor=blue
721
736
  [💎jruby-9.2i]: https://img.shields.io/badge/JRuby-9.2-FBE742?style=for-the-badge&logo=ruby&logoColor=red
722
737
  [💎jruby-9.3i]: https://img.shields.io/badge/JRuby-9.3-FBE742?style=for-the-badge&logo=ruby&logoColor=red
723
738
  [💎jruby-9.4i]: https://img.shields.io/badge/JRuby-9.4-FBE742?style=for-the-badge&logo=ruby&logoColor=red
739
+ [💎jruby-10.0i]: https://img.shields.io/badge/JRuby-10.0-FBE742?style=for-the-badge&logo=ruby&logoColor=red
724
740
  [💎jruby-c-i]: https://img.shields.io/badge/JRuby-current-FBE742?style=for-the-badge&logo=ruby&logoColor=green
725
741
  [💎jruby-headi]: https://img.shields.io/badge/JRuby-HEAD-FBE742?style=for-the-badge&logo=ruby&logoColor=blue
726
742
  [🤝gh-issues]: https://github.com/omniauth/omniauth-identity/issues
@@ -749,7 +765,7 @@ Thanks for RTFM. ☺️
749
765
  [📌gitmoji]: https://gitmoji.dev
750
766
  [📌gitmoji-img]: https://img.shields.io/badge/gitmoji_commits-%20%F0%9F%98%9C%20%F0%9F%98%8D-34495e.svg?style=flat-square
751
767
  [🧮kloc]: https://www.youtube.com/watch?v=dQw4w9WgXcQ
752
- [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.397-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
768
+ [🧮kloc-img]: https://img.shields.io/badge/KLOC-0.406-FFDD67.svg?style=for-the-badge&logo=YouTube&logoColor=blue
753
769
  [🔐security]: https://github.com/omniauth/omniauth-identity/blob/main/SECURITY.md
754
770
  [🔐security-img]: https://img.shields.io/badge/security-policy-259D6C.svg?style=flat
755
771
  [📄copyright-notice-explainer]: https://opensource.stackexchange.com/questions/5778/why-do-licenses-such-as-the-mit-license-specify-a-single-year
@@ -757,7 +773,7 @@ Thanks for RTFM. ☺️
757
773
  [📄license-ref]: MIT.md
758
774
  [📄license-img]: https://img.shields.io/badge/License-MIT-259D6C.svg
759
775
  [📄license-compat]: https://www.apache.org/legal/resolved.html#category-a
760
- [📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-✓-259D6C.svg?style=flat&logo=Apache
776
+ [📄license-compat-img]: https://img.shields.io/badge/Apache_Compatible:_Category_A-%E2%9C%93-259D6C.svg?style=flat&logo=Apache
761
777
 
762
778
  [📄ilo-declaration]: https://www.ilo.org/declaration/lang--en/index.htm
763
779
  [📄ilo-declaration-img]: https://img.shields.io/badge/ILO_Fundamental_Principles-✓-259D6C.svg?style=flat
@@ -777,7 +793,7 @@ Thanks for RTFM. ☺️
777
793
  | Package | omniauth-identity |
778
794
  | Description | 🫵 Traditional username/password based authentication system for OmniAuth |
779
795
  | Homepage | https://github.com/omniauth/omniauth-identity |
780
- | Source | https://github.com/omniauth/omniauth-identity/tree/v3.1.5 |
796
+ | Source | https://github.com/omniauth/omniauth-identity |
781
797
  | License | `MIT` |
782
- | Funding | https://github.com/sponsors/pboling, https://issuehunt.io/u/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/omniauth, https://patreon.com/galtzo, https://polar.sh/pboling, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/omniauth-identity, https://www.buymeacoffee.com/pboling |
798
+ | Funding | https://github.com/sponsors/pboling, https://ko-fi.com/pboling, https://liberapay.com/pboling/donate, https://opencollective.com/omniauth, https://thanks.dev/u/gh/pboling, https://tidelift.com/funding/github/rubygems/omniauth-identity, https://www.buymeacoffee.com/pboling |
783
799
  <!-- kettle-jem:metadata:end -->
data/SECURITY.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  | Version | Supported |
6
6
  |----------|-----------|
7
- | 3.1.latest | ✅ |
7
+ | 3.2.latest | ✅ |
8
8
 
9
9
  ## Security contact information
10
10
 
@@ -1,10 +1,23 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "auth_sanitizer/loader"
3
+ require "anonymous_loader"
4
4
 
5
5
  module OmniAuth
6
6
  module Identity
7
- AUTH_SANITIZER = AuthSanitizer::Loader.load_isolated unless const_defined?(:AUTH_SANITIZER, false)
7
+ unless const_defined?(:AUTH_SANITIZER, false)
8
+ auth_sanitizer_requirement = Gem::Requirement.new("~> 0.2", ">= 0.2.2")
9
+ auth_sanitizer_loader_namespace = AnonymousLoader.load_path(
10
+ gem_name: "auth-sanitizer",
11
+ require_path: "auth_sanitizer/loader.rb",
12
+ version_requirement: auth_sanitizer_requirement,
13
+ version_file: "auth/sanitizer/version.rb"
14
+ )
15
+
16
+ AUTH_SANITIZER = auth_sanitizer_loader_namespace
17
+ .const_get(:AuthSanitizer)
18
+ .const_get(:Loader)
19
+ .load_isolated
20
+ end
8
21
 
9
22
  # This module provides an include-able interface for implementing the
10
23
  # necessary API for OmniAuth Identity to properly locate identities
@@ -138,7 +138,7 @@ module OmniAuth
138
138
 
139
139
  @info = {
140
140
  "email" => @email,
141
- "name" => @name,
141
+ "name" => @name
142
142
  }
143
143
 
144
144
  @owner = owner_data
@@ -1,17 +1,10 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- module Omniauth
3
+ module OmniAuth
4
4
  module Identity
5
5
  module Version
6
- VERSION = "3.2.0"
6
+ VERSION = "3.2.1"
7
7
  end
8
8
  VERSION = Version::VERSION # Traditional Constant Location
9
9
  end
10
10
  end
11
-
12
- module OmniAuth
13
- module Identity
14
- Version = Omniauth::Identity::Version unless const_defined?(:Version, false)
15
- VERSION = Version::VERSION unless const_defined?(:VERSION, false)
16
- end
17
- end
@@ -72,7 +72,3 @@ require_relative "identity/version"
72
72
  OmniAuth::Identity::Version.class_eval do
73
73
  extend VersionGem::Basic
74
74
  end
75
-
76
- Omniauth::Identity::Version.class_eval do
77
- extend VersionGem::Basic
78
- end
@@ -229,7 +229,7 @@ module OmniAuth
229
229
  def build_omniauth_login_form
230
230
  OmniAuth::Form.build(
231
231
  title: options[:title],
232
- url: callback_path,
232
+ url: callback_path
233
233
  ) do |f|
234
234
  f.text_field("Login", "auth_key")
235
235
  f.password_field("Password", "password")
@@ -1,4 +1,4 @@
1
- module Omniauth
1
+ module OmniAuth
2
2
  module Identity
3
3
  module Version
4
4
  VERSION: String
data.tar.gz.sig CHANGED
@@ -1 +1,4 @@
1
- <ߑ�Q�&$%8��<m�X$��Y.�tRk&@)��1��e���L�_b�^�xƶk�:�XQU�S�̘�1ٓ/�@�|8{>�Ui|)���a=P Ե�NX7��|���6 �+8>bE-r�n2=L8�@�p!�V����f�N���**�+�^�IL>� �!���+�"Ϛ�KY/�{����,�x*_�G n�� VXu��)e�D:_r ��rI�=�V#WuW U��0���?��VgL)��� �=�k��老7k���~��0 �gg����� ������/�R�
1
+ }��)r ���W�+?$m�N��}dMZc�t}�Nd6;�؃$'R��эK����ww.��+N�;�,�����?Ѱ�P��#0#4HUK�<��%�
2
+ �i�]43'YS;<a Q�������VLO�v�!F�xj�ȐI�v����q�����(�R�^+�(�܅)�z�4�0�~��y��.G�~4�[`�LXuAg
3
+ j�͍��]�`�@b���,@~�&;�"E���O�$��/�i��]WWl:��T�T�<}!�/mR���h$Xx�����`���:wn�����4
4
+ 疦 z&/k�g��>�| 3�F�c3����}�:c��8��� �·��;�7��Gj[R�B�,��P�����``��ō�У
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-identity
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - "|7eter l-|. l3oling"
@@ -37,6 +37,26 @@ cert_chain:
37
37
  -----END CERTIFICATE-----
38
38
  date: 1980-01-02 00:00:00.000000000 Z
39
39
  dependencies:
40
+ - !ruby/object:Gem::Dependency
41
+ name: anonymous_loader
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '0.1'
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 0.1.3
50
+ type: :runtime
51
+ prerelease: false
52
+ version_requirements: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - "~>"
55
+ - !ruby/object:Gem::Version
56
+ version: '0.1'
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: 0.1.3
40
60
  - !ruby/object:Gem::Dependency
41
61
  name: auth-sanitizer
42
62
  requirement: !ruby/object:Gem::Requirement
@@ -46,7 +66,7 @@ dependencies:
46
66
  version: '0.2'
47
67
  - - ">="
48
68
  - !ruby/object:Gem::Version
49
- version: 0.2.0
69
+ version: 0.2.3
50
70
  type: :runtime
51
71
  prerelease: false
52
72
  version_requirements: !ruby/object:Gem::Requirement
@@ -56,7 +76,7 @@ dependencies:
56
76
  version: '0.2'
57
77
  - - ">="
58
78
  - !ruby/object:Gem::Version
59
- version: 0.2.0
79
+ version: 0.2.3
60
80
  - !ruby/object:Gem::Dependency
61
81
  name: bcrypt
62
82
  requirement: !ruby/object:Gem::Requirement
@@ -108,7 +128,7 @@ dependencies:
108
128
  version: '1.1'
109
129
  - - ">="
110
130
  - !ruby/object:Gem::Version
111
- version: 1.1.9
131
+ version: 1.1.14
112
132
  type: :runtime
113
133
  prerelease: false
114
134
  version_requirements: !ruby/object:Gem::Requirement
@@ -118,27 +138,27 @@ dependencies:
118
138
  version: '1.1'
119
139
  - - ">="
120
140
  - !ruby/object:Gem::Version
121
- version: 1.1.9
141
+ version: 1.1.14
122
142
  - !ruby/object:Gem::Dependency
123
143
  name: kettle-dev
124
144
  requirement: !ruby/object:Gem::Requirement
125
145
  requirements:
126
146
  - - "~>"
127
147
  - !ruby/object:Gem::Version
128
- version: '2.0'
148
+ version: '2.3'
129
149
  - - ">="
130
150
  - !ruby/object:Gem::Version
131
- version: 2.0.8
151
+ version: 2.3.4
132
152
  type: :development
133
153
  prerelease: false
134
154
  version_requirements: !ruby/object:Gem::Requirement
135
155
  requirements:
136
156
  - - "~>"
137
157
  - !ruby/object:Gem::Version
138
- version: '2.0'
158
+ version: '2.3'
139
159
  - - ">="
140
160
  - !ruby/object:Gem::Version
141
- version: 2.0.8
161
+ version: 2.3.4
142
162
  - !ruby/object:Gem::Dependency
143
163
  name: bundler-audit
144
164
  requirement: !ruby/object:Gem::Requirement
@@ -193,20 +213,20 @@ dependencies:
193
213
  requirements:
194
214
  - - "~>"
195
215
  - !ruby/object:Gem::Version
196
- version: '3.0'
216
+ version: '3.1'
197
217
  - - ">="
198
218
  - !ruby/object:Gem::Version
199
- version: 3.0.7
219
+ version: 3.1.4
200
220
  type: :development
201
221
  prerelease: false
202
222
  version_requirements: !ruby/object:Gem::Requirement
203
223
  requirements:
204
224
  - - "~>"
205
225
  - !ruby/object:Gem::Version
206
- version: '3.0'
226
+ version: '3.1'
207
227
  - - ">="
208
228
  - !ruby/object:Gem::Version
209
- version: 3.0.7
229
+ version: 3.1.4
210
230
  - !ruby/object:Gem::Dependency
211
231
  name: kettle-test
212
232
  requirement: !ruby/object:Gem::Requirement
@@ -216,7 +236,7 @@ dependencies:
216
236
  version: '2.0'
217
237
  - - ">="
218
238
  - !ruby/object:Gem::Version
219
- version: 2.0.3
239
+ version: 2.0.10
220
240
  type: :development
221
241
  prerelease: false
222
242
  version_requirements: !ruby/object:Gem::Requirement
@@ -226,7 +246,7 @@ dependencies:
226
246
  version: '2.0'
227
247
  - - ">="
228
248
  - !ruby/object:Gem::Version
229
- version: 2.0.3
249
+ version: 2.0.10
230
250
  - !ruby/object:Gem::Dependency
231
251
  name: turbo_tests2
232
252
  requirement: !ruby/object:Gem::Requirement
@@ -236,7 +256,7 @@ dependencies:
236
256
  version: '3.1'
237
257
  - - ">="
238
258
  - !ruby/object:Gem::Version
239
- version: 3.1.1
259
+ version: 3.1.8
240
260
  type: :development
241
261
  prerelease: false
242
262
  version_requirements: !ruby/object:Gem::Requirement
@@ -246,7 +266,7 @@ dependencies:
246
266
  version: '3.1'
247
267
  - - ">="
248
268
  - !ruby/object:Gem::Version
249
- version: 3.1.1
269
+ version: 3.1.8
250
270
  - !ruby/object:Gem::Dependency
251
271
  name: ruby-progressbar
252
272
  requirement: !ruby/object:Gem::Requirement
@@ -270,7 +290,7 @@ dependencies:
270
290
  version: '1.0'
271
291
  - - ">="
272
292
  - !ruby/object:Gem::Version
273
- version: 1.0.3
293
+ version: 1.0.6
274
294
  type: :development
275
295
  prerelease: false
276
296
  version_requirements: !ruby/object:Gem::Requirement
@@ -280,7 +300,7 @@ dependencies:
280
300
  version: '1.0'
281
301
  - - ">="
282
302
  - !ruby/object:Gem::Version
283
- version: 1.0.3
303
+ version: 1.0.6
284
304
  - !ruby/object:Gem::Dependency
285
305
  name: gitmoji-regex
286
306
  requirement: !ruby/object:Gem::Requirement
@@ -290,7 +310,7 @@ dependencies:
290
310
  version: '2.0'
291
311
  - - ">="
292
312
  - !ruby/object:Gem::Version
293
- version: 2.0.1
313
+ version: 2.0.4
294
314
  type: :development
295
315
  prerelease: false
296
316
  version_requirements: !ruby/object:Gem::Requirement
@@ -300,7 +320,7 @@ dependencies:
300
320
  version: '2.0'
301
321
  - - ">="
302
322
  - !ruby/object:Gem::Version
303
- version: 2.0.1
323
+ version: 2.0.4
304
324
  - !ruby/object:Gem::Dependency
305
325
  name: activerecord
306
326
  requirement: !ruby/object:Gem::Requirement
@@ -392,6 +412,7 @@ files:
392
412
  - CONTRIBUTING.md
393
413
  - FUNDING.md
394
414
  - LICENSE.md
415
+ - MIT.md
395
416
  - README.md
396
417
  - RUBOCOP.md
397
418
  - SECURITY.md
@@ -414,10 +435,10 @@ licenses:
414
435
  - MIT
415
436
  metadata:
416
437
  homepage_uri: https://omniauth-identity.galtzo.com
417
- source_code_uri: https://github.com/omniauth/omniauth-identity/tree/v3.2.0
418
- changelog_uri: https://github.com/omniauth/omniauth-identity/blob/v3.2.0/CHANGELOG.md
438
+ source_code_uri: https://github.com/omniauth/omniauth-identity/tree/v3.2.1
439
+ changelog_uri: https://github.com/omniauth/omniauth-identity/blob/v3.2.1/CHANGELOG.md
419
440
  bug_tracker_uri: https://github.com/omniauth/omniauth-identity/issues
420
- documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.2.0
441
+ documentation_uri: https://www.rubydoc.info/gems/omniauth-identity/3.2.1
421
442
  funding_uri: https://github.com/sponsors/pboling
422
443
  wiki_uri: https://github.com/omniauth/omniauth-identity/wiki
423
444
  news_uri: https://www.railsbling.com/tags/omniauth-identity
@@ -447,7 +468,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
447
468
  - !ruby/object:Gem::Version
448
469
  version: '0'
449
470
  requirements: []
450
- rubygems_version: 4.0.10
471
+ rubygems_version: 4.0.16
451
472
  specification_version: 4
452
473
  summary: "\U0001FAF5 Traditional username/password based authentication system for
453
474
  OmniAuth"
metadata.gz.sig CHANGED
Binary file