v0.7.0
This release addresses CVE-2024-36129 (GHSA-c74f-6mfw-mm4v) fully
This release includes version 0.102.1 of the upstream Collector components.
The individual upstream Collector changelogs can be found here:
0.102.1:
- https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.102.1
- (no changes/patch release for opentelemetry-collector-contrib)
0.102.0:
- https://github.com/open-telemetry/opentelemetry-collector/releases/tag/v0.102.0
- https://github.com/open-telemetry/opentelemetry-collector-contrib/releases/tag/v0.102.0
Highlights from the upstream Collector changelog
🛑 Breaking changes 🛑
envprovider
: Restricts Environment Variable names. Environment variable names must now be ASCII only and start with a letter or an underscore, and can only contain underscores, letters, or numbers. (open-telemetry/opentelemetry-collector#9531)confighttp
: Apply MaxRequestBodySize to the result of a decompressed body (open-telemetry/opentelemetry-collector#10289)
When using compressed payloads, the Collector would verify only the size of the compressed payload.
This change applies the same restriction to the decompressed content. As a security measure, a limit of 20 MiB was added, which makes this a breaking change.
For most clients, this shouldn't be a problem, but if you often have payloads that decompress to more than 20 MiB, you might want to either configure your
client to send smaller batches (recommended), or increase the limit using the MaxRequestBodySize option.k8sattributesprocessor
: Movek8sattr.rfc3339
feature gate to stable. (open-telemetry/opentelemetry-collector-contrib#33304)
🧰 Bug fixes 🧰
batchprocessor
: ensure attributes are set on cardinality metadata metric (open-telemetry/opentelemetry-collector#9674)batchprocessor
: Fixing processor_batch_metadata_cardinality which was broken in v0.101.0 (open-telemetry/opentelemetry-collector#10231)batchprocessor
: respect telemetry level for all metrics (open-telemetry/opentelemetry-collector#10234)configrpc
: Use own compressors for zstd (open-telemetry/opentelemetry-collector#10323)
Before this change, the zstd compressor we used didn't respect the max message size. This addresses CVE-2024-36129 (GHSA-c74f-6mfw-mm4v) onconfiggrpc
.