File tree 5 files changed +25
-5
lines changed
5 files changed +25
-5
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,25 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9
9
10
10
* tbd
11
11
12
+ ## Version 1.3.1 - 2023-12-14
13
+
14
+ The previous release was mistakenly built against an OpenTelemetry ` SNAPSHOT ` build.
15
+ This remedies that and compiles against the 1.32.0 non-SNAPSHOT bom.
16
+
17
+ * Compile against OpenTelemetry Java Instrumentation 1.32.0 (no SNAPSHOT).
18
+
19
+ ## Version 1.3.0 - 2023-12-13
20
+
21
+ This is a standard release following the regular upstream ` opentelemetry-android ` release.
22
+ This version is succeeded by a patch release: Users should use 1.3.1 instead of 1.3.0.
23
+
24
+ * Update to use upstream ` opentelemetry-android ` 0.3.0 (#714 )
25
+ * Reduce unnecessary attempts at directory deletion for disk buffered telemetry (#683 )
26
+ * Change session sampling strategy to be consistent with other splunk RUM implementations (#698 )
27
+ * Global attributes and screen attributes are now handled by upstream (#710 )
28
+ * Network monitoring and network attributes appender now handle by upstream (#713 )
29
+ * Fix broken url targets in sample app (#715 )
30
+
12
31
## Version 1.2.0 - 2023-10-25
13
32
14
33
This is the first version of ` splunk-otel-android ` that is based on the upstream version of
Original file line number Diff line number Diff line change 12
12
13
13
<p align="center">
14
14
<img alt="Stable" src="https://img.shields.io/badge/status-stable-informational?style=for-the-badge">
15
- <a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.21 .0">
16
- <img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.21 .0-blueviolet?style=for-the-badge">
15
+ <a href="https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/tag/v1.32 .0">
16
+ <img alt="OpenTelemetry Instrumentation for Java Version" src="https://img.shields.io/badge/otel-1.32 .0-blueviolet?style=for-the-badge">
17
17
</a>
18
18
<a href="https://github.com/signalfx/gdi-specification/releases/tag/v1.4.0">
19
19
<img alt="Splunk GDI specification" src="https://img.shields.io/badge/GDI-1.4.0-blueviolet?style=for-the-badge">
Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ This is the process to use to do a release:
25
25
26
26
6 ) Create a PR to update the version in the ` gradle.properties ` to the next development
27
27
version. This PR can and probably should also include updating any documentation (CHANGELOG.md,
28
- README.md, etc) that mentions the previous version.
28
+ README.md, etc) that mentions the previous version. Make sure the badget in the top README.md
29
+ reflects the accurate upstream otel version.
29
30
30
31
7 ) Once this PR is merged, create a release in Github that points at the newly created version,
31
32
and make sure to provide release notes that at least mirror the contents of the CHANGELOG.md
Original file line number Diff line number Diff line change @@ -17,5 +17,5 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
17
17
android.useAndroidX =true
18
18
19
19
# generate the BuildConfig class that contains the app version
20
- version =1.3.0
20
+ version =1.3.1
21
21
group =com.splunk
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ android {
39
39
}
40
40
}
41
41
42
- val otelVersion = " 1.32.0-SNAPSHOT "
42
+ val otelVersion = " 1.32.0"
43
43
val otelAlphaVersion = otelVersion.replaceFirst(" (-SNAPSHOT)?$" .toRegex(), " -alpha$1" )
44
44
val otelSemconvVersion = " 1.21.0-alpha"
45
45
You can’t perform that action at this time.
0 commit comments