-
Notifications
You must be signed in to change notification settings - Fork 600
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rails v7.1 driven 'rails' / 'rails_prepend' suite updates #2248
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
824ef52
Rails v7.1 driven 'rails' suite updates
fallwith ff1d4db
rails suite Rails v7.1 hacks
fallwith f68ddb7
rails before_suite.rb - remove Hash hack
fallwith 2ef4bd2
rails suite: test with Edge
fallwith c7b1f3d
rails_test.rb: new instance var location
fallwith ef2f6b9
CI: reorder Rails suite library load order
fallwith 11fecc3
ar_pg tests: use `ids` for v7.1+
fallwith 5814af3
ar_pg: test Edge, don't test plucky
fallwith 7ca493f
Control Rails framework: better constant names
fallwith af2f4d5
CI: do not test Rails Edge for CI workflows
fallwith 7b66163
Envfile Rails Edge helper: typo fix
fallwith a63e5cc
prepend_rails_edge -> unshift_rails_edge
fallwith File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# This file is distributed under New Relic's license terms. | ||
# See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. | ||
# frozen_string_literal: true | ||
|
||
# These are hacks to make the 'rails' multiverse test suite compatible with | ||
# Rails v7.1 released on 2023-10-05. | ||
# | ||
# TODO: refactor these out with non-hack replacements as time permits | ||
fallwith marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if Gem::Version.new(Rails.version) >= Gem::Version.new('7.1.0') | ||
# NoMethodError (undefined method `to_ary' for an instance of ActionController::Streaming::Body): | ||
# actionpack (7.1.0) lib/action_dispatch/http/response.rb:107:in `to_ary' | ||
# actionpack (7.1.0) lib/action_dispatch/http/response.rb:509:in `to_ary' | ||
# rack (3.0.8) lib/rack/body_proxy.rb:41:in `method_missing' | ||
# rack (3.0.8) lib/rack/etag.rb:32:in `call' | ||
# newrelic-ruby-agent/lib/new_relic/agent/instrumentation/middleware_tracing.rb:99:in `call' | ||
require 'action_controller/railtie' | ||
class ActionController::Streaming::Body | ||
def to_ary | ||
fallwith marked this conversation as resolved.
Show resolved
Hide resolved
|
||
self | ||
end | ||
end | ||
end |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very helpful comment! Cool we get to test with the latest now