diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 3ff691bd0bc..d91c04f3e60 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -12,6 +12,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v2 + - name: Setup Go + uses: actions/setup-go@v2.1.3 + with: + go-version: 1.16 + # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c83e766137..e4e6316c9f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,24 @@ ## Unreleased +## v0.33.0 Beta + +## 🛑 Breaking changes 🛑 + +- Rename `configloader` interface to `configunmarshaler` (#3774) +- Remove `LabelsMap` from all the metrics points (#3706) +- Update generated K8S attribute labels to fix capitalization (#3823) + +## 💡 Enhancements 💡 + +- Collector has now full support for metrics proto v0.9.0. + ## v0.32.0 Beta +This release is marked as "bad" since the metrics pipelines will produce bad data. + +- See https://github.com/open-telemetry/opentelemetry-collector/issues/3824 + ## 🛑 Breaking changes 🛑 - Rename `CustomUnmarshable` interface to `Unmarshallable` (#3774) diff --git a/go.mod b/go.mod index 640416f69da..29f59227425 100644 --- a/go.mod +++ b/go.mod @@ -42,7 +42,7 @@ require ( github.com/uber/jaeger-lib v2.4.1+incompatible github.com/xdg-go/scram v1.0.2 go.opencensus.io v0.23.0 - go.opentelemetry.io/collector/model v0.32.0 + go.opentelemetry.io/collector/model v0.33.0 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.22.0 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.22.0 go.opentelemetry.io/contrib/zpages v0.22.0 @@ -61,3 +61,5 @@ require ( ) replace go.opentelemetry.io/collector/model => ./model + +retract v0.32.0 // Contains incomplete metrics transition to proto 0.9.0, random components are not working.