From 336a59d19d65fbc887b0fa9df3489695557bcc60 Mon Sep 17 00:00:00 2001 From: Helen <56097766+heyams@users.noreply.github.com> Date: Mon, 18 Sep 2023 16:45:21 -0700 Subject: [PATCH] Update changelog for 3.4.17 (#3300) --- CHANGELOG.md | 12 ++++++++++++ .../smoketest/SamplingOverridesThreadName.java | 8 +------- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8b7e40d2db..ef3c81a34b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # CHANGELOG +## Version 3.4.17 GA (09/18/2023) + +### Enhancements: + +* Update to OpenTelemetry Java 1.30 ([#3292](https://github.com/microsoft/ApplicationInsights-Java/pull/3292)) +* GA Azure Active Directory authentication ([#3284](https://github.com/microsoft/ApplicationInsights-Java/pull/3284)) +* Enable sampling overrides using thread.name ([#3285](https://github.com/microsoft/ApplicationInsights-Java/pull/3285)) + +### Bug fixes: + +* Fix regression in 3.4.16 where default applicationinsights.json config location is not loaded in AppServices, Azure Functions, and AKS ([#3288](https://github.com/microsoft/ApplicationInsights-Java/pull/3288)) + ## Version 3.4.16 GA ### Enhancements: diff --git a/smoke-tests/apps/SamplingOverrides/src/smokeTest/java/com/microsoft/applicationinsights/smoketest/SamplingOverridesThreadName.java b/smoke-tests/apps/SamplingOverrides/src/smokeTest/java/com/microsoft/applicationinsights/smoketest/SamplingOverridesThreadName.java index 47c42761a89..d457ae68709 100644 --- a/smoke-tests/apps/SamplingOverrides/src/smokeTest/java/com/microsoft/applicationinsights/smoketest/SamplingOverridesThreadName.java +++ b/smoke-tests/apps/SamplingOverrides/src/smokeTest/java/com/microsoft/applicationinsights/smoketest/SamplingOverridesThreadName.java @@ -10,8 +10,6 @@ import static com.microsoft.applicationinsights.smoketest.EnvironmentValue.TOMCAT_8_JAVA_20; import static com.microsoft.applicationinsights.smoketest.EnvironmentValue.TOMCAT_8_JAVA_8; import static com.microsoft.applicationinsights.smoketest.EnvironmentValue.TOMCAT_8_JAVA_8_OPENJ9; -import static com.microsoft.applicationinsights.smoketest.EnvironmentValue.WILDFLY_13_JAVA_8; -import static com.microsoft.applicationinsights.smoketest.EnvironmentValue.WILDFLY_13_JAVA_8_OPENJ9; import static org.assertj.core.api.Assertions.assertThat; import org.junit.jupiter.api.Test; @@ -50,9 +48,5 @@ static class Tomcat8Java19Test extends SamplingOverridesThreadName {} @Environment(TOMCAT_8_JAVA_20) static class Tomcat8Java20Test extends SamplingOverridesThreadName {} - @Environment(WILDFLY_13_JAVA_8) - static class Wildfly13Java8Test extends SamplingOverridesThreadName {} - - @Environment(WILDFLY_13_JAVA_8_OPENJ9) - static class Wildfly13Java8OpenJ9Test extends SamplingOverridesThreadName {} + // intentionally not including wildfly, since this test is set up for Tomcat thread names }