Skip to content
Merged
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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@heyams I'm not sure how this test passed is passing sometimes on wildfly (I couldn't get it to pass locally), but I think ok to just only test on Tomcat

}