Lucas Luitjes
Lucas Luitjes
A few years back I wrote https://github.com/lucasluitjes/recent_ruby which does exactly that. I don't know if it meets the project standards for bundler-audit but I thought I'd mention it just in...
@etagwerker No, `recent_ruby` only checks if the build file for that ruby version in the ruby-build repository contains `warn_eol` (for example https://github.com/rbenv/ruby-build/blob/master/share/ruby-build/2.7.7), and that you're on the latest patch release....
Can confirm. Using the following monkeypatch for now, based on your comment: ``` module OmniAuth module Strategies class CognitoIdP < OmniAuth::Strategies::OAuth2 def id_token access_token.response.parsed['id_token'] end end end end ```