Skip to content

Commit

Permalink
Add CHANGELOG and test
Browse files Browse the repository at this point in the history
  • Loading branch information
hannahramadan committed Nov 25, 2024
1 parent 3144d67 commit ffd7955
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# New Relic Ruby Agent Release Notes

## dev

- **Feature: Add support for Trilogy**

The agent now fully supports Trilogy, a client library for MySQL-compatible database servers, and correctly lists MySQL as the corresponding database in the UI. [PR#2966](https://github.com/newrelic/newrelic-ruby-agent/pull/2966).

## v9.16.0

Version 9.16.0 introduces the following features and bug fixes:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ def test_product_operation_collection_for_with_product_name_from_adapter
assert_equal 'Model', collection
end

def test_product_operation_collection_for_with_product_name_from_adapter_trilogy
product, _operation, _collection = ActiveRecordHelper.product_operation_collection_for(nil, '', 'trilogy')

assert_equal 'MySQL', product
end

def test_product_operation_collection_for_from_sql
product, operation, collection = ActiveRecordHelper.product_operation_collection_for('invalid', 'SELECT * FROM boo', nil)

Expand Down

0 comments on commit ffd7955

Please sign in to comment.