Skip to content
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

v4.7.1 #1431

Closed
wants to merge 4 commits into from
Closed

v4.7.1 #1431

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,20 @@ endif::[]
[[release-notes-4.x]]
=== Ruby Agent version 4.x

[[release-notes-4.7.1]
==== 4.7.1

[float]
===== Fixed
- Skip capturing cookie header when it's set separately {pull}1405[#1405]
- Changes/fixes to metadata.cloud.* fields collected for GCP {pull}1415[#1415]
- Pin version of bigdecimal for ruby 2.4 {pull}1417[#1417]
- Use response method on Faraday error for older versions of the library {pull}1419[#1419]
- Fix ActionDispatchSpy#render_exception for Rails 7.1 {pull}1423[#1423]
- Use graphql < 2.1 when Ruby < 2.7 {pull}1425[#1425]
- Guard against various Faraday exception response formats {pull}1428[#1428]


[[release-notes-4.7.0]]
==== 4.7.0

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ else
end
if !defined?(JRUBY_VERSION)
gem 'google-protobuf', '< 3.12' if RUBY_VERSION < '2.5'
gem 'google-protobuf', '< 3.25' if RUBY_VERSION < '2.7' && RUBY_VERSION > '2.5'
gem 'google-protobuf', '< 3.23' if RUBY_VERSION < '2.7' && RUBY_VERSION > '2.5'
end
gem 'grpc' if !defined?(JRUBY_VERSION) && RUBY_VERSION < '3.0'
gem 'json'
Expand Down
2 changes: 1 addition & 1 deletion lib/elastic_apm/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
# frozen_string_literal: true

module ElasticAPM
VERSION = '4.7.0'
VERSION = '4.7.1'
end
4 changes: 4 additions & 0 deletions spec/build/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ if [[ "${FRAMEWORK}" =~ ^rails-4\.([0-9]) ]]; then
gem i "rubygems-update:~>2.7" --no-document
update_rubygems --no-document
gem i "bundler:~>1.17.3" --no-document
elif [[ "${RUBY_VERSION}" =~ ^2\.(6|7).+ ]]; then
gem i "rubygems-update:~>3.4.0" --no-document
update_rubygems --no-document
gem i bundler --no-document
# Install specific dependencies for 2.4.x and 2.5.x ruby versions
elif [[ "${RUBY_VERSION}" =~ ^2\.(4|5).+ ]]; then
gem i "rubygems-update:~>2.7" --no-document
Expand Down
2 changes: 1 addition & 1 deletion spec/integration/graphql_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def execute
}
'

wait_for transactions: 1, spans: 13
wait_for timeout: 10, transactions: 1, spans: 12

expect(resp.status).to be 200

Expand Down
Loading