diff --git a/.build_ignore b/.build_ignore index cc4caa48e5..70361a7b02 100644 --- a/.build_ignore +++ b/.build_ignore @@ -1,3 +1,4 @@ +.github .gitignore .project .rubocop.yml @@ -12,7 +13,9 @@ DOCKER.md docker-compose.yml config/ config.dot +infinite_tracing/ Guardfile lefthook.yml +log/ README.md test/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d5b0663f5..c62f2199bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## dev -Version of the agent adds log-level filtering, adds custom attributes for log events, and updates instrumentation for Action Cable. It also provides fixes for how `Fiber` args are treated, Code-Level Metrics, and `NewRelic::Agent::Logging::DecoratingFormatter#clear_tags!` being incorrectly private. +Version of the agent adds log-level filtering, adds custom attributes for log events, and updates instrumentation for Action Cable. It also provides fixes for how `Fiber` args are treated, Code-Level Metrics, unnecessary files being included in the gem, and `NewRelic::Agent::Logging::DecoratingFormatter#clear_tags!` being incorrectly private. - **Feature: Filter forwarded logs based on level** @@ -35,6 +35,10 @@ Version of the agent adds log-level filtering, adds custom attributes for * `transmit_subscription_confirmation.action_cable` * `transmit_subscription_rejection.action_cable` +- **Bugfix: Removed unwanted files from being included in file_list in gemspec** + + Previously, the agent was including some files in the gem that were not needed but added to the size of the gem. These files will no longer be included. Thanks to [@manuraj17](https://github.com/manuraj17) for the contribution! [PR#2089](https://github.com/newrelic/newrelic-ruby-agent/pull/2089) + - **Bugfix: Report Code-Level Metrics for Rails controller methods** Controllers in Rails automatically render views with names that correspond to valid routes. This means that a controller method may not have a corresponding method in the controller class. Code-Level Metrics now report on these methods and don't log false warnings. Thanks to [@jcrisp](https://github.com/jcrisp) for reporting this issue. [PR#2061](https://github.com/newrelic/newrelic-ruby-agent/pull/2061)