Skip to content
Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Vector's 0.31.0 release includes **breaking changes**:
1. [Removal of various deprecated internal metrics](#deprecated-internal-metrics)
1. [`component_received_event_bytes_total` and `component_sent_event_bytes_total` consistently use estimated JSON size of the event](#event_json_size)

and **potentially impactful changes**:

1. [AWS S3 endpoint path changes](#s3-paths)

We cover them below to help you upgrade quickly:

## Upgrade guide
Expand Down Expand Up @@ -61,3 +65,13 @@ of the event should it be serialized to JSON.
Measuring the events like this allows a consistent measurement to be applied
across all components regardless of how the source or sink serializes the event
when connecting to the external service.

### Potentially impactful changes

#### AWS S3 endpoint path changes {#s3-paths}

The handling of AWS S3 endpoints for the `aws_s3` source and sink has changed due to an upgrade of
the SDK that we use. For S3-compatible APIs like Cloudflare R2 you may find that you need to remove
Comment thread Fixed
the bucket name from the endpoint, if you have it specified. For example
``https://xxxxxxxxxxxxxxxxxxxxxxxxxxx.r2.cloudflarestorage.com/<bucket name>` should be written as
``https://xxxxxxxxxxxxxxxxxxxxxxxxxxx.r2.cloudflarestorage.com``.
Comment thread
dsmith3197 marked this conversation as resolved.
Outdated