-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
* chore(releasing): Prepare v0.44.0 (#22192) * chore(releasing): Prepare v0.44.0 * Bump Alpine Linux base image to 3.21 * cargo update -p vrl * cargo vdev build release-cue * upgrade guide * commit website/cue/reference/releases/0.44.0.cue * bump versions * spelling fixes * update changelog * enforce changelog rendering order * tweak upgrade guide * add website prefix to the preparation branch so that we can get previews * address Jesse's review points * improve changelog change header and content alignment chore(releasing): docs feedback on v0.44.0 (#22193) chore(releasing): docs feedback * reset VRL to track main * bump vector version
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -509,3 +509,4 @@ teledisk | |
UMTS | ||
WCDMA | ||
XMODEM | ||
cbor |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "vector" | ||
version = "0.44.0" | ||
version = "0.45.0" | ||
authors = ["Vector Contributors <[email protected]>"] | ||
edition = "2021" | ||
description = "A lightweight and ultra-fast tool for building observability pipelines" | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM docker.io/alpine:3.20 AS builder | ||
FROM docker.io/alpine:3.21 AS builder | ||
|
||
WORKDIR /vector | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
date: "2025-01-13" | ||
title: "0.44 Upgrade Guide" | ||
description: "An upgrade guide that addresses breaking changes in 0.40.0" | ||
authors: [ "pront" ] | ||
release: "0.44.0" | ||
hide_on_release_notes: false | ||
badges: | ||
type: breaking change | ||
--- | ||
|
||
## Table of Contents | ||
|
||
Breaking Changes: | ||
|
||
1. [Clickhouse Sink `skip_unknown_fields` changes](#clickhouse-sink) | ||
2. [File source `ignored_header_bytes` and `lines` fix](#file-source) | ||
3. [Some VRL functions are now fallible](#vrl-breaking-changes) | ||
|
||
## Clickhouse Sink `skip_unknown_fields` changes {#clickhouse-sink} | ||
|
||
The [skip_unknown_fields](https://vector.dev/docs/reference/configuration/sinks/clickhouse/#skip_unknown_fields) behavior was changed: | ||
|
||
- `skip_unknown_fields` is `true`: enables skipping unknown fields (overrides the server's default) | ||
- `skip_unknown_fields` is `false`: enables "strict" mode and does not allow skipping unknown fields for the request, (overrides the | ||
server's | ||
default) | ||
- `skip_unknown_fields` is not set: follows the server's default | ||
|
||
Double-check your configuration and update the setting per above. | ||
|
||
## File source `ignored_header_bytes` and `lines` fix {##file-source} | ||
|
||
When sourcing from compressed files, `ignored_header_bytes` no longer looks at the compressed file's bytes (which would include the | ||
magic bytes for the compression header). Instead, it ignores the bytes from the uncompressed content. Similarly, `lines` no longer | ||
looks for new line delimiters in the compressed content, but the uncompressed content. | ||
|
||
## Some VRL functions are now fallible {#vrl-breaking-changes} | ||
|
||
`to_unix_timestamp`, `to_float`, and `uuid_v7` can now return an error if the supplied timestamp is unrepresentable as a nanosecond | ||
timestamp. Previously the function calls would panic. VRL scripts using the above functions need to be updated to handle potential | ||
errors. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: Vector v0.44.0 release notes | ||
weight: 21 | ||
--- |