From 3f3e55add7770559bad676d0682fdd440020e5f5 Mon Sep 17 00:00:00 2001 From: Jonathan Norris Date: Wed, 5 Aug 2026 09:41:18 -0400 Subject: [PATCH] chore: resolve open dependabot security alerts - sqlite3 ~> 1.4 -> >= 2.9.5 (low, alert #8, CVE-2026-54619) --- examples/local/Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/local/Gemfile b/examples/local/Gemfile index 999fe2f..d65949a 100644 --- a/examples/local/Gemfile +++ b/examples/local/Gemfile @@ -10,7 +10,7 @@ gem "rails", "~> 7.0.4", ">= 7.0.4.2" gem "sprockets-rails" # Use sqlite3 as the database for Active Record -gem "sqlite3", "~> 1.4" +gem "sqlite3", ">= 2.9.5" # Use the Puma web server [https://github.com/puma/puma] gem "puma", "~> 5.0"