Skip to content

Commit

Permalink
chore(releasing): Prepare v0.24.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Szwedko <jesse@szwedko.me>
Co-authored-by: Kyle Criddle <kyle.criddle@datadoghq.com>
Signed-off-by: Jesse Szwedko <jesse@szwedko.me>
  • Loading branch information
jszwedko and neuronull committed Aug 30, 2022
1 parent 765078d commit 43267b9
Show file tree
Hide file tree
Showing 7 changed files with 768 additions and 5 deletions.
2 changes: 1 addition & 1 deletion distribution/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -u

# If PACKAGE_ROOT is unset or empty, default it.
PACKAGE_ROOT="${PACKAGE_ROOT:-"https://packages.timber.io/vector"}"
VECTOR_VERSION="0.23.3"
VECTOR_VERSION="0.24.0"
_divider="--------------------------------------------------------------------------------"
_prompt=">>>"
_indent=" "
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: GCP Chronicle
description: Store observability events in [Google Chronicle](https://cloud.google.com/chronicle/docs/overview)
short: GCP Chronicle
title: GCP Chronicle Unstructured
description: Store unstructured log events in [Google Chronicle](https://cloud.google.com/chronicle/docs/overview)
short: GCP Chronicle Unstructured
kind: sink
layout: component
tags: ["gcp", "chronicle", "component", "sink"]
Expand Down
36 changes: 36 additions & 0 deletions website/content/en/highlights/2022-08-16-0-24-0-upgrade-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,14 @@ Vector's 0.24.0 release includes **breaking changes**:
3. [`codec` field on sink `encoding` must be specified explicitly](#sink-encoding-codec)
4. [`ndjson` on sink `encoding` is now `json` encoding + `newline_delimited` framing](#sink-encoding-json)
5. [VRL type definition updates](#vrl-type-def)
6. [Removal of deprecated transforms](#deprecated-transforms)

and **deprecations**:

1. [`internal_metrics` source cardinality metric change]
2. [Imminent removal of deprecated names for a select set of sources, transforms, and sinks](#deprecated-components)
3. [Deprecation of modulus operator](#mod-deprecation)
4. [Deprecation of the `geoip` transform](#geoip-deprecation)

We cover them below to help you upgrade quickly:

Expand Down Expand Up @@ -153,6 +155,31 @@ As suggested, you have a few options to solve errors like this.
3. Provide a default value if the function fails using the "error coalescing" operator (`??`), such as `to_string(msg) ?? "default"`
4. Handle the error manually by capturing both the return value and possible error, such as `result, err = to_string(msg)`

#### Removal of deprecated transforms {#deprecated-transforms}

The transforms that had been deprecated in-lieu of the `remap` transform have finally been dropped:

- `add_fields`
- `add_tags`
- `ansi_stripper`
- `aws_cloudwatch_logs_subscription_parser`
- `coercer`
- `concat`
- `grok_parser`
- `json_parser`
- `key_value_parser`
- `logfmt_parser`
- `merge`
- `regex_parser`
- `remove_fields`
- `remove_tags`
- `rename_fields`
- `split`
- `tokenizer`

See the [official deprecation notice in the v0.22.0
release](/highlights/2022-05-03-0-22-0-upgrade-guide) for migration instructions.

### Deprecation Notices

#### `internal_metrics` source cardinality metric change
Expand Down Expand Up @@ -205,3 +232,12 @@ Sinks:
- `new_relic_logs` (now `new_relic`)
- `prometheus` (now `prometheus_exporter`)
- `splunk_hec` (now `spelunk_hec_logs`)

#### Deprecation of the `geoip` transform {#geoip-deprecation}

The `geoip` transform has been deprecated in-lieu of new support for [`geoip` enrichment
tables](/docs/reference/configuration/global-options/#enrichment_tables.geoip). These can be used
with [VRL's enrichment table functions](/docs/reference/vrl/functions/#enrichment-functions) to
enrich events using a [GeoIP database](https://www.maxmind.com/en/geoip2-databases).

Additionally the `geoip` enrichment table has new support for `Connection-Type` databases.
4 changes: 4 additions & 0 deletions website/content/en/releases/0.24.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Vector v0.24.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.23"
_vector_version: "0.24"
_namespace: string | *"vector"
_controller_resource_type: string
_controller_resource_name: string | *_deployment_variant
Expand Down
Loading

0 comments on commit 43267b9

Please sign in to comment.