From 2aaa1b62fdf0e2dec4637f7e9d5d46ec46f7fa77 Mon Sep 17 00:00:00 2001 From: Natalie Tay Date: Thu, 2 Nov 2023 19:47:33 +0800 Subject: [PATCH 1/2] Update README.md test --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 8f6bafc6f261e..fa5775e969e7b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +x + From aedec705e3e42e130e7834d8d85b3ebeeecaef51 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Sun, 15 Dec 2024 06:43:54 +0000 Subject: [PATCH 2/2] fix: Gemfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-RUBY-ACTIONPACK-8496389 --- Gemfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 649c1df5815ac..408f32c2b40c3 100644 --- a/Gemfile +++ b/Gemfile @@ -19,13 +19,13 @@ else # # To issue a rails update bump the version number here rails_version = "7.0.7" - gem "actionmailer", rails_version - gem "actionpack", rails_version + gem "actionmailer", ">= 7.0.8.7", rails_version + gem "actionpack", ">= 7.0.8.7", rails_version gem "actionview", rails_version gem "activemodel", rails_version gem "activerecord", rails_version gem "activesupport", rails_version - gem "railties", rails_version + gem "railties", ">= 7.0.8.7", rails_version gem "sprockets-rails" end