Downgrade binding_of_caller to fix Docker compose (#12148)

* Revert "Bump binding_of_caller from 0.8.0 to 1.0.0 (#12059)"

This reverts commit 2e4618a7fa.

* Add explanation

* Tell dependabot to ignore updates
This commit is contained in:
rhymes 2021-01-06 17:02:27 +01:00 committed by GitHub
parent ad52f7b0f3
commit ca202b0883
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 12 additions and 4 deletions

View file

@ -9,6 +9,11 @@ updates:
directory: "/"
schedule:
interval: "daily"
ignore:
# Ignoring binding_of_caller 1.0 temporarily until we find a solution for it breaking Docker
# see <https://github.com/forem/forem/issues/12068>
- dependency-name: "binding_of_caller"
versions: [">= 1.0"]
# Set update schedule for Yarn/NPM
- package-ecosystem: "npm"

View file

@ -118,7 +118,10 @@ gem "webpacker", "~> 5.2.1" # Use webpack to manage app-like JavaScript modules
group :development do
gem "better_errors", "~> 2.9" # Provides a better error page for Rails and other Rack apps
gem "binding_of_caller", "~> 1.0" # Retrieve the binding of a method's caller
# NOTE: [@rhymes] binding_of_caller 1.0 breaks Docker Compose, see <https://github.com/forem/forem/issues/12068>
gem "binding_of_caller", "~> 0.8" # Retrieve the binding of a method's caller
gem "brakeman", "~> 4.10", require: false # Brakeman detects security vulnerabilities in Ruby on Rails applications via static analysis
gem "bundler-audit", "~> 0.7" # bundler-audit provides patch-level verification for Bundled apps
gem "derailed_benchmarks", "~> 1.8", require: false # A series of things you can use to benchmark a Rails or Ruby app

View file

@ -124,7 +124,7 @@ GEM
parser (>= 2.4)
smart_properties
bindex (0.8.1)
binding_of_caller (1.0.0)
binding_of_caller (0.8.0)
debug_inspector (>= 0.0.1)
blazer (2.4.0)
activerecord (>= 5)
@ -206,7 +206,7 @@ GEM
database_cleaner (~> 1.8.0)
ddtrace (0.43.0)
msgpack
debug_inspector (1.0.0)
debug_inspector (0.0.3)
derailed_benchmarks (1.8.1)
benchmark-ips (~> 2)
get_process_mem (~> 0)
@ -845,7 +845,7 @@ DEPENDENCIES
ancestry (~> 3.2)
approvals (~> 0.0)
better_errors (~> 2.9)
binding_of_caller (~> 1.0)
binding_of_caller (~> 0.8)
blazer (~> 2.4.0)
bootsnap (>= 1.1.0)
brakeman (~> 4.10)

BIN
vendor/cache/binding_of_caller-0.8.0.gem vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
vendor/cache/debug_inspector-0.0.3.gem vendored Normal file

Binary file not shown.

Binary file not shown.