-
Notifications
You must be signed in to change notification settings - Fork 376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why jwt depends on json < 2.0 ? #179
Comments
It is currently compatible with older versions of ruby like 1.9. With that the json version will be updated, too. |
@excpt Thanks for your quick response. |
I'll try that. Thanks for the hint. |
I tried that but it will always try to install the latest gem version. This will have to wait until the support ends for older versions of ruby. |
Two years later and this is still a dependency. I am putting my app in a Docker image with the latest version of Ruby (2.5). The base image for Ruby comes with json 2.1.0 already installed as a default gem, and this is causing errors to show up in my app now: Any plans to update this? I'd rather update all my gem dependencies to support that latest version of json if I can. |
@partydrone, you're right. The ticket was closed and in that it was simply forgotten to update the gemspecs file. Ruby 2.1 and Ruby 2.2 reached the EOL and 2.3 will reach EOL in march 2019. I think it's now safe to update the version dependency in jwt. |
This can be closed. This has been done here: |
The latest versions 1.5.5 and 1.5.6 introduced a new dependency "json < 2.0". It causes conflict with our other gems, which use json 2.0.2.
What is the reason to depend on json version below 2.0 ?
The text was updated successfully, but these errors were encountered: