Be more specific in pinning ActionView and pin railties to prevent er…#21453
Open
bwatters-r7 wants to merge 1 commit into
Open
Be more specific in pinning ActionView and pin railties to prevent er…#21453bwatters-r7 wants to merge 1 commit into
bwatters-r7 wants to merge 1 commit into
Conversation
Contributor
|
Needs a rebase and gemile.lock update diff --git a/Gemfile.lock b/Gemfile.lock
index 95095d055f6..81dfea1d716 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -4,9 +4,9 @@ PATH
metasploit-framework (6.4.133)
aarch64
abbrev
- actionpack (~> 7.2.0)
- activerecord (~> 7.2.0)
- activesupport (~> 7.2.0)
+ actionpack (~> 7.2.2.2)
+ activerecord (~> 7.2.2.2)
+ activesupport (~> 7.2.2.2)
aws-sdk-ec2
aws-sdk-ec2instanceconnect
aws-sdk-iam
@@ -74,7 +74,7 @@ PATH
pg
puma
rack (~> 2.2)
- railties
+ railties (~> 7.2.2.2)
rasn1 (= 0.14.0)
rb-readline
recog |
d82abe5 to
894b91b
Compare
Contributor
Author
|
I think Giuthub got big mad at updating the lock file? |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
WARNING- I don't know what I'm doing.....
When updating the rex-arch gem, my install also updated Actionview to 7.3.2.1, which is a problem because there's a
monkeypatchinconfig/application.rbthat raises an exception if ActionView is not 7.2.2.2:Unfortunately, it seems like there's a lot of codependence going on around that, but it all seems to work if we also tag
railtiesto theRAILS_VERSION, but we need to be more specific on theRAILS_VERSION, too.This fix works for me, but someone with a better understanding of the dependencies here will need to make sure this is right.
Before:
bundle updateFixed:
bundle update./msfconsole