Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/semantic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ jobs:
ci
cli
codecs
codecs protobuf
compression
config
config provider
Expand Down
2 changes: 1 addition & 1 deletion lib/codecs/src/decoding/format/protobuf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl ProtobufDeserializerConfig {

/// Return the type of event build by this deserializer.
pub fn output_type(&self) -> DataType {
DataType::all_bits()
DataType::Log
}

/// The schema produced by the deserializer.
Expand Down
2 changes: 1 addition & 1 deletion lib/codecs/src/encoding/format/protobuf.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ impl ProtobufSerializerConfig {

/// The data type of events that are accepted by `ProtobufSerializer`.
pub fn input_type(&self) -> DataType {
DataType::all_bits()
DataType::Log | DataType::Trace
}

/// The schema required by the serializer.
Expand Down
10 changes: 10 additions & 0 deletions website/cue/reference/releases/0.49.0.cue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ releases: "0.49.0": {

whats_next: []

known_issues: [
"""
The protobuf codecs do not support all telemetry types. Specifically, the following applies:
- Decoder: supports logs.
- Encoder: supports logs and traces.

Metrics are not supported. Any future updates will be noted in changelogs.
""",
]

description: """
The Vector team is excited to announce version `0.49.0`!

Expand Down
Loading