From 36ce20945b305564fe4ab1adb9eec8d05745fb61 Mon Sep 17 00:00:00 2001 From: Ibraheem Aboulnaga <13734402+IbraheemA@users.noreply.github.com> Date: Thu, 16 Jan 2025 14:00:33 -0500 Subject: [PATCH] Prerelease pkgs v0.23.0 (#465) * Bump version number * Run chloggen * Prepare pkgs for version v0.23.0 --- ...eem_add-http-span-attributes-conventions.yaml | 16 ---------------- CHANGELOG.md | 6 ++++++ pkg/inframetadata/go.mod | 2 +- pkg/otlp/logs/go.mod | 2 +- pkg/otlp/metrics/go.mod | 6 +++--- pkg/quantile/go.mod | 2 +- versions.yaml | 2 +- 7 files changed, 13 insertions(+), 23 deletions(-) delete mode 100644 .chloggen/ibraheem_add-http-span-attributes-conventions.yaml diff --git a/.chloggen/ibraheem_add-http-span-attributes-conventions.yaml b/.chloggen/ibraheem_add-http-span-attributes-conventions.yaml deleted file mode 100644 index b9dd9a95..00000000 --- a/.chloggen/ibraheem_add-http-span-attributes-conventions.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: enhancement - -# The name of the component (e.g. pkg/quantile) -component: pkg/otlp/attributes - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Add support for mapping OTLP -> DD semantic conventions for HTTP attributes. These mappings are outlined in DD documentation - https://docs.datadoghq.com/opentelemetry/schema_semantics/semantic_mapping/?tab=datadogexporter#http - -# The PR related to this change -issues: [426] - -# (Optional) One or more lines of additional information to render under the primary note. -# These lines will be padded with 2 spaces and then inserted directly into the document. -# Use pipe (|) for multiline entries. -subtext: diff --git a/CHANGELOG.md b/CHANGELOG.md index 10ffb197..85a45dcd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ +## 0.23.0 + +### 💡 Enhancements 💡 + +- `pkg/otlp/attributes`: Add support for mapping OTLP -> DD semantic conventions for HTTP attributes. These mappings are outlined in DD documentation - https://docs.datadoghq.com/opentelemetry/schema_semantics/semantic_mapping/?tab=datadogexporter#http (#426) + ## v0.22.0 ### 💡 Enhancements 💡 diff --git a/pkg/inframetadata/go.mod b/pkg/inframetadata/go.mod index c1423a20..474195ad 100644 --- a/pkg/inframetadata/go.mod +++ b/pkg/inframetadata/go.mod @@ -3,7 +3,7 @@ module github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata go 1.22.0 require ( - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.22.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.23.0 github.com/stretchr/testify v1.10.0 go.opentelemetry.io/collector/pdata v1.23.0 go.opentelemetry.io/collector/semconv v0.117.0 diff --git a/pkg/otlp/logs/go.mod b/pkg/otlp/logs/go.mod index 6f08c523..c1f12eb0 100644 --- a/pkg/otlp/logs/go.mod +++ b/pkg/otlp/logs/go.mod @@ -4,7 +4,7 @@ go 1.22.0 require ( github.com/DataDog/datadog-api-client-go/v2 v2.34.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.22.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.23.0 github.com/stretchr/testify v1.10.0 go.opentelemetry.io/collector/component v0.117.0 go.opentelemetry.io/collector/component/componenttest v0.117.0 diff --git a/pkg/otlp/metrics/go.mod b/pkg/otlp/metrics/go.mod index 2322f645..4277a2bc 100644 --- a/pkg/otlp/metrics/go.mod +++ b/pkg/otlp/metrics/go.mod @@ -4,9 +4,9 @@ go 1.22.0 require ( github.com/DataDog/datadog-agent/pkg/proto v0.63.0-devel - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.22.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.22.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.22.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.23.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.23.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.23.0 github.com/DataDog/sketches-go v1.4.6 github.com/golang/protobuf v1.5.4 github.com/lightstep/go-expohisto v1.0.0 diff --git a/pkg/quantile/go.mod b/pkg/quantile/go.mod index 6da996de..185fdc20 100644 --- a/pkg/quantile/go.mod +++ b/pkg/quantile/go.mod @@ -3,7 +3,7 @@ module github.com/DataDog/opentelemetry-mapping-go/pkg/quantile go 1.22 require ( - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.22.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.23.0 github.com/DataDog/sketches-go v1.4.6 github.com/dustin/go-humanize v1.0.1 github.com/stretchr/testify v1.10.0 diff --git a/versions.yaml b/versions.yaml index 8a2ec291..493dfb1a 100644 --- a/versions.yaml +++ b/versions.yaml @@ -5,7 +5,7 @@ module-sets: pkgs: - version: v0.22.0 + version: v0.23.0 modules: - github.com/DataDog/opentelemetry-mapping-go/pkg/quantile - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes