diff --git a/.chloggen/rum-otlp.yaml b/.chloggen/rum-otlp.yaml deleted file mode 100644 index eea9c16c..00000000 --- a/.chloggen/rum-otlp.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/rum - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Add RUM -> OTLP translation. - -# The PR related to this change -issues: [747] - -# (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/.chloggen/rum.yaml b/.chloggen/rum.yaml deleted file mode 100644 index b7347844..00000000 --- a/.chloggen/rum.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' -change_type: new_component - -# The name of the component (e.g. pkg/quantile) -component: pkg/otlp/rum - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Add OTLP -> RUM translation and also deprecate MapLogs in favor of MapLogsAndRouteRUMEvents so that RUM events are handled. - -# The PR related to this change -issues: [745] - -# (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 5d9d5c45..afe17ead 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ +## 0.32.0 + +### 🚀 New components 🚀 + +- `pkg/otlp/rum`: Add OTLP -> RUM translation and also deprecate MapLogs in favor of MapLogsAndRouteRUMEvents so that RUM events are handled. (#745) + +### 💡 Enhancements 💡 + +- `pkg/otlp/rum`: Add RUM -> OTLP translation. (#747) + ## v0.31.0 ### 🧰 Bug fixes 🧰 diff --git a/pkg/inframetadata/go.mod b/pkg/inframetadata/go.mod index e28af6dd..170a5092 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.23.0 require ( - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.31.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.32.0 github.com/stretchr/testify v1.10.0 go.opentelemetry.io/collector/pdata v1.38.0 go.opentelemetry.io/otel v1.37.0 diff --git a/pkg/inframetadata/gohai/internal/gohaitest/go.mod b/pkg/inframetadata/gohai/internal/gohaitest/go.mod index aeaa9e10..48dbeefb 100644 --- a/pkg/inframetadata/gohai/internal/gohaitest/go.mod +++ b/pkg/inframetadata/gohai/internal/gohaitest/go.mod @@ -4,7 +4,7 @@ go 1.23.0 require ( github.com/DataDog/gohai v0.0.0-20230524154621-4316413895ee - github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata v0.29.1 + github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata v0.32.0 github.com/stretchr/testify v1.10.0 ) diff --git a/pkg/otlp/logs/go.mod b/pkg/otlp/logs/go.mod index edc39cad..150d3642 100644 --- a/pkg/otlp/logs/go.mod +++ b/pkg/otlp/logs/go.mod @@ -4,8 +4,8 @@ go 1.23.0 require ( github.com/DataDog/datadog-api-client-go/v2 v2.43.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.31.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/rum v0.0.0-00010101000000-000000000000 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.32.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/rum v0.32.0 github.com/stretchr/testify v1.10.0 go.opentelemetry.io/collector/component v1.38.0 go.opentelemetry.io/collector/component/componenttest v0.132.0 diff --git a/pkg/otlp/metrics/go.mod b/pkg/otlp/metrics/go.mod index afee77cb..e008e461 100644 --- a/pkg/otlp/metrics/go.mod +++ b/pkg/otlp/metrics/go.mod @@ -4,9 +4,9 @@ go 1.23.0 require ( github.com/DataDog/datadog-agent/pkg/proto v0.71.0-devel - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.31.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.31.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.31.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.32.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.32.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.32.0 github.com/DataDog/sketches-go v1.4.7 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 dbb52282..bc762f45 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.23 require ( - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.31.0 + github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.32.0 github.com/DataDog/sketches-go v1.4.7 github.com/dustin/go-humanize v1.0.1 github.com/stretchr/testify v1.10.0 diff --git a/versions.yaml b/versions.yaml index bbd6ef30..265d6eec 100644 --- a/versions.yaml +++ b/versions.yaml @@ -5,12 +5,13 @@ module-sets: pkgs: - version: v0.31.0 + version: v0.32.0 modules: - github.com/DataDog/opentelemetry-mapping-go/pkg/quantile - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/logs - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/metrics + - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/rum - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest - github.com/DataDog/opentelemetry-mapping-go/pkg/inframetadata excluded-modules: