Skip to content

Commit

Permalink
Fix pg: symbol lookup error, pg_ext.so: undefined symbol: rb_tainted_…
Browse files Browse the repository at this point in the history
…str_new2

See: https://status.heroku.com/incidents/1940

Engineers found that Ruby Private Space apps with pg gem 1.2.0 or above are affected. We would like to ask our customers to downgrade pg gem to 1.1.4 with editing the corresponding line in the Gemfile like

'pg', '~> 1.1.4'
  • Loading branch information
khiav223577 committed Aug 19, 2023
1 parent 82f9d57 commit c5ea1a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gemfiles/6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gem 'activerecord', '~> 6.0.0'

group :test do
gem 'mysql2', '0.5.1' if %w[mysql makara_mysql].include?(ENV['DB'])
gem 'pg', '~> 0.18' if %w[pg makara_pg].include?(ENV['DB'])
gem 'pg', '~> 1.1.4' if %w[pg makara_pg].include?(ENV['DB'])
gem 'makara', '~> 0.4.1' if %w[makara_mysql makara_pg].include?(ENV['DB'])
gem 'simplecov', '< 0.18'
gem 'pluck_all', '>= 2.0.4'
Expand Down

0 comments on commit c5ea1a4

Please sign in to comment.