From 32bb04cbe67f71714c40c547ad32422cbee3d857 Mon Sep 17 00:00:00 2001 From: Tieg Zaharia Date: Thu, 13 Jan 2022 10:51:45 -0500 Subject: [PATCH 1/2] Add gemspec flag that requires MFA for gem privileged operations. https://guides.rubygems.org/mfa-requirement-opt-in/ --- authlogic.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authlogic.gemspec b/authlogic.gemspec index 4cf6ece7..9792581b 100644 --- a/authlogic.gemspec +++ b/authlogic.gemspec @@ -21,7 +21,7 @@ require "authlogic/version" s.homepage = "https://github.com/binarylogic/authlogic" s.summary = "An unobtrusive ruby authentication library based on ActiveRecord." s.license = "MIT" - + s.metadata = { "rubygems_mfa_required" => "true" } s.required_ruby_version = ">= 2.6.0" # See doc/rails_support_in_authlogic_5.0.md From 575973c312bfb225ae877ebdf9498f9ef16b2540 Mon Sep 17 00:00:00 2001 From: Tieg Zaharia Date: Fri, 28 Jan 2022 10:33:35 -0500 Subject: [PATCH 2/2] Add a note to Changelog about MFA requirement. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 146c3976..6ac34fff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. * Breaking Changes * None * Added - * None + * Rubygems MFA requirement for authors added to gemspec. * Fixed * None