Skip to content

Commit

Permalink
chore(releasing): Prepare v0.39.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
  • Loading branch information
jszwedko committed Jun 17, 2024
1 parent b11ca5d commit 897120b
Show file tree
Hide file tree
Showing 21 changed files with 314 additions and 46 deletions.
4 changes: 1 addition & 3 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ concating
concats
condrestart
conffiles
configkey
configmap
confl
confluentinc
Expand Down Expand Up @@ -864,6 +863,7 @@ protoc
protofbuf
protosizer
Prt
psl
psv
publickey
purgecss
Expand Down Expand Up @@ -1142,7 +1142,6 @@ trivy
Troutwine
trustarc
truste
TRUSTSTORE
TSDB
Tsvg
turbofish
Expand Down Expand Up @@ -1244,7 +1243,6 @@ wtcache
wtime
wtimeouts
wtr
wurstmeister
xact
xcatsy
Xcg
Expand Down
3 changes: 0 additions & 3 deletions changelog.d/10465_kafka_sink_healthcheck_topic.enhancement.md

This file was deleted.

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/20384_pretty_json_config.enhancement.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/4221_host_key_http_source.enhancement.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/alpine-update.enhancement.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/cache-remap-compilation.enhancement.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/datadog-api-endpoint.fix.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/kafka-source-ack-leak.fix.md

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/kafka-source-parse_message.feature.md

This file was deleted.

This file was deleted.

3 changes: 0 additions & 3 deletions changelog.d/opentelemetry_trace.feature.md

This file was deleted.

5 changes: 0 additions & 5 deletions changelog.d/reduce_end_every_period.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/remove-enterprise-feature.breaking.md

This file was deleted.

2 changes: 1 addition & 1 deletion distribution/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set -u
# If PACKAGE_ROOT is unset or empty, default it.
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
# If VECTOR_VERSION is unset or empty, default it.
VECTOR_VERSION="${VECTOR_VERSION:-"0.38.0"}"
VECTOR_VERSION="${VECTOR_VERSION:-"0.39.0"}"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
42 changes: 42 additions & 0 deletions website/content/en/highlights/2024-06-17-0-39-0-upgrade-guide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
date: "2024-06-17"
title: "0.39 Upgrade Guide"
description: "An upgrade guide that addresses breaking changes in 0.39.0"
authors: ["jszwedko"]
release: "0.39.0"
hide_on_release_notes: false
badges:
type: breaking change
---

Vector's 0.39.0 release includes two **breaking changes**:

1. [Removal of the path coalescing operator](#path-coalescing)
1. [Removal of `enterprise` configuration](#enterprise-configuration)

We cover them below to help you upgrade quickly:

## Upgrade guide

### Breaking Change

#### Path coalescing has been removed {#path-coalescing}

Coalescing of field lookup paths (e.g. `.(field1|field2)`) was deprecated and is now removed This
feature did not seem to be used much and significantly complicates parts of the codebase.

If you were using this feature, you can accomplish the same through conditionals in VRL like:

```vrl
field = if exists(.field1) {
.field1
} else if exists(.field2) {
.field2
}
```

#### Removal of `enterprise` configuration {#enterprise-configuration}

The `enterprise` global configuration option that was used to integrate Vector with the Datadog has been removed.
Observability Pipelines product was deprecated and has been removed. Please reach out to Datadog
support if you are impacted by this.
4 changes: 4 additions & 0 deletions website/content/en/releases/0.39.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.39.0 release notes
weight: 21
---
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ administration: interfaces: kubectl: {
role_implementations: [Name=string]: {
commands: {
_deployment_variant: string
_vector_version: "0.38"
_vector_version: "0.39"
_namespace: string | *"vector"
_controller_resource_type: string
_controller_resource_name: string | *_deployment_variant
Expand Down
Loading

0 comments on commit 897120b

Please sign in to comment.