You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We generate a supportability metric showing a customer's source language and version. Currently for Scala, we detect the source language version from a method called versionNumberString.
This is broken for Scala 3 because this method doesn't exist in the Scala 3 source. It appears to have been replaced by versionNumberOrString.
Modify the Source Library Detector to capture the source language version for Scala 3 as well as lower versions of Scala. Verify that the Supportability/SourceLanguage/* metric is generated for Scala 3 environments.
The text was updated successfully, but these errors were encountered:
We generate a supportability metric showing a customer's source language and version. Currently for Scala, we detect the source language version from a method called
versionNumberString
.newrelic-java-agent/newrelic-agent/src/main/java/com/newrelic/agent/language/SourceLibraryDetector.java
Line 26 in 00f7b8d
This is broken for Scala 3 because this method doesn't exist in the Scala 3 source. It appears to have been replaced by
versionNumberOrString
.Modify the Source Library Detector to capture the source language version for Scala 3 as well as lower versions of Scala. Verify that the
Supportability/SourceLanguage/*
metric is generated for Scala 3 environments.The text was updated successfully, but these errors were encountered: