Skip to content

Commit df78dcb

Browse files
authored
OTel Collector v0.110.0 dependency update; remove validation connector (#252)
Removes the validation connector, as it had become broken and was already half-functional anyway, see open-telemetry/opentelemetry-collector#8104.
1 parent b0b176d commit df78dcb

File tree

14 files changed

+237
-899
lines changed

14 files changed

+237
-899
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
88

99
## Unreleased
1010

11+
- Concurrent batch processor: synchronize with upstream; removes in-flight bytes metric,
12+
removes panic recovery as unnecessary divergence. [#251](https://github.com/open-telemetry/otel-arrow/pull/251)
13+
- Update collector dependencies to v0.110.0/v1.16.0; remove validation connector
14+
1115
## [0.26.0](https://github.com/open-telemetry/otel-arrow/releases/tag/v0.26.0) - 2024-09-06
1216

1317
- Concurrent batch processor: tracing improvements. [#238](https://github.com/open-telemetry/otel-arrow/pull/238), [#241](https://github.com/open-telemetry/otel-arrow/pull/241)

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ endif
103103
BUILDER = builder
104104
.PHONY: $(BUILDER)
105105
builder:
106-
$(GOCMD) install go.opentelemetry.io/collector/cmd/builder@v0.105.0
106+
$(GOCMD) install go.opentelemetry.io/collector/cmd/builder@v0.110.0
107107

108108
.PHONY: genotelarrowcol
109109
genotelarrowcol: builder

collector/README.md

-3
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ maintainers. These components are:
4141
- [`processor/obfuscationprocessor`][OBFUSCATIONPROCESSOR]: Supports
4242
obfuscation of OpenTelemetry data using a [Feistel
4343
cipher](https://en.wikipedia.org/wiki/Feistel_cipher).
44-
- [`connector/validationconnector`][VALIDATIONCONNECTOR]: A component
45-
for on-the-fly validation of a local pipeline.
4644

4745
## Other components built into `otelarrowcol`
4846

@@ -70,7 +68,6 @@ From the core collector repository:
7068
[UPSTREAMFILEEXPORTER]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/exporter/fileexporter/README.md
7169
[UPSTREAMFILERECEIVER]: https://github.com/open-telemetry/opentelemetry-collector-contrib/tree/main/receiver/filereceiver/README.md
7270
[OBFUSCATIONPROCESSOR]: ./processor/obfuscationprocessor/README.md
73-
[VALIDATIONCONNECTOR]: ./connector/validationconnector/README.md
7471
[BASICAUTHEXT]: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/extension/basicauthextension/README.md
7572
[HEADERSETTEREXT]: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/extension/headerssetterextension/README.md
7673
[PPROFEXT]: https://github.com/open-telemetry/opentelemetry-collector-contrib/blob/main/extension/pprofextension/README.md

collector/cmd/otelarrowcol/components.go

+12-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)