-
Notifications
You must be signed in to change notification settings - Fork 167
Improve dev env experience after Ruby version updates #11670
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,5 @@ brew 'postgresql@14' | |
| brew 'redis' | ||
| brew 'node@22' | ||
| brew 'yarn' | ||
| brew 'openssl@1.1' | ||
| brew 'jq' | ||
| cask 'chromedriver' | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,6 +96,8 @@ gem 'zxcvbn', '0.1.12' | |
| group :development do | ||
| gem 'better_errors', '>= 2.5.1' | ||
| gem 'derailed_benchmarks' | ||
| # Putting foreman here saves developers from having bin/setup when the Ruby version changes | ||
| gem 'foreman', require: false | ||
|
||
| gem 'irb' | ||
| gem 'letter_opener', '~> 1.8' | ||
| gem 'rack-mini-profiler', '>= 1.1.3', require: false | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some of our deployed environments still use openssl 1.1, so I think it'd be preferable to keep it as-is for consistency.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to resolve the fact that this prevents engs from deploying idp on their local environments?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the dependency for the environments that still use openssl 1.1? Login.gov is very good about keeping important things like Ruby versions up to date, which is why this change felt safe to me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is impossible to do a new install of IDP locally because it is no longer available:
Developers have been manually removing this line. It is not reasonable to keep this line, because it has not worked since October and will never work again.
OpenSSL 1 is no longer maintained except by paid support contract. We should probably stop using it in prod.