-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⬆️ Allow ActiveSupport versions < 7.0 (#47)
* 🔥 Remove explicit `activesupport` dependency It appears that to prevent a CVE issue with ActiveSupport < 5.2.5 we added `activesupport` as a direct dependency to fake_idp and made some decisions on which version to lock to. That decision was overly prescriptive. Because `activesupport` is only a dependency of `activemodel`, and activemodel is itself a dependency of `xmlenc`, we can lock promote the use of activemodel >= 5.2.5 which would thereby promote avoidance of that previous CVE but without preventing users from using Rails 6. * Bump version to 1.0.2 Co-authored-by: Kevin Peek <[email protected]>
- Loading branch information
1 parent
d890212
commit 23272d8
Showing
3 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
module FakeIdp | ||
VERSION = "1.0.1" | ||
VERSION = "1.0.2" | ||
end |