From da4f2044c9319ea6df7cbdae5bebe0375fb837c2 Mon Sep 17 00:00:00 2001 From: Julio Lucero Date: Tue, 28 Oct 2025 20:26:53 -0300 Subject: [PATCH 1/3] Use overflow-x auto at table to avoid breaking width --- app/views/lockfiles/show.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/lockfiles/show.html.haml b/app/views/lockfiles/show.html.haml index 48681617..a64753cc 100644 --- a/app/views/lockfiles/show.html.haml +++ b/app/views/lockfiles/show.html.haml @@ -11,7 +11,7 @@ • = link_to "Show content", "#", data: { bs_toggle: "modal", bs_target: "#lockfile-content-modal" } -%section +%section{ class: "overflow-x-auto" } = render template: "gemmies/compat_table", locals: { gemmies: @lockfile.gemmies, inaccessible_gemmies: @lockfile.inaccessible_gemmies } = render "email_notifications/form", notifiable: @lockfile From d733d66c07947d9b45b4b80bad43c27c86af7d09 Mon Sep 17 00:00:00 2001 From: Julio Lucero Date: Wed, 29 Oct 2025 09:32:40 -0300 Subject: [PATCH 2/3] Fix CI workflow: add apt-get update before installing packages --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3c113830..a549ce4d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -50,8 +50,9 @@ jobs: - name: Checkout code uses: actions/checkout@v5 - - name: Install PostgreSQL client + - name: Install PostgreSQL client and Redis tools run: | + sudo apt-get update -qq sudo apt-get -yqq install libpq-dev redis-tools - name: Set up Ruby @@ -84,4 +85,4 @@ jobs: - name: Run tests env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - run: COVERAGE=true bundle exec rspec spec \ No newline at end of file + run: COVERAGE=true bundle exec rspec spec From b12ca6741be6941616789f1ce64b06e970d2344a Mon Sep 17 00:00:00 2001 From: Ernesto Tagwerker Date: Wed, 29 Oct 2025 09:38:56 -0400 Subject: [PATCH 3/3] bundle install update --- Gemfile.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 8515dad4..d26c2b46 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -499,9 +499,9 @@ DEPENDENCIES propshaft (~> 0.8) pry-rails (~> 0.3) puma (~> 6.4) - rails (~> 8.0) + rails (~> 8.0.0) rails-controller-testing - rails-i18n (~> 8.0) + rails-i18n (~> 8.0.0) rails_bootstrap_navbar (~> 3.0) redis (~> 5.0) redis-namespace (~> 1.11)