Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .bundler-audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
ignore:
# CVE-2024-6531 was withdrawn on October 10, 2024
# https://github.com/advisories/GHSA-vc8w-jr9v-vj7f
# "This advisory is withdrawn because it was not a security issue in Bootstrap"
- GHSA-vc8w-jr9v-vj7f
9 changes: 5 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ gem 'time'
gem 'uri'

# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem 'rails', '~> 8.0.2'
gem 'rails', '8.0.2.1'

# The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem 'erb', '~> 5.0' # Pin to 5.x to avoid Sprockets 3.x incompatibility with ERB 6.0
gem 'sprockets-rails'

# Use the Puma web server [https://github.com/puma/puma]
Expand Down Expand Up @@ -70,9 +71,9 @@ gem 'will_paginate', '~> 3.3.0'
gem 'dalli', '~> 3.0'

# Disabling assets; replaced with Gulp
gem 'autoprefixer-rails', '~> 8.6', '>= 8.6.5'
gem 'autoprefixer-rails', '>= 9.1.0'
# TODO: Upgrade to Bootstrap 5.x.x to fix vulnerabilities
gem 'bootstrap', '~> 4.1.1'
gem 'bootstrap', '~> 4.3.1'
gem 'coffee-rails', '~> 4.2'
gem 'font-awesome-rails', '~> 4.7.0'
gem 'jquery-rails', '~> 4.6.0'
Expand Down Expand Up @@ -208,7 +209,7 @@ end
# tracking errors
gem 'bugsnag'
gem 'draper', '~> 4.0.2'
gem 'nokogiri', '~> 1.15'
gem 'nokogiri', '~> 1.18', '>= 1.18.9'
gem 'sanitize', '~> 6.0.0'

gem 'acts_as_singleton', '~> 0.0.8'
Expand Down
Loading