Skip to content

Commit aeccd26

Browse files
committed
chore(releasing): Prepare v0.31.0 release
Signed-off-by: Jesse Szwedko <[email protected]>
1 parent 9ec0443 commit aeccd26

File tree

7 files changed

+570
-34
lines changed

7 files changed

+570
-34
lines changed

distribution/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -u
1212

1313
# If PACKAGE_ROOT is unset or empty, default it.
1414
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
15-
VECTOR_VERSION="0.30.0"
15+
VECTOR_VERSION="0.31.0"
1616
_divider="--------------------------------------------------------------------------------"
1717
_prompt=">>>"
1818
_indent=" "

website/content/en/highlights/2023-07-04-0-31-0-upgrade-guide.md

-31
This file was deleted.

website/content/en/highlights/2023-07-05-0-31-0-upgrade-guide.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
date: "2023-07-05"
33
title: "0.31 Upgrade Guide"
44
description: "An upgrade guide that addresses breaking changes in 0.31.0"
5-
authors: ["tobz"]
5+
authors: ["stephenwakely", "tobz"]
66
release: "0.31.0"
77
hide_on_release_notes: false
88
badges:
@@ -12,6 +12,7 @@ badges:
1212
Vector's 0.31.0 release includes **breaking changes**:
1313

1414
1. [Removal of various deprecated internal metrics](#deprecated-internal-metrics)
15+
1. [`component_received_event_bytes_total` and `component_sent_event_bytes_total` consistently use estimated JSON size of the event](#event_json_size)
1516

1617
We cover them below to help you upgrade quickly:
1718

@@ -49,3 +50,14 @@ A small note is that a small number of components still emit some of these metri
4950
additional tags and information that is disallowed by the Component Specification. They will be
5051
removed in a future version once we can rectify those discrepancies, but they are effectively
5152
removed as of this release: you cannot depend on them still existing.
53+
54+
#### `component_received_event_bytes_total` and `component_sent_event_bytes_total` consistently use estimated JSON size of the event {#event_json_size}
55+
56+
Prior to this Version, metrics emitted by Vector were inconsistently measuring
57+
the byte size of the events that were being sent and received. These metrics
58+
have been updated for all components so they always emit an estimate of the size
59+
of the event should it be serialized to JSON.
60+
61+
Measuring the events like this allows a consistent measurement to be applied
62+
across all components regardless of how the source or sink serializes the event
63+
when connecting to the external service.

website/content/en/releases/0.31.0.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
title: Vector v0.31.0 release notes
3+
weight: 21
4+
---

website/cue/reference/administration/interfaces/kubectl.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ administration: interfaces: kubectl: {
1919
role_implementations: [Name=string]: {
2020
commands: {
2121
_deployment_variant: string
22-
_vector_version: "0.30"
22+
_vector_version: "0.31"
2323
_namespace: string | *"vector"
2424
_controller_resource_type: string
2525
_controller_resource_name: string | *_deployment_variant

0 commit comments

Comments
 (0)