diff --git a/.chloggen/mx-psi_dimensions-change.yaml b/.chloggen/mx-psi_dimensions-change.yaml deleted file mode 100755 index 1dd0aa0d..00000000 --- a/.chloggen/mx-psi_dimensions-change.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/metrics - -# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). -note: Add support for metrics origin in `Dimensions`. - -# The PR related to this change -issues: [204] - -# (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 0ffb8e88..e2b4f56c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ +## v0.8.2 + +### 💡 Enhancements 💡 + +- `pkg/otlp/metrics`: Add support for metrics origin in `Dimensions`. (#204) + ## v0.8.1 ### 🚩 Deprecations 🚩 diff --git a/pkg/inframetadata/go.mod b/pkg/inframetadata/go.mod index 4f6a51cf..5191d91a 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.20 require ( - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.1 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.2 github.com/stretchr/testify v1.8.4 go.opentelemetry.io/collector/pdata v1.0.0-rcv0017 go.opentelemetry.io/collector/semconv v0.88.0 diff --git a/pkg/otlp/logs/go.mod b/pkg/otlp/logs/go.mod index 102c9a1f..585ffabd 100644 --- a/pkg/otlp/logs/go.mod +++ b/pkg/otlp/logs/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/DataDog/datadog-api-client-go/v2 v2.13.0 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.1 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.2 github.com/stretchr/testify v1.8.4 go.opentelemetry.io/collector/pdata v1.0.0-rcv0017 go.opentelemetry.io/collector/semconv v0.88.0 diff --git a/pkg/otlp/metrics/go.mod b/pkg/otlp/metrics/go.mod index 28a6ef3b..e655cd0a 100644 --- a/pkg/otlp/metrics/go.mod +++ b/pkg/otlp/metrics/go.mod @@ -4,9 +4,9 @@ go 1.20 require ( github.com/DataDog/datadog-agent/pkg/proto v0.50.0-rc.1 - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.8.1 - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.1 - github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.8.1 + github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.8.2 + github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes v0.8.2 + github.com/DataDog/opentelemetry-mapping-go/pkg/quantile v0.8.2 github.com/DataDog/sketches-go v1.4.3 github.com/golang/protobuf v1.5.3 github.com/lightstep/go-expohisto v1.0.0 diff --git a/pkg/quantile/go.mod b/pkg/quantile/go.mod index 6534fa77..2c875241 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.20 require ( - github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.8.1 + github.com/DataDog/opentelemetry-mapping-go/pkg/internal/sketchtest v0.8.2 github.com/DataDog/sketches-go v1.4.3 github.com/dustin/go-humanize v1.0.1 github.com/stretchr/testify v1.8.4 diff --git a/versions.yaml b/versions.yaml index af4e5721..10130c91 100644 --- a/versions.yaml +++ b/versions.yaml @@ -5,7 +5,7 @@ module-sets: pkgs: - version: v0.8.1 + version: v0.8.2 modules: - github.com/DataDog/opentelemetry-mapping-go/pkg/quantile - github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes