Reputation: 121
How do Ruby developers keep updated on ruby and rubygem security alerts and updates?. I found out about this today:
and wonder how developers usually keep up with these types of alerts. Thanks in advance.
Upvotes: 10
Views: 1610
Reputation: 109
Also, if you find it hard to keep find the time to look for updates or perform the actual update: Use mini habits to e.g. update software every Monday, as I described in the week with a Rails security strategy
Upvotes: 0
Reputation: 43835
I actually wrote about this a few weeks back. These are the things that I would recommend:
bundle outdated
to get this information. Keeping your test suite at > 85% is going to make dependency upgrading much easier.bundle-audit
, AppCanary
, Hakiri
, or Gemnasium
to auto-detect gem security issues. These are easy tools to insert into a CI environment.Upvotes: 4
Reputation: 109
Also check out the bundler-audit gem to automate this process. It will check your gems for known vulnerabilities and also recommend some improvements regarding the update process in general.
Upvotes: 3
Reputation: 3490
The Ruby Security Announcements list is specifically for security issues in Ruby and Rubygems.
Upvotes: 4
Reputation: 3935
Also the Ruby 5 Podcast is a twice weekly resource and only takes 10 minutes of your time per week.
Upvotes: 0
Reputation: 10405
For Rails, just register for email updates in the Rails security google group :
https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-security
Upvotes: 12
Reputation: 51717
I think these two sources should get you that info as soon as it's available. You could also sign up for an account at rubygems.org and add Rails to your RSS feed.
Upvotes: 0