From 8caca812f87b7460b85b84242f90b5079a63291e Mon Sep 17 00:00:00 2001 From: Tony Pitale Date: Wed, 9 Oct 2024 12:05:55 -0500 Subject: [PATCH 1/3] Bump version, update changelog --- CHANGELOG.md | 5 +++++ VERSION | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89b2e616..b4428956 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ ## CHANGELOG +### `v1.30` + +* adjust metadata_reporter :transaction report_error [#443](https://github.com/newrelic/elixir_agent/pull/443) + + ### `v1.29` Features diff --git a/VERSION b/VERSION index 5e57fb89..034552a8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.29.0 +1.30.0 From febf8dc79b5a4b5e906c7937f44d0d8c6d829c1e Mon Sep 17 00:00:00 2001 From: Tony Pitale Date: Wed, 9 Oct 2024 14:20:33 -0500 Subject: [PATCH 2/3] Add missing PR to changelog; attempt to fix integration tests --- .github/workflows/elixir.yml | 2 +- CHANGELOG.md | 2 +- examples/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 7eef6264..b8c996c1 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -139,7 +139,7 @@ jobs: - name: Start integration test dependencies run: | - docker-compose up -d + docker compose up -d until pg_isready -h localhost; do sleep 1; done; until mysqladmin --protocol tcp ping; do sleep 1; done; diff --git a/CHANGELOG.md b/CHANGELOG.md index b4428956..859c35b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ### `v1.30` * adjust metadata_reporter :transaction report_error [#443](https://github.com/newrelic/elixir_agent/pull/443) - +* Identify Phoenix LiveView metrics [#424](https://github.com/newrelic/elixir_agent/pull/424) ### `v1.29` diff --git a/examples/README.md b/examples/README.md index eb1bab55..e97aa2a2 100644 --- a/examples/README.md +++ b/examples/README.md @@ -7,7 +7,7 @@ A set example apps demonstrating and validating built-in instrumentation. In CI, these test are always run. When developing locally, you can run the tests easily by first starting the dependent docker services: ``` -docker-compose up +docker compose up mix test ``` From b5b7ae0b6670e02577f6c9bc097e81598de4e5bf Mon Sep 17 00:00:00 2001 From: Tony Pitale Date: Wed, 9 Oct 2024 15:18:19 -0500 Subject: [PATCH 3/3] Add bandit PR too --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 859c35b7..917dc9c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,7 @@ * adjust metadata_reporter :transaction report_error [#443](https://github.com/newrelic/elixir_agent/pull/443) * Identify Phoenix LiveView metrics [#424](https://github.com/newrelic/elixir_agent/pull/424) +* Add Bandit HTTP server support [#445](https://github.com/newrelic/elixir_agent/pull/445) ### `v1.29`