repo
stringlengths
5
53
pr_number
int32
1
321k
task_type
stringclasses
2 values
issue_text
stringlengths
0
81.2k
pr_title
stringlengths
1
319
pr_body
stringlengths
0
105k
base_sha
stringlengths
40
40
head_sha
stringlengths
40
40
gold_diff
stringlengths
0
202M
changed_files
listlengths
0
100
review_threads
listlengths
0
100
test_patch
stringlengths
0
23.4M
merged
bool
1 class
vectordotdev/vector
25,603
issue_to_patch
feat(rfc): parse-first config interpolation
## Summary RFC proposing parse-first config interpolation for Vector. - Better error messages: field-path-aware errors (`unknown field at sinks.my_sink.retries`) instead of opaque serde messages - Spec-compliant configs: `${VAR}` placeholders must be quoted, making configs valid TOML/JSON/YAML - Cleaner secret backen...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md", "rfcs/_YYYY-MM-DD-issue#-title.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Keep unknown-field errors path-aware**\n\nThe RFC promises path-aware unknown-field errors here, but the later design decision makes unknown-field detection non-fatal and defers the authoritative failure back t...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Keep unknown-field errors path-aware** The RFC promises path-aware unknown-field errors here, but the later design decision makes unknown-field detection non-fatal and defers the authoritative failure back to serde because aliases ...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Keep unknown-field errors path-aware**\n\nThe RFC promises path-aware unknown-field errors here, but the later design decision makes unknown-field detection non-fatal and defers the authoritative failure back t...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document migration for unquoted secrets** Parsing before substitution means existing TOML such as the RFC’s own `port = SECRET[db.port]` example can no longer reach the secret/coercion pass at all, because it is invalid TOML until ...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document migration for unquoted secrets**\n\nParsing before substitution means existing TOML such as the RFC’s own `port = SECRET[db.port]` example can no longer reach the secret/coercion pass at all, because i...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document non-scalar interpolation breakages** The proposed coercion only covers scalar targets, so configs that currently use pre-parse interpolation to splice structured values, such as `inputs = [${VECTOR_INPUTS}]` where the envi...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document non-scalar interpolation breakages**\n\nThe proposed coercion only covers scalar targets, so configs that currently use pre-parse interpolation to splice structured values, such as `inputs = [${VECTOR_...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Include remote provider loading in the new pipeline** This implementation sketch only routes `Process::load()`/path loading through parse-first interpolation, but HTTP provider configs are loaded through `http_request_to_config_bui...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Include remote provider loading in the new pipeline**\n\nThis implementation sketch only routes `Process::load()`/path loading through parse-first interpolation, but HTTP provider configs are loaded through `ht...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Account for component-directory loading before validation** Running validation/coercion in the default `Process::load()` path does not have enough context for files loaded from `sources/`, `sinks/`, `transforms/`, etc.: the current...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Account for component-directory loading before validation**\n\nRunning validation/coercion in the default `Process::load()` path does not have enough context for files loaded from `sources/`, `sinks/`, `transfo...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
How about fields like [validation tokens](https://vector.dev/docs/reference/configuration/sources/splunk_hec/#valid_tokens) ? This would be an array of strings.
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "How about fields like [validation tokens](https://vector.dev/docs/reference/configuration/sources/splunk_hec/#valid_tokens) ? This would be an array of strings.", "path": "rfcs/2026-06-09-parse-first-config-interpolation.md", "hunk": "@@ -0,0 +1,246 @@\n+# RFC 2026-06-09 - Parse-First Conf...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
I agree with the overall intention of the RFC, but maybe you can elaborate on what this means?
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "I agree with the overall intention of the RFC, but maybe you can elaborate on what this means?", "path": "rfcs/2026-06-09-parse-first-config-interpolation.md", "hunk": "@@ -0,0 +1,246 @@\n+# RFC 2026-06-09 - Parse-First Config Interpolation\n+\n+## Motivation\n+\n+Vector's config loading p...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
Yes and this was the intention of the original developers, that is; whatever is substituted into the config must be the secret itself, i.e. a plain string. It should not be additional JSON/TOML/YAML. Maybe this could be rephrased to say how this type of substitution could be used to interpolate valid TOML/JSON and it ...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "Yes and this was the intention of the original developers, that is; whatever is substituted into the config must be the secret itself, i.e. a plain string. It should not be additional JSON/TOML/YAML.\n\nMaybe this could be rephrased to say how this type of substitution could be used to interpolate...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
would the syntax be the same? i.e. SECRET[backend.secret_name] ? so in the example below we could see +-- endpoint: String("SECRET[backend.secret_name]") ----> +-- endpoint: String("https://...") <- substituted ?
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "would the syntax be the same? i.e. SECRET[backend.secret_name] ? so in the example below we could see \n +-- endpoint: String(\"SECRET[backend.secret_name]\") ----> +-- endpoint: String(\"https://...\") <- substituted\n?", "path": "rfcs/2026-06-09-parse-first-config-interpolation.md...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
q: Why not operate on other types like integers as long as we are sure the secret is an integer and its corresponding value in the config is an integer too? Is it because within the secrets layer everything is parsed as a string?
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "q: Why not operate on other types like integers as long as we are sure the secret is an integer and its corresponding value in the config is an integer too? Is it because within the secrets layer everything is parsed as a string?", "path": "rfcs/2026-06-09-parse-first-config-interpolation.md",...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Account for YAML structural interpolation silently changing** For YAML configs, examples like `inputs: [${VECTOR_INPUTS}]` are already syntactically valid before interpolation, so the parse-first walk will parse them as an array co...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Account for YAML structural interpolation silently changing**\n\nFor YAML configs, examples like `inputs: [${VECTOR_INPUTS}]` are already syntactically valid before interpolation, so the parse-first walk will p...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Collect secrets from the parsed string leaves** Leaving secret placeholder collection unchanged keeps the current raw-text scan (`collect_secret_keys(&config_string, ...)` in `src/config/loading/secret.rs`) even though substitution...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Collect secrets from the parsed string leaves**\n\nLeaving secret placeholder collection unchanged keeps the current raw-text scan (`collect_secret_keys(&config_string, ...)` in `src/config/loading/secret.rs`) ...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Restore the required RFC template sections** The RFC process in `rfcs/README.md` instructs authors to copy `_YYYY-MM-DD-issue#-title.md` and says to "Do not omit any sections", but this new RFC uses a custom structure and lacks req...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Restore the required RFC template sections**\n\nThe RFC process in `rfcs/README.md` instructs authors to copy `_YYYY-MM-DD-issue#-title.md` and says to \"Do not omit any sections\", but this new RFC uses a cust...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Coerce secret backend configs before fetching** With the proposed order, `fetch secrets` happens before `validate/coerce`, but the current loader must deserialize the `secret` section before it can fetch anything (`load_from_paths_...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Coerce secret backend configs before fetching**\n\nWith the proposed order, `fetch secrets` happens before `validate/coerce`, but the current loader must deserialize the `secret` section before it can fetch any...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
I would want to print a notice when this happens and deprecate this wrapping for future versions. Also, how do you plan to detect already-quoted placeholders to avoid adding extra quotes?
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "I would want to print a notice when this happens and deprecate this wrapping for future versions.\nAlso, how do you plan to detect already-quoted placeholders to avoid adding extra quotes?", "path": "rfcs/2026-06-09-parse-first-config-interpolation.md", "hunk": "@@ -0,0 +1,309 @@\n+# RFC 2...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
We have long wanted to replace the use of the TOML `Value` type internally for configuration with JSON `Value` since the former lacks a null type that has caused a number of problems. I would expect that is also out of scope for this RFC but becomes simpler after this is done.
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "We have long wanted to replace the use of the TOML `Value` type internally for configuration with JSON `Value` since the former lacks a null type that has caused a number of problems. I would expect that is also out of scope for this RFC but becomes simpler after this is done.", "path": "rfcs/...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
I am curious how you plan to implement JSON Schema validation over the `toml::Value` type.
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "I am curious how you plan to implement JSON Schema validation over the `toml::Value` type.", "path": "rfcs/2026-06-09-parse-first-config-interpolation.md", "hunk": "@@ -0,0 +1,309 @@\n+# RFC 2026-06-09 - Parse-First Config Interpolation\n+\n+Parse the config document into a native value tr...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
That _is_ better wording, yes.
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/_YYYY-MM-DD-issue#-title.md b/rfcs/_YYYY-MM-DD-issue#-title.md index 0629f626a591d..5716ca7ed8026 100644 --- a/rfcs/_YYYY-MM-DD-issue#-title.md +++ b/rfcs/_YYYY-MM-DD-issue#-title.md @@ -20,7 +20,7 @@ One paragraph description of the change. - List work that is completely out of scope. Use this to ...
[ "rfcs/_YYYY-MM-DD-issue#-title.md" ]
[ { "comment": "That _is_ better wording, yes.", "path": "rfcs/_YYYY-MM-DD-issue#-title.md", "hunk": "@@ -20,7 +20,7 @@ One paragraph description of the change.\n \n - List work that is completely out of scope. Use this to keep discussions focused. Please note the \"future changes\" section at the bottom....
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Narrow the envsubst migration guidance** This should not describe `envsubst` as a universal escape hatch for Vector env interpolation. I checked `envsubst --help`, which only replaces references of the form `$VARIABLE` or `${VARIAB...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Narrow the envsubst migration guidance**\n\nThis should not describe `envsubst` as a universal escape hatch for Vector env interpolation. I checked `envsubst --help`, which only replaces references of the form ...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve the HOSTNAME fallback in tree interpolation** When env interpolation moves into the new string-leaf walker, the plan also needs to carry over the synthetic `HOSTNAME` behavior from the current loader: `prepare_input` inser...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve the HOSTNAME fallback in tree interpolation**\n\nWhen env interpolation moves into the new string-leaf walker, the plan also needs to carry over the synthetic `HOSTNAME` behavior from the current loade...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Apply YAML merges before walking the value tree** The parse-first pipeline needs an explicit YAML `<<` merge step before interpolation/coercion. The current YAML loader calls `serde_yaml::Value::apply_merge()` before deserializing ...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Apply YAML merges before walking the value tree**\n\nThe parse-first pipeline needs an explicit YAML `<<` merge step before interpolation/coercion. The current YAML loader calls `serde_yaml::Value::apply_merge(...
true
vectordotdev/vector
25,603
comment_to_fix
feat(rfc): parse-first config interpolation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Use a null-capable value tree before parse-first ships** Treating `toml::Value`'s missing null support as a future improvement makes the proposed pipeline a breaking change for JSON/YAML configs that explicitly set optional fields ...
212651b08e066b775a8e5e253c1d37c3715e3476
aff3aef2149a13a7dec67f02433cc81ec98b73fd
diff --git a/rfcs/2026-06-09-parse-first-config-interpolation.md b/rfcs/2026-06-09-parse-first-config-interpolation.md new file mode 100644 index 0000000000000..17c32695a1b8e --- /dev/null +++ b/rfcs/2026-06-09-parse-first-config-interpolation.md @@ -0,0 +1,322 @@ +# RFC 2026-06-09 - Parse-First Config Interpolation + ...
[ "rfcs/2026-06-09-parse-first-config-interpolation.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Use a null-capable value tree before parse-first ships**\n\nTreating `toml::Value`'s missing null support as a future improvement makes the proposed pipeline a breaking change for JSON/YAML configs that explici...
true
vectordotdev/vector
25,554
issue_to_patch
chore(website): remove codename field from release definitions and template
## Summary Removes the unused `codename` field from all release CUE definitions, the release schema, the CUE generator, and the release page HTML template. ## Vector configuration NA ## How did you test this PR? NA ## Change Type - [ ] Bug fix - [ ] New feature - [ ] Dependencies - [x] Non-functional (chore, ref...
ae344accec636e1649c6403c9fc68e92bfbfa2e3
00a6f3dfcf9563d24b6b934d082c1caa0c04f62e
diff --git a/vdev/src/commands/release/generate_cue.rs b/vdev/src/commands/release/generate_cue.rs index f68c495c73ec3..882cf3bde4943 100644 --- a/vdev/src/commands/release/generate_cue.rs +++ b/vdev/src/commands/release/generate_cue.rs @@ -514,7 +514,6 @@ fn render_release_cue( \n\ releases: \"{ver...
[ "vdev/src/commands/release/generate_cue.rs", "website/cue/reference/releases.cue", "website/cue/reference/releases/0.10.0.cue", "website/cue/reference/releases/0.11.0.cue", "website/cue/reference/releases/0.12.0.cue", "website/cue/reference/releases/0.14.0.cue", "website/cue/reference/releases/0.15.0.cu...
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve non-empty historical release codenames**\n\nThis makes the change user-visible for historical releases, not just a schema cleanup: the removed block was the only renderer for `$release.codename`, and s...
true
vectordotdev/vector
25,554
comment_to_fix
chore(website): remove codename field from release definitions and template
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve non-empty historical release codenames** This makes the change user-visible for historical releases, not just a schema cleanup: the removed block was the only renderer for `$release.codename`, and several entries deleted i...
ae344accec636e1649c6403c9fc68e92bfbfa2e3
00a6f3dfcf9563d24b6b934d082c1caa0c04f62e
diff --git a/website/layouts/releases/single.html b/website/layouts/releases/single.html index c1708ea955a9c..ea70286103860 100644 --- a/website/layouts/releases/single.html +++ b/website/layouts/releases/single.html @@ -28,18 +28,6 @@ {{ end }} <div> - {{ with $release.codename }} - <p class="inl...
[ "website/layouts/releases/single.html" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve non-empty historical release codenames**\n\nThis makes the change user-visible for historical releases, not just a schema cleanup: the removed block was the only renderer for `$release.codename`, and s...
true
vectordotdev/vector
25,554
comment_to_fix
chore(website): remove codename field from release definitions and template
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Remove the remaining codename before closing the schema** Because the website build exports every `website/cue/**/*.cue` file (see `scripts/cue.sh`/`website/Dockerfile`), removing `codename` from the closed `#Release` schema makes ...
ae344accec636e1649c6403c9fc68e92bfbfa2e3
00a6f3dfcf9563d24b6b934d082c1caa0c04f62e
diff --git a/website/cue/reference/releases.cue b/website/cue/reference/releases.cue index f4679becfcdc9..92c95b56ec17d 100644 --- a/website/cue/reference/releases.cue +++ b/website/cue/reference/releases.cue @@ -30,7 +30,6 @@ releases: { #Release: { version: string - codename?: string date: ...
[ "website/cue/reference/releases.cue" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Remove the remaining codename before closing the schema**\n\nBecause the website build exports every `website/cue/**/*.cue` file (see `scripts/cue.sh`/`website/Dockerfile`), removing `codename` from the closed ...
true
vectordotdev/vector
25,469
issue_to_patch
chore(ci): bump the artifact group across 1 directory with 2 updates
Bumps the artifact group with 2 updates in the / directory: [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/upload-artifact` from 7.0.0 to 7.0.1 <details> <summary>Release notes</summary> <p><em>Source...
ae344accec636e1649c6403c9fc68e92bfbfa2e3
3aea8722ced19bd81d8c35153a2a062712f7b7f7
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 9cc8e3d22d590..636c59e2cf888 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -71,7 +71,7 @@ jobs: ref: ${{ inputs.ref }} - name: Download all coverage artifacts - uses: actio...
[ ".github/workflows/coverage.yml", ".github/workflows/integration.yml", ".github/workflows/unit-tests.yml" ]
[]
true
vectordotdev/vector
25,584
issue_to_patch
chore(deps): bump the serde group across 1 directory with 2 updates
Bumps the serde group with 2 updates in the / directory: [serde_with](https://github.com/jonasbb/serde_with) and [serde_json](https://github.com/serde-rs/json). Updates `serde_with` from 3.20.0 to 3.21.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/jonasbb/serde_with/relea...
984aa76b77a0c9fb22fcfb161b78247847912452
1d8ecf6aa843d8c7893ccc2183e8a0a029af7bcf
diff --git a/Cargo.lock b/Cargo.lock index f5dd155cea584..01903f6c941aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10249,9 +10249,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.149" +version = "1.0.150" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "83fc03947...
[ "Cargo.lock", "Cargo.toml" ]
[]
true
vectordotdev/vector
25,251
issue_to_patch
feat(startup): add --raise-fd-limit CLI flag to raise file descriptor soft limit
## Summary Add an opt-in `--raise-fd-limit` CLI flag (and `VECTOR_RAISE_FD_LIMIT` env var) that raises the RLIMIT_NOFILE soft limit to the hard limit at startup, preventing "Too many open files (os error 24)" errors when Vector monitors large numbers of log files — common in Kubernetes environments. - On Linux, r...
984aa76b77a0c9fb22fcfb161b78247847912452
523c9e888f9b9da628ea0895b052cea8a811c9a6
diff --git a/Cargo.toml b/Cargo.toml index 33c4f6d333011..2c993e1b1b312 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -473,7 +473,8 @@ quick-xml = { version = "0.31", default-features = false, features = ["serialize rdkafka = { workspace = true, features = ["cmake_build"], optional = true } [target.'cfg(unix)'.depend...
[ "Cargo.toml", "changelog.d/raise_fd_limit_cli_flag.fix.md", "src/app.rs", "src/cli.rs" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Set finite hard limit in macOS fallback**\n\nWhen `getrlimit` returns `hard = RLIM_INFINITY` on macOS (the exact case described above this block), the fallback still invokes `setrlimit` with `rlim_max = hard`. ...
true
vectordotdev/vector
25,251
comment_to_fix
feat(startup): add --raise-fd-limit CLI flag to raise file descriptor soft limit
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Set finite hard limit in macOS fallback** When `getrlimit` returns `hard = RLIM_INFINITY` on macOS (the exact case described above this block), the fallback still invokes `setrlimit` with `rlim_max = hard`. That means the second ca...
984aa76b77a0c9fb22fcfb161b78247847912452
523c9e888f9b9da628ea0895b052cea8a811c9a6
diff --git a/src/cli.rs b/src/cli.rs index 4c492bd62c6f0..5c07193a230b7 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -260,6 +260,15 @@ pub struct RootOpts { /// `--watch-config`. #[arg(long, env = "VECTOR_ALLOW_EMPTY_CONFIG", default_value = "false")] pub allow_empty_config: bool, + + /// Raise the fil...
[ "src/cli.rs" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Set finite hard limit in macOS fallback**\n\nWhen `getrlimit` returns `hard = RLIM_INFINITY` on macOS (the exact case described above this block), the fallback still invokes `setrlimit` with `rlim_max = hard`. ...
true
vectordotdev/vector
25,251
comment_to_fix
feat(startup): add --raise-fd-limit CLI flag to raise file descriptor soft limit
Should we expose this option as a CLI argument instead? We can consider changing the default behavior later, it needs some more consideration.
984aa76b77a0c9fb22fcfb161b78247847912452
523c9e888f9b9da628ea0895b052cea8a811c9a6
diff --git a/src/cli.rs b/src/cli.rs index 4c492bd62c6f0..5c07193a230b7 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -260,6 +260,15 @@ pub struct RootOpts { /// `--watch-config`. #[arg(long, env = "VECTOR_ALLOW_EMPTY_CONFIG", default_value = "false")] pub allow_empty_config: bool, + + /// Raise the fil...
[ "src/cli.rs" ]
[ { "comment": "Should we expose this option as a CLI argument instead? We can consider changing the default behavior later, it needs some more consideration.", "path": "src/cli.rs", "hunk": "@@ -287,10 +287,96 @@ impl RootOpts {\n }\n }\n \n+ #[cfg(unix)]\n+ raise_file_d...
true
vectordotdev/vector
25,251
comment_to_fix
feat(startup): add --raise-fd-limit CLI flag to raise file descriptor soft limit
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Serialize RLIMIT_NOFILE-mutating tests** These tests mutate `RLIMIT_NOFILE`, which is process-global state, but they are plain `#[test]` functions and will run concurrently under the default `cargo test` thread pool. If `test_raise...
984aa76b77a0c9fb22fcfb161b78247847912452
523c9e888f9b9da628ea0895b052cea8a811c9a6
diff --git a/src/cli.rs b/src/cli.rs index 4c492bd62c6f0..5c07193a230b7 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -260,6 +260,15 @@ pub struct RootOpts { /// `--watch-config`. #[arg(long, env = "VECTOR_ALLOW_EMPTY_CONFIG", default_value = "false")] pub allow_empty_config: bool, + + /// Raise the fil...
[ "src/cli.rs" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Serialize RLIMIT_NOFILE-mutating tests**\n\nThese tests mutate `RLIMIT_NOFILE`, which is process-global state, but they are plain `#[test]` functions and will run concurrently under the default `cargo test` thr...
true
vectordotdev/vector
25,251
comment_to_fix
feat(startup): add --raise-fd-limit CLI flag to raise file descriptor soft limit
This is a process-wide mutation and it might cause issues with other tests that touch files. We can probably test in a subprocess or open to other suggestions.
984aa76b77a0c9fb22fcfb161b78247847912452
523c9e888f9b9da628ea0895b052cea8a811c9a6
diff --git a/src/cli.rs b/src/cli.rs index 4c492bd62c6f0..5c07193a230b7 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -260,6 +260,15 @@ pub struct RootOpts { /// `--watch-config`. #[arg(long, env = "VECTOR_ALLOW_EMPTY_CONFIG", default_value = "false")] pub allow_empty_config: bool, + + /// Raise the fil...
[ "src/cli.rs" ]
[ { "comment": "This is a process-wide mutation and it might cause issues with other tests that touch files. We can probably test in a subprocess or open to other suggestions.", "path": "src/cli.rs", "hunk": "@@ -287,10 +296,98 @@ impl RootOpts {\n }\n }\n \n+ #[cfg(unix)]\n+ ...
true
vectordotdev/vector
25,251
comment_to_fix
feat(startup): add --raise-fd-limit CLI flag to raise file descriptor soft limit
This is called before `init_logging` so trace events won't be emitted.
984aa76b77a0c9fb22fcfb161b78247847912452
523c9e888f9b9da628ea0895b052cea8a811c9a6
diff --git a/src/cli.rs b/src/cli.rs index 4c492bd62c6f0..5c07193a230b7 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -260,6 +260,15 @@ pub struct RootOpts { /// `--watch-config`. #[arg(long, env = "VECTOR_ALLOW_EMPTY_CONFIG", default_value = "false")] pub allow_empty_config: bool, + + /// Raise the fil...
[ "src/cli.rs" ]
[ { "comment": "This is called before `init_logging` so trace events won't be emitted. ", "path": "src/cli.rs", "hunk": "@@ -287,10 +296,98 @@ impl RootOpts {\n }\n }\n \n+ #[cfg(unix)]\n+ if self.raise_fd_limit {", "resolving_sha": "523c9e888f9b9da628ea0895b052cea8a8...
true
vectordotdev/vector
25,495
issue_to_patch
fix(dnstap source): prevent error message when DOQ is encountered
## Summary Prevents an error message when DoQ - a known socket protocol is encountered. This also changes the code to always support whatever is supported in the proto file. ## Change Type - [x] Bug fix - [ ] New feature - [ ] Dependencies - [ ] Non-functional (chore, refactoring, docs) - [ ] Performance ...
cdd6ebb174034b7fcb939fb1249911fad5b3006c
0ed3de7ac6cf4c75626d12ca1202a53ef857a37f
diff --git a/changelog.d/25495_dnstap_parser_doq_support.fix.md b/changelog.d/25495_dnstap_parser_doq_support.fix.md new file mode 100644 index 0000000000000..a36198bd34b70 --- /dev/null +++ b/changelog.d/25495_dnstap_parser_doq_support.fix.md @@ -0,0 +1,4 @@ +Added support for DOQ socket protocol in dnstap source. Thi...
[ "changelog.d/25495_dnstap_parser_doq_support.fix.md", "lib/vector-vrl/dnstap-parser/src/parser.rs" ]
[]
true
vectordotdev/vector
25,606
issue_to_patch
chore(dev): bump rust toolchain to 1.95 and fix clippy lints
## Summary Bumps the Rust toolchain from 1.92 to 1.95 and resolves the resulting Clippy lint failures across the codebase. All changes are semantically equivalent idiom improvements (redundant `into_iter()`, `map_or`, `is_some_and`, match guards, `sort_unstable_by_key`, etc.). ## Vector configuration NA ## How did ...
dcd4f03898393bf6482b9fe15aee473f096bfec9
80c30cddeb0fb2fe46638663bcf9e1431a72f620
diff --git a/lib/vector-buffers/src/variants/disk_v2/common.rs b/lib/vector-buffers/src/variants/disk_v2/common.rs index c7b4c2d4818bc..f27b8a2b13a90 100644 --- a/lib/vector-buffers/src/variants/disk_v2/common.rs +++ b/lib/vector-buffers/src/variants/disk_v2/common.rs @@ -339,7 +339,7 @@ where if max_record_si...
[ "lib/codecs/tests/native.rs", "lib/vector-buffers/src/variants/disk_v2/common.rs", "lib/vector-buffers/src/variants/disk_v2/ledger.rs", "lib/vector-config/src/schema/visitors/merge.rs", "lib/vector-core/src/config/global_options.rs", "lib/vector-core/src/config/mod.rs", "lib/vector-core/src/event/lua/me...
[ { "comment": "This had to change because `BTreeMap::merge` is now an unstable method", "path": "lib/vector-config/src/schema/visitors/merge.rs", "hunk": "@@ -262,7 +262,7 @@ where\n K: Clone + Eq + Ord,\n V: Clone + Mergeable,\n {\n- destination.merge(source);\n+ Mergeable::merge(destinati...
diff --git a/lib/codecs/tests/native.rs b/lib/codecs/tests/native.rs index d0c6329c35090..0fb71ee02b932 100644 --- a/lib/codecs/tests/native.rs +++ b/lib/codecs/tests/native.rs @@ -202,7 +202,7 @@ fn rebuild_proto_fixtures() { fn fixtures_match(suffix: &str) { let json_entries = list_fixtures("json", suffix); ...
true
vectordotdev/vector
25,606
comment_to_fix
chore(dev): bump rust toolchain to 1.95 and fix clippy lints
This had to change because `BTreeMap::merge` is now an unstable method
dcd4f03898393bf6482b9fe15aee473f096bfec9
80c30cddeb0fb2fe46638663bcf9e1431a72f620
diff --git a/lib/vector-config/src/schema/visitors/merge.rs b/lib/vector-config/src/schema/visitors/merge.rs index 4d259611b5549..6445c227c65dd 100644 --- a/lib/vector-config/src/schema/visitors/merge.rs +++ b/lib/vector-config/src/schema/visitors/merge.rs @@ -262,7 +262,7 @@ where K: Clone + Eq + Ord, V: Clo...
[ "lib/vector-config/src/schema/visitors/merge.rs" ]
[ { "comment": "This had to change because `BTreeMap::merge` is now an unstable method", "path": "lib/vector-config/src/schema/visitors/merge.rs", "hunk": "@@ -262,7 +262,7 @@ where\n K: Clone + Eq + Ord,\n V: Clone + Mergeable,\n {\n- destination.merge(source);\n+ Mergeable::merge(destinati...
true
vectordotdev/vector
25,601
issue_to_patch
fix(tests): add debug cfg gate to test for debug builds
## Summary https://github.com/vectordotdev/vector/pull/25489 modified test behaviour in debug vs release builds, but omitted a cfg gate for debug_assertions that now causes tests to fail in release mode with: ``` TRY 4 FAIL [ 0.006s] (2812/2926) vector-core fanout::tests::fanout_panics_on_empty_event_array_in_de...
9acf0f838eda502ab6174428ac83b78c6cfa609a
257314ee9a9845ea4645e7a0405fe7f7f9c528c3
diff --git a/lib/vector-core/src/fanout.rs b/lib/vector-core/src/fanout.rs index 500b6b8583c51..2d680b22949e9 100644 --- a/lib/vector-core/src/fanout.rs +++ b/lib/vector-core/src/fanout.rs @@ -870,6 +870,7 @@ mod tests { .expect("should not fail"); } + #[cfg(debug_assertions)] #[tokio::test]...
[ "lib/vector-core/src/fanout.rs" ]
[]
true
vectordotdev/vector
25,561
issue_to_patch
feat(databricks_zerobus sink): add user_agent config option
## Summary Add an optional `user_agent` config field whose value is appended to the `user-agent` header sent to Databricks via the Zerobus SDK's `application_name`. The header always identifies Vector (`Vector/<version>`), preserving the SDK's own `zerobus-sdk-rs/<version>` prefix; the configured value is appended...
cdd6ebb174034b7fcb939fb1249911fad5b3006c
24d9a8a946bfb9e847bc2fada56f321afb6b2de3
diff --git a/changelog.d/25561_databricks_zerobus_user_agent.enhancement.md b/changelog.d/25561_databricks_zerobus_user_agent.enhancement.md new file mode 100644 index 0000000000000..481d278bee63d --- /dev/null +++ b/changelog.d/25561_databricks_zerobus_user_agent.enhancement.md @@ -0,0 +1,3 @@ +The `databricks_zerobus...
[ "changelog.d/25561_databricks_zerobus_user_agent.enhancement.md", "src/sinks/databricks_zerobus/config.rs", "src/sinks/databricks_zerobus/service.rs", "website/cue/reference/components/sinks/generated/databricks_zerobus.cue" ]
[]
true
vectordotdev/vector
25,591
issue_to_patch
fix(clickhouse sink): use ClickHouse Identifier query parameters for safe database/table names
## Summary The ClickHouse sink was not escaping the `database` identifier at all, and was using the wrong escape sequence (`\"`) for the `table` identifier. ClickHouse's double-quoted identifiers follow SQL standard: the only escape is doubling the quote (`""`). Using `\"` is interpreted by ClickHouse as an escaped qu...
cdd6ebb174034b7fcb939fb1249911fad5b3006c
2e8b8a560309f3180392f7db1f76e0c944aa838a
diff --git a/changelog.d/25591_clickhouse_identifier_escaping.fix.md b/changelog.d/25591_clickhouse_identifier_escaping.fix.md new file mode 100644 index 0000000000000..7b75daeaaaafd --- /dev/null +++ b/changelog.d/25591_clickhouse_identifier_escaping.fix.md @@ -0,0 +1,3 @@ +Fixed SQL injection via identifier names in ...
[ "changelog.d/25591_clickhouse_identifier_escaping.fix.md", "src/sinks/clickhouse/service.rs" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Do not switch ClickHouse identifiers to quote doubling**\n\nFor ClickHouse database or table names that contain a literal `\"` (including the injection payload this change is meant to neutralize), replacing quo...
true
vectordotdev/vector
25,591
comment_to_fix
fix(clickhouse sink): use ClickHouse Identifier query parameters for safe database/table names
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Do not switch ClickHouse identifiers to quote doubling** For ClickHouse database or table names that contain a literal `"` (including the injection payload this change is meant to neutralize), replacing quotes with `""` does not fo...
cdd6ebb174034b7fcb939fb1249911fad5b3006c
2e8b8a560309f3180392f7db1f76e0c944aa838a
diff --git a/src/sinks/clickhouse/service.rs b/src/sinks/clickhouse/service.rs index 53b09270fbdfd..3c8b034715396 100644 --- a/src/sinks/clickhouse/service.rs +++ b/src/sinks/clickhouse/service.rs @@ -141,17 +141,18 @@ fn set_uri_query( insert_random_shard: bool, query_settings: QuerySettingsConfig, ) -> cra...
[ "src/sinks/clickhouse/service.rs" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Do not switch ClickHouse identifiers to quote doubling**\n\nFor ClickHouse database or table names that contain a literal `\"` (including the injection payload this change is meant to neutralize), replacing quo...
true
vectordotdev/vector
25,586
issue_to_patch
feat(databricks_zerobus sink): add Arrow IPC compression option
## Summary Adds an optional Arrow IPC compression setting to the `databricks_zerobus` sink. Users can now compress Arrow Flight payloads before they are sent to the Zerobus ingestion service by setting `stream_options.compression` to `lz4_frame` or `zstd`. When the option is omitted, batches are sent uncompressed (the...
1d28ae80652eb8c2fe52b75c8e8fb281cf9109ec
c2706b30439c840ff549eb7ada203ba5f2c478cf
diff --git a/Cargo.toml b/Cargo.toml index 858ad4a298cf1..e93d28ca7adf6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -931,7 +931,7 @@ sinks-chronicle = [] sinks-clickhouse = ["dep:nom", "dep:rust_decimal", "codecs-arrow"] sinks-console = [] sinks-databend = ["dep:databend-client"] -sinks-databricks-zerobus = ["dep:da...
[ "Cargo.toml", "changelog.d/databricks_zerobus_compression.enhancement.md", "src/sinks/databricks_zerobus/config.rs", "src/sinks/databricks_zerobus/service.rs", "website/cue/reference/components/sinks/generated/databricks_zerobus.cue" ]
[ { "comment": "the common pattern in vector is to have Compression::None as an option and the default, that way you don't need to make compression optional in the config. ", "path": "src/sinks/databricks_zerobus/config.rs", "hunk": "@@ -46,6 +46,26 @@ impl DatabricksAuthentication {\n }\n }\n \n+/// ...
true
vectordotdev/vector
25,586
comment_to_fix
feat(databricks_zerobus sink): add Arrow IPC compression option
the common pattern in vector is to have Compression::None as an option and the default, that way you don't need to make compression optional in the config.
1d28ae80652eb8c2fe52b75c8e8fb281cf9109ec
c2706b30439c840ff549eb7ada203ba5f2c478cf
diff --git a/src/sinks/databricks_zerobus/config.rs b/src/sinks/databricks_zerobus/config.rs index 7a4cb22ff1d00..01128d8bd2bd9 100644 --- a/src/sinks/databricks_zerobus/config.rs +++ b/src/sinks/databricks_zerobus/config.rs @@ -46,6 +46,30 @@ impl DatabricksAuthentication { } } +/// Arrow IPC compression codec...
[ "src/sinks/databricks_zerobus/config.rs" ]
[ { "comment": "the common pattern in vector is to have Compression::None as an option and the default, that way you don't need to make compression optional in the config. ", "path": "src/sinks/databricks_zerobus/config.rs", "hunk": "@@ -46,6 +46,26 @@ impl DatabricksAuthentication {\n }\n }\n \n+/// ...
true
vectordotdev/vector
25,586
comment_to_fix
feat(databricks_zerobus sink): add Arrow IPC compression option
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Enable Arrow IPC compression features** When `stream_options.compression` is set to `zstd` or `lz4_frame`, this passes a non-`None` codec into the Arrow Flight stream, but the repo only enables the Arrow crate with `features = ["ip...
1d28ae80652eb8c2fe52b75c8e8fb281cf9109ec
c2706b30439c840ff549eb7ada203ba5f2c478cf
diff --git a/src/sinks/databricks_zerobus/service.rs b/src/sinks/databricks_zerobus/service.rs index 8a4c2f62e7597..5e29b26b787b1 100644 --- a/src/sinks/databricks_zerobus/service.rs +++ b/src/sinks/databricks_zerobus/service.rs @@ -441,7 +441,7 @@ impl ZerobusService { // own recovery budget is exhausted....
[ "src/sinks/databricks_zerobus/service.rs" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Enable Arrow IPC compression features**\n\nWhen `stream_options.compression` is set to `zstd` or `lz4_frame`, this passes a non-`None` codec into the Arrow Flight stream, but the repo only enables the Arrow cra...
true
vectordotdev/vector
25,317
issue_to_patch
feat(metrics): Add per-component CPU usage metric (poll-hook)
## Summary Alternative implementation of #25185. Same metric (`component_cpu_usage_ns_total`); the difference is **how** CPU time is sampled for the concurrent transform path: it is now hooked onto the spawned task's `Future::poll` boundary via a thin `CpuTimedFuture` adapter, rather than measured inline inside the ...
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/Cargo.lock b/Cargo.lock index d7705d2cbe09e..d3610b6df4e2c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -13078,6 +13078,7 @@ dependencies = [ "warp", "windows 0.58.0", "windows-service", + "windows-sys 0.52.0", "wiremock", "zstd 0.13.2", ] diff --git a/Cargo.toml b/Cargo.toml index 6d9ac547423bd....
[ "Cargo.lock", "Cargo.toml", "changelog.d/OPA-5012-add-per-component-cpu-metric.feature.md", "lib/vector-common/src/internal_event/metric_name.rs", "src/config/transform.rs", "src/cpu_time.rs", "src/lib.rs", "src/topology/builder.rs", "src/transforms/aws_ec2_metadata.rs", "src/transforms/throttle/r...
[ { "comment": "## check-spelling / Unrecognized Spelling\n\n[promql](#security-tab) is not a recognized word\n\n[Show more details](https://github.com/vectordotdev/vector/security/code-scanning/21940)", "path": "rfcs/2026-04-13-component-cpu-metric.md", "hunk": "@@ -0,0 +1,197 @@\n+# RFC 2026-04-13 - Per...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
**<sub><sub>![P3 Badge](https://img.shields.io/badge/P3-lightgrey?style=flat)</sub></sub> Update CPU metric docs to include task transforms** The new implementation records `component_cpu_usage_ns_total` for task transforms as well (see `build_task_transform` now wrapping the task future with `.cpu_timed(...)`), but ...
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/website/cue/reference/components/sources/internal_metrics.cue b/website/cue/reference/components/sources/internal_metrics.cue index 1361148420fe5..cabfbcc861c16 100644 --- a/website/cue/reference/components/sources/internal_metrics.cue +++ b/website/cue/reference/components/sources/internal_metrics.cue @@ ...
[ "website/cue/reference/components/sources/internal_metrics.cue" ]
[ { "comment": "**<sub><sub>![P3 Badge](https://img.shields.io/badge/P3-lightgrey?style=flat)</sub></sub> Update CPU metric docs to include task transforms**\n\nThe new implementation records `component_cpu_usage_ns_total` for task transforms as well (see `build_task_transform` now wrapping the task future with ...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
nit: could just instantiate the `counter!` here like all the other fields.
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/src/topology/builder.rs b/src/topology/builder.rs index 9caa9e2f11378..96c8893e611cb 100644 --- a/src/topology/builder.rs +++ b/src/topology/builder.rs @@ -8,6 +8,7 @@ use std::{ use futures::{FutureExt, StreamExt, TryStreamExt, stream::FuturesOrdered}; use futures_util::stream::FuturesUnordered; +use ...
[ "src/topology/builder.rs" ]
[ { "comment": "nit: could just instantiate the `counter!` here like all the other fields.", "path": "src/topology/builder.rs", "hunk": "@@ -490,6 +496,7 @@ impl<'a> Builder<'a> {\n merged_schema_definition: merged_definition.clone(),\n schema: self.config.schema,\n ...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
At some point it might make more sense to just pass `self`.
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/src/transforms/throttle/transform.rs b/src/transforms/throttle/transform.rs index 11647c65b2f4c..f39b8abb48f30 100644 --- a/src/transforms/throttle/transform.rs +++ b/src/transforms/throttle/transform.rs @@ -3,6 +3,7 @@ use std::{hash::Hash, num::NonZeroU32, pin::Pin, time::Duration}; use async_stream::st...
[ "src/transforms/throttle/transform.rs" ]
[ { "comment": "At some point it might make more sense to just pass `self`.", "path": "src/transforms/throttle/transform.rs", "hunk": "@@ -72,7 +75,12 @@ where\n where\n K: Hash + Eq + Clone + Send + Sync + 'static,\n {\n- RateLimiterRunner::start(self.quota, self.clock.clone(), sel...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
If I'm reading right, all calls to `cpu_timed` follow a `tokio::spawn`. What about providing a wrapper for that whole `tokio::spawn(future).cpu_timed(counter)` sequence instead, like `fn spawn_timed(…)`? It will also make it more visible when a task is spawned _without_ adding the timer accounting.
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/src/cpu_time.rs b/src/cpu_time.rs new file mode 100644 index 0000000000000..7e26210e68193 --- /dev/null +++ b/src/cpu_time.rs @@ -0,0 +1,383 @@ +//! Per-component CPU-time measurement primitives. +//! +//! This module provides the building blocks for attributing CPU time to +//! individual Vector component...
[ "src/cpu_time.rs" ]
[ { "comment": "If I'm reading right, all calls to `cpu_timed` follow a `tokio::spawn`. What about providing a wrapper for that whole `tokio::spawn(future).cpu_timed(counter)` sequence instead, like `fn spawn_timed(…)`? It will also make it more visible when a task is spawned _without_ adding the timer accounting...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
It's trivial, but consider flipping these operations to let `this` go straight from `project()` to usage.
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/src/cpu_time.rs b/src/cpu_time.rs new file mode 100644 index 0000000000000..7e26210e68193 --- /dev/null +++ b/src/cpu_time.rs @@ -0,0 +1,383 @@ +//! Per-component CPU-time measurement primitives. +//! +//! This module provides the building blocks for attributing CPU time to +//! individual Vector component...
[ "src/cpu_time.rs" ]
[ { "comment": "It's trivial, but consider flipping these operations to let `this` go straight from `project()` to usage.", "path": "src/cpu_time.rs", "hunk": "@@ -0,0 +1,251 @@\n+use std::{\n+ future::Future,\n+ pin::Pin,\n+ task::{Context, Poll},\n+ time::Duration,\n+};\n+\n+use metrics::Cou...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Align register_counter signature across cfg branches** `register_counter` takes no arguments on Linux/macOS/Windows but the fallback definition adds a required `&'static str` parameter, while `build_transforms` calls `crate::cpu_ti...
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/src/cpu_time.rs b/src/cpu_time.rs new file mode 100644 index 0000000000000..7e26210e68193 --- /dev/null +++ b/src/cpu_time.rs @@ -0,0 +1,383 @@ +//! Per-component CPU-time measurement primitives. +//! +//! This module provides the building blocks for attributing CPU time to +//! individual Vector component...
[ "src/cpu_time.rs" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Align register_counter signature across cfg branches**\n\n`register_counter` takes no arguments on Linux/macOS/Windows but the fallback definition adds a required `&'static str` parameter, while `build_transfor...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
```suggestion time consumed by a transform in nanoseconds. ``` This might confuse users. Should we add a list of supported (or unsupported) transforms instead?
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/changelog.d/OPA-5012-add-per-component-cpu-metric.feature.md b/changelog.d/OPA-5012-add-per-component-cpu-metric.feature.md new file mode 100644 index 0000000000000..3ff266128017e --- /dev/null +++ b/changelog.d/OPA-5012-add-per-component-cpu-metric.feature.md @@ -0,0 +1,8 @@ +Added a new counter metric `c...
[ "changelog.d/OPA-5012-add-per-component-cpu-metric.feature.md" ]
[ { "comment": "```suggestion\ntime consumed by a transform in nanoseconds.\n```\n\nThis might confuse users. Should we add a list of supported (or unsupported) transforms instead?", "path": "changelog.d/OPA-5012-add-per-component-cpu-metric.feature.md", "hunk": "@@ -0,0 +1,5 @@\n+Added a new counter metr...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
## check-spelling / Unrecognized Spelling [gettime](#security-tab) is not a recognized word [Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22372)
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/website/cue/reference/components/generated/transforms.cue b/website/cue/reference/components/generated/transforms.cue index 14181061b6fdd..e9e5d9fda4ccd 100644 --- a/website/cue/reference/components/generated/transforms.cue +++ b/website/cue/reference/components/generated/transforms.cue @@ -79,4 +79,18 @@ ...
[ "website/cue/reference/components/generated/transforms.cue" ]
[ { "comment": "## check-spelling / Unrecognized Spelling\n\n[gettime](#security-tab) is not a recognized word\n\n[Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22372)", "path": "website/cue/reference/components/generated/transforms.cue", "hunk": "@@ -79,4 +79,18 @@\n \t...
true
vectordotdev/vector
25,317
comment_to_fix
feat(metrics): Add per-component CPU usage metric (poll-hook)
## check-spelling / Unrecognized Spelling [gettime](#security-tab) is not a recognized word [Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22373)
5072d8b86de09962c1ef1aed9cd36db3ae9c5dd4
82dc309df3801c9ea187177dcb43d2abb6c6a091
diff --git a/website/cue/reference/generated/configuration.cue b/website/cue/reference/generated/configuration.cue index bafae5ee4fdce..20792a94ee322 100644 --- a/website/cue/reference/generated/configuration.cue +++ b/website/cue/reference/generated/configuration.cue @@ -1257,6 +1257,20 @@ generated: configuration: { ...
[ "website/cue/reference/generated/configuration.cue" ]
[ { "comment": "## check-spelling / Unrecognized Spelling\n\n[gettime](#security-tab) is not a recognized word\n\n[Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22373)", "path": "website/cue/reference/generated/configuration.cue", "hunk": "@@ -1257,6 +1257,20 @@\n \t\t\t...
true
vectordotdev/vector
25,596
issue_to_patch
fix(ci): split docs review label workflow to fix fork PR permissions
## Summary The `Remove Docs Review Label` workflow was failing with `Resource not accessible by integration` when triggered by a review on a fork PR. `pull_request_review` events from forks run with a read-only token, so the label removal write call fails even with `issues: write` declared. Splits the workflow into t...
637cfb748fb47e8983e5d7b45b78bd2ff3908a97
6ba924f7c0d19834bf85d595e2ffc1ad90049d2c
diff --git a/.github/workflows/check_docs_review.yml b/.github/workflows/check_docs_review.yml new file mode 100644 index 0000000000000..55ebfbbf3f378 --- /dev/null +++ b/.github/workflows/check_docs_review.yml @@ -0,0 +1,50 @@ +name: Check Docs Review + +on: + pull_request_review: + types: [submitted] + +permissio...
[ ".github/workflows/check_docs_review.yml", ".github/workflows/remove_docs_review_label.yml" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Grant artifact read permission before downloading the PR number**\n\nIn this `workflow_run` job, `actions/download-artifact` is downloading an artifact from `github.event.workflow_run.id` using `github.token`, ...
true
vectordotdev/vector
25,596
comment_to_fix
fix(ci): split docs review label workflow to fix fork PR permissions
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Grant artifact read permission before downloading the PR number** In this `workflow_run` job, `actions/download-artifact` is downloading an artifact from `github.event.workflow_run.id` using `github.token`, which goes through the A...
637cfb748fb47e8983e5d7b45b78bd2ff3908a97
6ba924f7c0d19834bf85d595e2ffc1ad90049d2c
diff --git a/.github/workflows/remove_docs_review_label.yml b/.github/workflows/remove_docs_review_label.yml index 093c5a4bd5e90..b63098a1fc580 100644 --- a/.github/workflows/remove_docs_review_label.yml +++ b/.github/workflows/remove_docs_review_label.yml @@ -1,53 +1,52 @@ -# Removes the docs review label once a maint...
[ ".github/workflows/remove_docs_review_label.yml" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Grant artifact read permission before downloading the PR number**\n\nIn this `workflow_run` job, `actions/download-artifact` is downloading an artifact from `github.event.workflow_run.id` using `github.token`, ...
true
vectordotdev/vector
25,596
comment_to_fix
fix(ci): split docs review label workflow to fix fork PR permissions
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Grant label read access before checking PR labels** This workflow narrows `GITHUB_TOKEN` to only `contents: read`, but the next step calls `issues.listLabelsOnIssue`, whose endpoint needs issue or pull-request read permission when ...
637cfb748fb47e8983e5d7b45b78bd2ff3908a97
6ba924f7c0d19834bf85d595e2ffc1ad90049d2c
diff --git a/.github/workflows/check_docs_review.yml b/.github/workflows/check_docs_review.yml new file mode 100644 index 0000000000000..55ebfbbf3f378 --- /dev/null +++ b/.github/workflows/check_docs_review.yml @@ -0,0 +1,50 @@ +name: Check Docs Review + +on: + pull_request_review: + types: [submitted] + +permissio...
[ ".github/workflows/check_docs_review.yml" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Grant label read access before checking PR labels**\n\nThis workflow narrows `GITHUB_TOKEN` to only `contents: read`, but the next step calls `issues.listLabelsOnIssue`, whose endpoint needs issue or pull-reque...
true
vectordotdev/vector
25,597
issue_to_patch
chore(ci): replace check-spelling with typos
## Summary The existing `check-spelling` workflow has become a significant source of friction for contributors. It flags technical identifiers, vendor names, DNS abbreviations, and substrings inside base64/hex test vectors as spelling errors, requiring repeated additions to word-list files for routine PRs. The signal-...
0a55506e0b73f571ec0afbddfb2ea4bea81e1887
0e077634f9122d5b1b638b5b5f42cb397df653a0
diff --git a/.github/actions/spelling/README.md b/.github/actions/spelling/README.md deleted file mode 100644 index c5c8999abc52a..0000000000000 --- a/.github/actions/spelling/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# check-spelling/check-spelling configuration - -File | Purpose | Format | Info ---- | --- | --- | ---...
[ ".github/actions/spelling/README.md", ".github/actions/spelling/advice.md", ".github/actions/spelling/allow.txt", ".github/actions/spelling/candidate.patterns", ".github/actions/spelling/excludes.txt", ".github/actions/spelling/expect.txt", ".github/actions/spelling/line_forbidden.patterns", ".github/...
[ { "comment": "## check-spelling / Unrecognized Spelling\n\n[protcol](#security-tab) is not a recognized word\n\n[Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22375)", "path": "changelog.d/websocket_protocol_log_field.fix.md", "hunk": "@@ -0,0 +1,3 @@\n+Fixed a typo in...
diff --git a/tests/integration/shutdown.rs b/tests/integration/shutdown.rs index fcd456c4dc9c1..b4b3aa48961a9 100644 --- a/tests/integration/shutdown.rs +++ b/tests/integration/shutdown.rs @@ -310,7 +310,7 @@ fn configuration_path_recomputed() { // Signal reload kill(Pid::from_raw(vector.id() as i32), Signal:...
true
vectordotdev/vector
25,597
comment_to_fix
chore(ci): replace check-spelling with typos
## check-spelling / Unrecognized Spelling [protcol](#security-tab) is not a recognized word [Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22375)
0a55506e0b73f571ec0afbddfb2ea4bea81e1887
0e077634f9122d5b1b638b5b5f42cb397df653a0
diff --git a/changelog.d/websocket_protocol_log_field.fix.md b/changelog.d/websocket_protocol_log_field.fix.md new file mode 100644 index 0000000000000..acc9ee8cab9ab --- /dev/null +++ b/changelog.d/websocket_protocol_log_field.fix.md @@ -0,0 +1,3 @@ +Fixed a typo in the `WebSocketMessageReceived` internal event emitte...
[ "changelog.d/websocket_protocol_log_field.fix.md" ]
[ { "comment": "## check-spelling / Unrecognized Spelling\n\n[protcol](#security-tab) is not a recognized word\n\n[Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22375)", "path": "changelog.d/websocket_protocol_log_field.fix.md", "hunk": "@@ -0,0 +1,3 @@\n+Fixed a typo in...
true
vectordotdev/vector
25,597
comment_to_fix
chore(ci): replace check-spelling with typos
## check-spelling / Unrecognized Spelling [protcol](#security-tab) is not a recognized word [Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22377)
0a55506e0b73f571ec0afbddfb2ea4bea81e1887
0e077634f9122d5b1b638b5b5f42cb397df653a0
diff --git a/changelog.d/websocket_protocol_log_field.fix.md b/changelog.d/websocket_protocol_log_field.fix.md new file mode 100644 index 0000000000000..acc9ee8cab9ab --- /dev/null +++ b/changelog.d/websocket_protocol_log_field.fix.md @@ -0,0 +1,3 @@ +Fixed a typo in the `WebSocketMessageReceived` internal event emitte...
[ "changelog.d/websocket_protocol_log_field.fix.md" ]
[ { "comment": "## check-spelling / Unrecognized Spelling\n\n[protcol](#security-tab) is not a recognized word\n\n[Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22377)", "path": "changelog.d/websocket_protocol_log_field.fix.md", "hunk": "@@ -0,0 +1,3 @@\n+Fixed a typo in...
true
vectordotdev/vector
25,597
comment_to_fix
chore(ci): replace check-spelling with typos
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Include hidden tracked paths in spell checking** With the action invoked using its defaults here, the v1.33.1 entrypoint runs `typos .`, and typos' reference lists `files.ignore-hidden` as defaulting to `true`, so this CI job skips...
0a55506e0b73f571ec0afbddfb2ea4bea81e1887
0e077634f9122d5b1b638b5b5f42cb397df653a0
diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml index 3b2c1f57f2d12..0fc869015e66c 100644 --- a/.github/workflows/spelling.yml +++ b/.github/workflows/spelling.yml @@ -1,63 +1,7 @@ name: Check Spelling -# Comment management is handled through a secondary job, for details see: -# https://...
[ ".github/workflows/spelling.yml" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Include hidden tracked paths in spell checking**\n\nWith the action invoked using its defaults here, the v1.33.1 entrypoint runs `typos .`, and typos' reference lists `files.ignore-hidden` as defaulting to `tru...
true
vectordotdev/vector
25,597
comment_to_fix
chore(ci): replace check-spelling with typos
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve the valid VRL diagnostic example** This RFC section is demonstrating the compiler's bad advice after a user follows the earlier `to_string(foo) ?? "default"` suggestion, and the error block below is for the valid `to_strin...
0a55506e0b73f571ec0afbddfb2ea4bea81e1887
0e077634f9122d5b1b638b5b5f42cb397df653a0
diff --git a/rfcs/2021-08-22-7204-vrl-error-diagnostic-improvements.md b/rfcs/2021-08-22-7204-vrl-error-diagnostic-improvements.md index 3a84de82c6ff4..66749bfaf6522 100644 --- a/rfcs/2021-08-22-7204-vrl-error-diagnostic-improvements.md +++ b/rfcs/2021-08-22-7204-vrl-error-diagnostic-improvements.md @@ -148,7 +148,7 @@...
[ "rfcs/2021-08-22-7204-vrl-error-diagnostic-improvements.md" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve the valid VRL diagnostic example**\n\nThis RFC section is demonstrating the compiler's bad advice after a user follows the earlier `to_string(foo) ?? \"default\"` suggestion, and the error block below ...
true
vectordotdev/vector
25,597
comment_to_fix
chore(ci): replace check-spelling with typos
We should remove this entry and the directory too. No need to keep it
0a55506e0b73f571ec0afbddfb2ea4bea81e1887
0e077634f9122d5b1b638b5b5f42cb397df653a0
diff --git a/.typos.toml b/.typos.toml new file mode 100644 index 0000000000000..3bbd023f866a0 --- /dev/null +++ b/.typos.toml @@ -0,0 +1,100 @@ +[files] +ignore-hidden = false +extend-exclude = [ + # Binary/fuzz test data + "lib/codecs/tests/data/", + # Classic novel used in benchmarks + "benches/codecs/moby_dick....
[ ".typos.toml" ]
[ { "comment": "We should remove this entry and the directory too. No need to keep it", "path": ".typos.toml", "hunk": "@@ -0,0 +1,102 @@\n+[files]\n+ignore-hidden = false\n+extend-exclude = [\n+ # Binary/fuzz test data\n+ \"lib/codecs/tests/data/\",\n+ # Classic novel used in benchmarks\n+ \"benches/...
true
vectordotdev/vector
25,605
issue_to_patch
chore(deps): ignore RUSTSEC-2026-0173 (proc-macro-error2 unmaintained via mlua_derive)
## Summary `proc-macro-error2` is flagged as unmaintained by RUSTSEC-2026-0173. It enters the dependency tree via `mlua_derive v0.11.0`, which is a proc-macro helper bundled with `mlua v0.11.6`. There is no newer stable `mlua 0.11.x` release that drops this dependency. This PR adds an ignore entry to `deny.toml` to u...
0a55506e0b73f571ec0afbddfb2ea4bea81e1887
dbe179eee3234846a2095f07d71ee3295dc9c4b8
diff --git a/deny.toml b/deny.toml index e6c3a90bd6e9c..24da137cd9c3f 100644 --- a/deny.toml +++ b/deny.toml @@ -48,4 +48,5 @@ ignore = [ { id = "RUSTSEC-2026-0099", reason = "rustls-webpki 0.102/0.101 is vulnerable - tonic upgrade (https://github.com/vectordotdev/vector/issues/19179)" }, { id = "RUSTSEC-2024-043...
[ "deny.toml" ]
[]
true
vectordotdev/vector
25,593
issue_to_patch
chore(ci): replace semantic PR title action with custom script
## Summary The existing check used a third-party action with a 180-entry hardcoded scope allowlist. This created constant friction: any new component or rename required a PR just to update the list, and contributors got blocked on valid titles that simply didn't match the allowlist. In practice, we only use the *...
b9c2b7cf95ecc768a76c4ef37bfeb5b884cce034
6ac7370855e4d0c4991a78a0fdbdd967ad5a5331
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0aa52163fafd3..e690c93216f1c 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -60,9 +60,9 @@ Changes to CI, website, playground and similar are generally not considered user <type>(<scope>)...
[ ".github/PULL_REQUEST_TEMPLATE.md", ".github/workflows/semantic.yml", "CONTRIBUTING.md", "vdev/src/commands/release/generate_cue.rs" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Require scopes for release-generating types**\n\nIn this workflow, titles like `fix: handle bad input` and `feat: add source` now pass because the scope group is optional for every type. I checked the release g...
true
vectordotdev/vector
25,593
comment_to_fix
chore(ci): replace semantic PR title action with custom script
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Require scopes for release-generating types** In this workflow, titles like `fix: handle bad input` and `feat: add source` now pass because the scope group is optional for every type. I checked the release generator: `vdev/src/comm...
b9c2b7cf95ecc768a76c4ef37bfeb5b884cce034
6ac7370855e4d0c4991a78a0fdbdd967ad5a5331
diff --git a/.github/workflows/semantic.yml b/.github/workflows/semantic.yml index 616c5d15b83cc..24ea492b5a710 100644 --- a/.github/workflows/semantic.yml +++ b/.github/workflows/semantic.yml @@ -1,11 +1,9 @@ -# This is a GitHub Action that ensures that the PR titles match the Conventional Commits spec. +# Validates P...
[ ".github/workflows/semantic.yml" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Require scopes for release-generating types**\n\nIn this workflow, titles like `fix: handle bad input` and `feat: add source` now pass because the scope group is optional for every type. I checked the release g...
true
vectordotdev/vector
25,593
comment_to_fix
chore(ci): replace semantic PR title action with custom script
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Accept breaking-change markers in titles** This regex rejects valid breaking-change PR titles such as `feat(api)!: remove legacy endpoint`, even though the PR template documents `!` as optional and the release parser in `vdev/src/c...
b9c2b7cf95ecc768a76c4ef37bfeb5b884cce034
6ac7370855e4d0c4991a78a0fdbdd967ad5a5331
diff --git a/.github/workflows/semantic.yml b/.github/workflows/semantic.yml index 616c5d15b83cc..24ea492b5a710 100644 --- a/.github/workflows/semantic.yml +++ b/.github/workflows/semantic.yml @@ -1,11 +1,9 @@ -# This is a GitHub Action that ensures that the PR titles match the Conventional Commits spec. +# Validates P...
[ ".github/workflows/semantic.yml" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Accept breaking-change markers in titles**\n\nThis regex rejects valid breaking-change PR titles such as `feat(api)!: remove legacy endpoint`, even though the PR template documents `!` as optional and the relea...
true
vectordotdev/vector
25,593
comment_to_fix
chore(ci): replace semantic PR title action with custom script
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Keep accepted scopes parseable by releases** Because the new scope pattern accepts any character except `)`, titles such as `fix(file-source): handle rotation` now pass CI, but the release parser only accepts scopes matching `[a-zA...
b9c2b7cf95ecc768a76c4ef37bfeb5b884cce034
6ac7370855e4d0c4991a78a0fdbdd967ad5a5331
diff --git a/.github/workflows/semantic.yml b/.github/workflows/semantic.yml index 616c5d15b83cc..24ea492b5a710 100644 --- a/.github/workflows/semantic.yml +++ b/.github/workflows/semantic.yml @@ -1,11 +1,9 @@ -# This is a GitHub Action that ensures that the PR titles match the Conventional Commits spec. +# Validates P...
[ ".github/workflows/semantic.yml" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Keep accepted scopes parseable by releases**\n\nBecause the new scope pattern accepts any character except `)`, titles such as `fix(file-source): handle rotation` now pass CI, but the release parser only accept...
true
vectordotdev/vector
25,593
comment_to_fix
chore(ci): replace semantic PR title action with custom script
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Keep title validation on the base workflow** For PRs that modify `.github/workflows/semantic.yml`, a `pull_request` run is evaluated from the PR merge ref, so the same PR can relax or replace this script and still produce a passing...
b9c2b7cf95ecc768a76c4ef37bfeb5b884cce034
6ac7370855e4d0c4991a78a0fdbdd967ad5a5331
diff --git a/.github/workflows/semantic.yml b/.github/workflows/semantic.yml index 616c5d15b83cc..24ea492b5a710 100644 --- a/.github/workflows/semantic.yml +++ b/.github/workflows/semantic.yml @@ -1,11 +1,9 @@ -# This is a GitHub Action that ensures that the PR titles match the Conventional Commits spec. +# Validates P...
[ ".github/workflows/semantic.yml" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Keep title validation on the base workflow**\n\nFor PRs that modify `.github/workflows/semantic.yml`, a `pull_request` run is evaluated from the PR merge ref, so the same PR can relax or replace this script and...
true
vectordotdev/vector
25,593
comment_to_fix
chore(ci): replace semantic PR title action with custom script
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Update the stale scope validation test** With the scope check removed here, the existing `commit_validate_requires_scope_for_certain_types` test still constructs a `feat` commit with `scopes: vec![]` and asserts `c.validate().is_er...
b9c2b7cf95ecc768a76c4ef37bfeb5b884cce034
6ac7370855e4d0c4991a78a0fdbdd967ad5a5331
diff --git a/vdev/src/commands/release/generate_cue.rs b/vdev/src/commands/release/generate_cue.rs index 64f3d98b483d4..c5ec1a8a7fdee 100644 --- a/vdev/src/commands/release/generate_cue.rs +++ b/vdev/src/commands/release/generate_cue.rs @@ -17,9 +17,6 @@ use crate::utils::{git, paths}; const RELEASES_DIR: &str = "webs...
[ "vdev/src/commands/release/generate_cue.rs" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Update the stale scope validation test**\n\nWith the scope check removed here, the existing `commit_validate_requires_scope_for_certain_types` test still constructs a `feat` commit with `scopes: vec![]` and ass...
true
vectordotdev/vector
25,583
issue_to_patch
docs(file sink): enhance note on `path` templates
## Summary The `file` sink `path` option supports template syntax, allowing event fields to be interpolated into the output path. Vector does not sanitize or restrict the rendered path. This is intentional and enables common patterns like routing output by host or application. Adds a `how_it_works` entry stating this...
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
2f138d8716a2464112bd4f769b974a837cd5b417
diff --git a/src/sinks/file/mod.rs b/src/sinks/file/mod.rs index f6c0934fa2d9e..521b02f95f7f6 100644 --- a/src/sinks/file/mod.rs +++ b/src/sinks/file/mod.rs @@ -58,7 +58,7 @@ pub struct FileSinkConfig { ))] #[configurable(metadata(docs::examples = "/tmp/vector-%Y-%m-%d.log.zst"))] #[configurable(metadata...
[ "src/sinks/file/mod.rs", "website/cue/reference/components/sinks/generated/file.cue" ]
[ { "comment": "```suggestion\n\t\twarnings: [\"The rendered path is resolved as-is and is not sanitized. Operators should ensure that the Vector process can only write to the desired locations.\"]\n```", "path": "website/cue/reference/components/sinks/generated/file.cue", "hunk": "@@ -590,7 +590,7 @@ gen...
true
vectordotdev/vector
25,583
comment_to_fix
docs(file sink): enhance note on `path` templates
```suggestion warnings: ["The rendered path is resolved as-is and is not sanitized. Operators should ensure that the Vector process can only write to the desired locations."] ```
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
2f138d8716a2464112bd4f769b974a837cd5b417
diff --git a/website/cue/reference/components/sinks/generated/file.cue b/website/cue/reference/components/sinks/generated/file.cue index 606ccaf957f03..15a71b0248cca 100644 --- a/website/cue/reference/components/sinks/generated/file.cue +++ b/website/cue/reference/components/sinks/generated/file.cue @@ -590,7 +590,7 @@...
[ "website/cue/reference/components/sinks/generated/file.cue" ]
[ { "comment": "```suggestion\n\t\twarnings: [\"The rendered path is resolved as-is and is not sanitized. Operators should ensure that the Vector process can only write to the desired locations.\"]\n```", "path": "website/cue/reference/components/sinks/generated/file.cue", "hunk": "@@ -590,7 +590,7 @@ gen...
true
vectordotdev/vector
25,574
issue_to_patch
docs(website): Fix typo in aggregator documentation
## Summary - Fix a small grammar typo in the aggregator documentation. ## Testing - Not run; documentation-only change.
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
04b192947066e13c23f64f66fe221934ea6d30f2
diff --git a/.github/actions/spelling/allow.txt b/.github/actions/spelling/allow.txt index 7ac468f99526c..a4c4a6af10ec7 100644 --- a/.github/actions/spelling/allow.txt +++ b/.github/actions/spelling/allow.txt @@ -118,6 +118,7 @@ DEBHELPER debian DECT demuxing +deser dfs discriminants distro diff --git a/website/c...
[ ".github/actions/spelling/allow.txt", "website/content/en/docs/setup/going-to-prod/arch/aggregator.md" ]
[]
true
vectordotdev/vector
25,595
issue_to_patch
chore(ci): Update OTLP experiments' lading configs
## Summary Update both OTLP experiments with lading configs compatible with lading 0.31.2. ## How did you test this PR? `smp local smoketest --experiment-dir ./regression --case otlp_grpc_to_blackhole --target-image timberio/vector:0.56.0-debian` ## Change Type - [ ] Bug fix - [ ] New feature - [ ] Dep...
637cfb748fb47e8983e5d7b45b78bd2ff3908a97
be09129eae2356222ebfe6065c54042ef0de4201
diff --git a/regression/cases/otlp_grpc_to_blackhole/lading/lading.yaml b/regression/cases/otlp_grpc_to_blackhole/lading/lading.yaml index e860fff329203..bb9d0b0caac36 100644 --- a/regression/cases/otlp_grpc_to_blackhole/lading/lading.yaml +++ b/regression/cases/otlp_grpc_to_blackhole/lading/lading.yaml @@ -39,7 +39,9 ...
[ "regression/cases/otlp_grpc_to_blackhole/lading/lading.yaml", "regression/cases/otlp_http_to_blackhole/lading/lading.yaml" ]
[]
true
vectordotdev/vector
25,594
issue_to_patch
chore(deps): bump vrl to latest main and mlua from 0.10.5 to 0.11.6
## Summary Bumps VRL to the latest commit on main (which includes the mlua 0.10.5 → 0.11.6 upgrade) and updates the corresponding mlua dependency in Vector. ## Vector configuration NA ## How did you test this PR? NA ## Change Type - [ ] Bug fix - [ ] New feature - [x] Dependencies - [ ] Non-functional (chore, re...
ef57b2316e544c4b05b69a7493344fabffec02e2
d8a498ef76c8af42c0991d690e7135430e4f24a5
diff --git a/Cargo.lock b/Cargo.lock index 87740a543abbc..05541a7ddd969 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6488,18 +6488,18 @@ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" [[package]] name = "lua-src" -version = "547.0.0" +version = "550.0.0" source = "registry+https://gi...
[ "Cargo.lock", "Cargo.toml", "LICENSE-3rdparty.csv", "lib/vector-core/Cargo.toml" ]
[]
true
vectordotdev/vector
25,582
issue_to_patch
fix(statsd source): prevent panic on multi-byte UTF-8 gauge value prefix
## Summary The statsd gauge parser sliced the metric value at byte index 1 to strip a sign prefix (`+`/`-`). If the first character is a multi-byte UTF-8 codepoint, byte index 1 falls inside the character and Rust panics with `byte index 1 is not a char boundary`. Fix: use `chars()` to advance past the first characte...
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
5e8a46fa3d29d20d27c45b0fd283b1234b8987cb
diff --git a/changelog.d/statsd_gauge_utf8_panic.fix.md b/changelog.d/statsd_gauge_utf8_panic.fix.md new file mode 100644 index 0000000000000..924d565ba667c --- /dev/null +++ b/changelog.d/statsd_gauge_utf8_panic.fix.md @@ -0,0 +1,3 @@ +Fixed a potential panic in the `statsd` source when a gauge metric value begins wit...
[ "changelog.d/statsd_gauge_utf8_panic.fix.md", "src/sources/statsd/parser.rs" ]
[]
true
vectordotdev/vector
25,592
issue_to_patch
docs(agents): add Git Conventions section
## Summary Adds a Git Conventions section to `AGENTS.md` instructing coding agents not to include AI attribution in commits or PR descriptions. ## Change Type - [ ] Bug fix - [ ] New feature - [ ] Dependencies - [x] Non-functional (chore, refactoring, docs) - [ ] Performance ## Is this a breaking change? - [ ] Yes...
6b0201ae7edabbba216b43748dbbe8543d8fe5f9
6dd0c3ef8a241f751f289ed9243ed2e5fb1a9359
diff --git a/AGENTS.md b/AGENTS.md index 118ebb7461dbf..88cb4d3ce2256 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -264,6 +264,11 @@ cargo install dd-rust-license-tool --locked make build-licenses ``` +## Git Conventions + +- **Commit messages:** Do NOT include co-authoring information from coding agents (i.e. avoid "...
[ "AGENTS.md" ]
[]
true
vectordotdev/vector
25,588
issue_to_patch
chore(ci): update SMP CLI to 0.27.0
Bumps the SMP CLI version from 0.26.1 to 0.27.0 in the regression workflow. No breaking changes. Notable CLI changes are: all commands now signal success/failure via exit codes, there's a `--output json` flag for machines to use, and the CLI has a real 'local run' capability for getting ballpark results. The [full r...
cbc44892bc90a4bfcf198bb0d4500d2b8137d120
0637a3389118bcc6ce1bdef28249bc48840ab980
diff --git a/.github/workflows/regression.yml b/.github/workflows/regression.yml index 5fbfdbc262156..71c5ec644b82f 100644 --- a/.github/workflows/regression.yml +++ b/.github/workflows/regression.yml @@ -116,7 +116,7 @@ jobs: - name: Set SMP version id: experimental-meta run: | - expo...
[ ".github/workflows/regression.yml" ]
[]
true
vectordotdev/vector
25,569
issue_to_patch
docs(databricks_zerobus sink): clean up and improve examples with links to the official documentation
## Summary Make the configurable examples more realistic and cleaner. Also add links to the official Databricks documentation on how to 1) find the endpoints, 2) create the table and 3) set up the credentials. ## Vector configuration <!-- Include Vector configuration(s) you used to test and debug your changes. -...
b697f53fbb02145f93b30ef3dbc1d73ba907993f
18c9bef2be8e3971ae08b35d62fa1714d2bbe9d4
diff --git a/src/sinks/databricks_zerobus/config.rs b/src/sinks/databricks_zerobus/config.rs index b62c668f69c44..7a4cb22ff1d00 100644 --- a/src/sinks/databricks_zerobus/config.rs +++ b/src/sinks/databricks_zerobus/config.rs @@ -85,27 +85,49 @@ pub struct ZerobusSinkConfig { /// The Zerobus ingestion endpoint URL....
[ "src/sinks/databricks_zerobus/config.rs", "website/cue/reference/components/sinks/generated/databricks_zerobus.cue" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Regenerate generated auth docs for the new link**\n\nThis added service-principal guidance is not reflected in the generated reference metadata: `website/cue/reference/components/sinks/generated/databricks_zero...
true
vectordotdev/vector
25,569
comment_to_fix
docs(databricks_zerobus sink): clean up and improve examples with links to the official documentation
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Regenerate generated auth docs for the new link** This added service-principal guidance is not reflected in the generated reference metadata: `website/cue/reference/components/sinks/generated/databricks_zerobus.cue` still has `auth...
b697f53fbb02145f93b30ef3dbc1d73ba907993f
18c9bef2be8e3971ae08b35d62fa1714d2bbe9d4
diff --git a/src/sinks/databricks_zerobus/config.rs b/src/sinks/databricks_zerobus/config.rs index b62c668f69c44..7a4cb22ff1d00 100644 --- a/src/sinks/databricks_zerobus/config.rs +++ b/src/sinks/databricks_zerobus/config.rs @@ -85,27 +85,49 @@ pub struct ZerobusSinkConfig { /// The Zerobus ingestion endpoint URL....
[ "src/sinks/databricks_zerobus/config.rs" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Regenerate generated auth docs for the new link**\n\nThis added service-principal guidance is not reflected in the generated reference metadata: `website/cue/reference/components/sinks/generated/databricks_zero...
true
vectordotdev/vector
25,581
issue_to_patch
docs(config): document verbatim substitution of structural characters in env var interpolation
## Summary Environment variable values are substituted into raw config text before parsing. Only newline characters are currently rejected. Other structural characters — `"`, `{`, `}`, `[`, `]` — pass through unchanged and can affect the parsed config structure if placed in the wrong context. This PR documents that b...
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
363a56469849cb5989e8bb6c5e67b7f69a734a55
diff --git a/website/content/en/docs/reference/environment_variables.md b/website/content/en/docs/reference/environment_variables.md index 152742236651b..177231095313c 100644 --- a/website/content/en/docs/reference/environment_variables.md +++ b/website/content/en/docs/reference/environment_variables.md @@ -62,6 +62,10...
[ "website/content/en/docs/reference/environment_variables.md" ]
[]
true
vectordotdev/vector
25,519
issue_to_patch
feat(databricks_zerobus sink): encode batches with Arrow Flight
## Summary With the use of the zerobus SDK 2.0.1, we can now switch the Databricks Zerobus SDK to Arrow Flight ingestion. This also helps remove a bunch of code that was only used for this sink: - Bump arrow/arrow-schema/parquet from 56.2 to 58 so the codec RecordBatch type matches the SDK's Arrow Flight API ...
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
a6946a3534187bf9d954bf579eee918ccb5630f5
diff --git a/Cargo.lock b/Cargo.lock index e7155549e5b48..87740a543abbc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -310,104 +310,53 @@ checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" [[package]] name = "arrow" -version = "56.2.0" +version = "58.3.0" source = "registry+https://github....
[ "Cargo.lock", "Cargo.toml", "LICENSE-3rdparty.csv", "lib/codecs/Cargo.toml", "lib/codecs/src/encoding/encoder.rs", "lib/codecs/src/encoding/format/mod.rs", "lib/codecs/src/encoding/format/proto_batch.rs", "lib/codecs/src/encoding/mod.rs", "lib/codecs/src/encoding/serializer.rs", "lib/codecs/src/li...
[ { "comment": "```suggestion\n\t\t\t\tand an error is logged naming the offending column. Prefer nullable columns\n```", "path": "website/cue/reference/components/sinks/databricks_zerobus.cue", "hunk": "@@ -83,25 +83,31 @@ components: sinks: databricks_zerobus: {\n \t\tschema: {\n \t\t\ttitle: \"Schema\"...
true
vectordotdev/vector
25,519
comment_to_fix
feat(databricks_zerobus sink): encode batches with Arrow Flight
```suggestion and an error is logged naming the offending column. Prefer nullable columns ```
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
a6946a3534187bf9d954bf579eee918ccb5630f5
diff --git a/website/cue/reference/components/sinks/databricks_zerobus.cue b/website/cue/reference/components/sinks/databricks_zerobus.cue index 2412a5237cf4b..5b8acc56a4657 100644 --- a/website/cue/reference/components/sinks/databricks_zerobus.cue +++ b/website/cue/reference/components/sinks/databricks_zerobus.cue @@ ...
[ "website/cue/reference/components/sinks/databricks_zerobus.cue" ]
[ { "comment": "```suggestion\n\t\t\t\tand an error is logged naming the offending column. Prefer nullable columns\n```", "path": "website/cue/reference/components/sinks/databricks_zerobus.cue", "hunk": "@@ -83,25 +83,31 @@ components: sinks: databricks_zerobus: {\n \t\tschema: {\n \t\t\ttitle: \"Schema\"...
true
vectordotdev/vector
25,519
comment_to_fix
feat(databricks_zerobus sink): encode batches with Arrow Flight
```suggestion for fields that may be absent or null in some events. ```
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
a6946a3534187bf9d954bf579eee918ccb5630f5
diff --git a/website/cue/reference/components/sinks/databricks_zerobus.cue b/website/cue/reference/components/sinks/databricks_zerobus.cue index 2412a5237cf4b..5b8acc56a4657 100644 --- a/website/cue/reference/components/sinks/databricks_zerobus.cue +++ b/website/cue/reference/components/sinks/databricks_zerobus.cue @@ ...
[ "website/cue/reference/components/sinks/databricks_zerobus.cue" ]
[ { "comment": "```suggestion\n\t\t\t\tfor fields that may be absent or null in some events.\n```", "path": "website/cue/reference/components/sinks/databricks_zerobus.cue", "hunk": "@@ -83,25 +83,31 @@ components: sinks: databricks_zerobus: {\n \t\tschema: {\n \t\t\ttitle: \"Schema\"\n \t\t\tbody: \"\"\"\...
true
vectordotdev/vector
25,519
comment_to_fix
feat(databricks_zerobus sink): encode batches with Arrow Flight
This makes it a breaking change. I understand this sink was just released today and it's `beta` but we should go through https://github.com/vectordotdev/vector/blob/master/docs/DEPRECATION.md#process.
06af024431c44fdb3c55b09bd4deb1a3bcd70dd1
a6946a3534187bf9d954bf579eee918ccb5630f5
diff --git a/lib/codecs/src/encoding/serializer.rs b/lib/codecs/src/encoding/serializer.rs index 0a7b07a00fd04..431f0356c3aee 100644 --- a/lib/codecs/src/encoding/serializer.rs +++ b/lib/codecs/src/encoding/serializer.rs @@ -10,7 +10,6 @@ use super::format::{ArrowStreamSerializer, ArrowStreamSerializerConfig}; use sup...
[ "lib/codecs/src/encoding/serializer.rs" ]
[ { "comment": "This makes it a breaking change. I understand this sink was just released today and it's `beta` but we should go through https://github.com/vectordotdev/vector/blob/master/docs/DEPRECATION.md#process.", "path": "lib/codecs/src/encoding/serializer.rs", "hunk": "@@ -169,24 +171,15 @@ pub enu...
true
vectordotdev/vector
25,568
issue_to_patch
Vector 0.56.0 release # Setup and Automation Note the preparation steps are now automated. First, alter/create release.env ```shell #!/usr/bin/env bash export NEW_VECTOR_VERSION=0.56.0 # replace this with the actual new version (e.g.: 0.50.0) export NEW_VRL_VERSION= 0.33.0 # replace this with the actual new VRL vers...
chore(releasing): v0.56.0 release
## Summary - Cherry-picked the v0.56.0 release commit from the `v0.56` branch to master - Reverted VRL dependency back to tracking `git main` branch (was pinned to `0.33.1` for the release) - Bumped Vector version to `0.57.0` - Updated `Cargo.lock` for both `vrl` and `vector` - Rebuilt Kubernetes manifests for `v0.56....
c0806d3b31323b1419ae39242b341ff008e0ac87
53f3b8acc298663aa43f69bfb6f8122ed253a5c4
diff --git a/Cargo.lock b/Cargo.lock index d7705d2cbe09e..e7155549e5b48 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3817,31 +3817,30 @@ dependencies = [ [[package]] name = "domain" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a11dd7f04a6a6d2...
[ "Cargo.lock", "Cargo.toml", "LICENSE-3rdparty.csv", "changelog.d/10870_http_retry_strategy.feature.md", "changelog.d/10870_http_retry_transport_errors.enhancement.md", "changelog.d/15513_remove_default_os_package_config.fix.md", "changelog.d/20278_expected_event_count.feature.md", "changelog.d/23030_v...
[]
true
vectordotdev/vector
25,559
issue_to_patch
fix(metrics): correct CUE metric catalog discrepancies
## Summary Fixes multiple discrepancies in the CUE metric catalog (`website/cue/reference/components/sources/internal_metrics.cue`). Four separate commits, one per issue class: **1 – Wrong metric names (HIGH)** - `buffer_received_event_bytes_total` → `buffer_received_bytes_total` - `buffer_sent_event_bytes_t...
067ef75e6474e885203885826f0d1f8ca2f93897
3cff9504d39eff11a365dcb8959bec85f2a99cd9
diff --git a/website/cue/reference/components/sinks.cue b/website/cue/reference/components/sinks.cue index 416df6cdb280d..b136783a31720 100644 --- a/website/cue/reference/components/sinks.cue +++ b/website/cue/reference/components/sinks.cue @@ -667,9 +667,9 @@ components: sinks: [Name=string]: { buffer_size_events: ...
[ "website/cue/reference/components/sinks.cue", "website/cue/reference/components/sinks/loki.cue", "website/cue/reference/components/sinks/nats.cue", "website/cue/reference/components/sinks/redis.cue", "website/cue/reference/components/sinks/vector.cue", "website/cue/reference/components/sources/internal_me...
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document active_endpoints with component tags**\n\nWhen sink health endpoints are registered, `HealthConfig::build` emits `EndpointsActive` from inside the sink build span, and `emit` records `gauge!(GaugeName:...
true
vectordotdev/vector
25,559
comment_to_fix
fix(metrics): correct CUE metric catalog discrepancies
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document active_endpoints with component tags** When sink health endpoints are registered, `HealthConfig::build` emits `EndpointsActive` from inside the sink build span, and `emit` records `gauge!(GaugeName::ActiveEndpoints)`, so t...
067ef75e6474e885203885826f0d1f8ca2f93897
3cff9504d39eff11a365dcb8959bec85f2a99cd9
diff --git a/website/cue/reference/components/sources/internal_metrics.cue b/website/cue/reference/components/sources/internal_metrics.cue index 1361148420fe5..d7a33596df37a 100644 --- a/website/cue/reference/components/sources/internal_metrics.cue +++ b/website/cue/reference/components/sources/internal_metrics.cue @@ ...
[ "website/cue/reference/components/sources/internal_metrics.cue" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document active_endpoints with component tags**\n\nWhen sink health endpoints are registered, `HealthConfig::build` emits `EndpointsActive` from inside the sink build span, and `emit` records `gauge!(GaugeName:...
true
vectordotdev/vector
25,559
comment_to_fix
fix(metrics): correct CUE metric catalog discrepancies
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document buffer_discarded_bytes_total's buffer labels** `BufferEventsDropped::emit` records `buffer_discarded_bytes_total` with explicit `buffer_id`, `stage`, and `intentional` labels, but this new catalog entry only advertises the...
067ef75e6474e885203885826f0d1f8ca2f93897
3cff9504d39eff11a365dcb8959bec85f2a99cd9
diff --git a/website/cue/reference/components/sources/internal_metrics.cue b/website/cue/reference/components/sources/internal_metrics.cue index 1361148420fe5..d7a33596df37a 100644 --- a/website/cue/reference/components/sources/internal_metrics.cue +++ b/website/cue/reference/components/sources/internal_metrics.cue @@ ...
[ "website/cue/reference/components/sources/internal_metrics.cue" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Document buffer_discarded_bytes_total's buffer labels**\n\n`BufferEventsDropped::emit` records `buffer_discarded_bytes_total` with explicit `buffer_id`, `stage`, and `intentional` labels, but this new catalog e...
true
vectordotdev/vector
25,559
comment_to_fix
fix(metrics): correct CUE metric catalog discrepancies
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Include reader_failed for buffer error types** `BufferReadError::emit` records this new metric with `error_type = "reader_failed"`, but `_error_type` does not enumerate that value, so the generated docs for `buffer_errors_total` wi...
067ef75e6474e885203885826f0d1f8ca2f93897
3cff9504d39eff11a365dcb8959bec85f2a99cd9
diff --git a/website/cue/reference/components/sources/internal_metrics.cue b/website/cue/reference/components/sources/internal_metrics.cue index 1361148420fe5..d7a33596df37a 100644 --- a/website/cue/reference/components/sources/internal_metrics.cue +++ b/website/cue/reference/components/sources/internal_metrics.cue @@ ...
[ "website/cue/reference/components/sources/internal_metrics.cue" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Include reader_failed for buffer error types**\n\n`BufferReadError::emit` records this new metric with `error_type = \"reader_failed\"`, but `_error_type` does not enumerate that value, so the generated docs fo...
true
vectordotdev/vector
25,559
comment_to_fix
fix(metrics): correct CUE metric catalog discrepancies
**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Define `_error_code` before referencing it** This new `buffer_errors_total` entry references `_error_code`, but repo-wide search shows no `_error_code` definition in the CUE reference tree, so evaluating/building the website metric...
067ef75e6474e885203885826f0d1f8ca2f93897
3cff9504d39eff11a365dcb8959bec85f2a99cd9
diff --git a/website/cue/reference/components/sources/internal_metrics.cue b/website/cue/reference/components/sources/internal_metrics.cue index 1361148420fe5..d7a33596df37a 100644 --- a/website/cue/reference/components/sources/internal_metrics.cue +++ b/website/cue/reference/components/sources/internal_metrics.cue @@ ...
[ "website/cue/reference/components/sources/internal_metrics.cue" ]
[ { "comment": "**<sub><sub>![P1 Badge](https://img.shields.io/badge/P1-orange?style=flat)</sub></sub> Define `_error_code` before referencing it**\n\nThis new `buffer_errors_total` entry references `_error_code`, but repo-wide search shows no `_error_code` definition in the CUE reference tree, so evaluating/bui...
true
vectordotdev/vector
25,559
comment_to_fix
fix(metrics): correct CUE metric catalog discrepancies
## check-spelling / Unrecognized Spelling [deser](#security-tab) is not a recognized word [Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22370)
067ef75e6474e885203885826f0d1f8ca2f93897
3cff9504d39eff11a365dcb8959bec85f2a99cd9
diff --git a/website/cue/reference/components/sources/internal_metrics.cue b/website/cue/reference/components/sources/internal_metrics.cue index 1361148420fe5..d7a33596df37a 100644 --- a/website/cue/reference/components/sources/internal_metrics.cue +++ b/website/cue/reference/components/sources/internal_metrics.cue @@ ...
[ "website/cue/reference/components/sources/internal_metrics.cue" ]
[ { "comment": "## check-spelling / Unrecognized Spelling\n\n[deser](#security-tab) is not a recognized word\n\n[Show more details](https://github.com/vectordotdev/vector/security/code-scanning/22370)", "path": "website/cue/reference/components/sources/internal_metrics.cue", "hunk": "@@ -1175,6 +1173,29 @...
true
vectordotdev/vector
25,555
issue_to_patch
chore(releasing): prepare v0.56.0 release
This PR prepares the release for Vector v0.56.0 Ref: #25498
2a3c5d89de23ee9b65d97fd038c2eb8bdbf98578
b1c454b406eaf8c1c5f2d88b4c321ce9c99fb68a
diff --git a/Cargo.lock b/Cargo.lock index d7705d2cbe09e..3e63539ab1649 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3817,31 +3817,30 @@ dependencies = [ [[package]] name = "domain" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a11dd7f04a6a6d2...
[ "Cargo.lock", "Cargo.toml", "LICENSE-3rdparty.csv", "changelog.d/10870_http_retry_strategy.feature.md", "changelog.d/10870_http_retry_transport_errors.enhancement.md", "changelog.d/15513_remove_default_os_package_config.fix.md", "changelog.d/20278_expected_event_count.feature.md", "changelog.d/23030_v...
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Regenerate Kubernetes manifests for 0.56**\n\nWhen this bumps the kubectl reference to `v0.56`, the generated manifests under `distribution/kubernetes` still point at `0.55.0-distroless-libc` (I checked with `r...
true
vectordotdev/vector
25,555
comment_to_fix
chore(releasing): prepare v0.56.0 release
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Regenerate Kubernetes manifests for 0.56** When this bumps the kubectl reference to `v0.56`, the generated manifests under `distribution/kubernetes` still point at `0.55.0-distroless-libc` (I checked with `rg -n '0\.55\.0' distribu...
2a3c5d89de23ee9b65d97fd038c2eb8bdbf98578
b1c454b406eaf8c1c5f2d88b4c321ce9c99fb68a
diff --git a/website/cue/reference/administration/interfaces/kubectl.cue b/website/cue/reference/administration/interfaces/kubectl.cue index 94d30ab6bedc2..0c74b574c9cc2 100644 --- a/website/cue/reference/administration/interfaces/kubectl.cue +++ b/website/cue/reference/administration/interfaces/kubectl.cue @@ -19,7 +1...
[ "website/cue/reference/administration/interfaces/kubectl.cue" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Regenerate Kubernetes manifests for 0.56**\n\nWhen this bumps the kubectl reference to `v0.56`, the generated manifests under `distribution/kubernetes` still point at `0.55.0-distroless-libc` (I checked with `r...
true
vectordotdev/vector
25,555
comment_to_fix
chore(releasing): prepare v0.56.0 release
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Mark the GreptimeDB changelog entry as breaking** This entry was generated from `changelog.d/greptimedb_ingester_crate.breaking.md`, but it is emitted as an ordinary `chore` with no `breaking: true` marker. On the release page I ch...
2a3c5d89de23ee9b65d97fd038c2eb8bdbf98578
b1c454b406eaf8c1c5f2d88b4c321ce9c99fb68a
diff --git a/website/cue/reference/releases/0.56.0.cue b/website/cue/reference/releases/0.56.0.cue new file mode 100644 index 0000000000000..bfb16550249b8 --- /dev/null +++ b/website/cue/reference/releases/0.56.0.cue @@ -0,0 +1,646 @@ +package metadata + +releases: "0.56.0": { + date: "2026-06-03" + codename: "" + ...
[ "website/cue/reference/releases/0.56.0.cue" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Mark the GreptimeDB changelog entry as breaking**\n\nThis entry was generated from `changelog.d/greptimedb_ingester_crate.breaking.md`, but it is emitted as an ordinary `chore` with no `breaking: true` marker. ...
true
vectordotdev/vector
25,555
comment_to_fix
chore(releasing): prepare v0.56.0 release
**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve the security changelog category** This entry came from `changelog.d/redact-sink-api-key-headers.security.md`, and `changelog.d/README.md` defines `security` fragments for changes with security implications, but the generat...
2a3c5d89de23ee9b65d97fd038c2eb8bdbf98578
b1c454b406eaf8c1c5f2d88b4c321ce9c99fb68a
diff --git a/website/cue/reference/releases/0.56.0.cue b/website/cue/reference/releases/0.56.0.cue new file mode 100644 index 0000000000000..bfb16550249b8 --- /dev/null +++ b/website/cue/reference/releases/0.56.0.cue @@ -0,0 +1,646 @@ +package metadata + +releases: "0.56.0": { + date: "2026-06-03" + codename: "" + ...
[ "website/cue/reference/releases/0.56.0.cue" ]
[ { "comment": "**<sub><sub>![P2 Badge](https://img.shields.io/badge/P2-yellow?style=flat)</sub></sub> Preserve the security changelog category**\n\nThis entry came from `changelog.d/redact-sink-api-key-headers.security.md`, and `changelog.d/README.md` defines `security` fragments for changes with security impli...
true
vectordotdev/vector
25,555
comment_to_fix
chore(releasing): prepare v0.56.0 release
IMO not worth highlighting this change. It is not related to any highly requested feature.
2a3c5d89de23ee9b65d97fd038c2eb8bdbf98578
b1c454b406eaf8c1c5f2d88b4c321ce9c99fb68a
diff --git a/website/cue/reference/releases/0.56.0.cue b/website/cue/reference/releases/0.56.0.cue new file mode 100644 index 0000000000000..bfb16550249b8 --- /dev/null +++ b/website/cue/reference/releases/0.56.0.cue @@ -0,0 +1,646 @@ +package metadata + +releases: "0.56.0": { + date: "2026-06-03" + codename: "" + ...
[ "website/cue/reference/releases/0.56.0.cue" ]
[ { "comment": "IMO not worth highlighting this change. It is not related to any highly requested feature.", "path": "website/cue/reference/releases/0.56.0.cue", "hunk": "@@ -0,0 +1,642 @@\n+package metadata\n+\n+releases: \"0.56.0\": {\n+\tdate: \"2026-06-02\"\n+\tcodename: \"\"\n+\n+\twhats_next: []...
true
vectordotdev/vector
25,555
comment_to_fix
chore(releasing): prepare v0.56.0 release
Not worth highlighting IMO, it's a relatively simple bug fix.
2a3c5d89de23ee9b65d97fd038c2eb8bdbf98578
b1c454b406eaf8c1c5f2d88b4c321ce9c99fb68a
diff --git a/website/cue/reference/releases/0.56.0.cue b/website/cue/reference/releases/0.56.0.cue new file mode 100644 index 0000000000000..bfb16550249b8 --- /dev/null +++ b/website/cue/reference/releases/0.56.0.cue @@ -0,0 +1,646 @@ +package metadata + +releases: "0.56.0": { + date: "2026-06-03" + codename: "" + ...
[ "website/cue/reference/releases/0.56.0.cue" ]
[ { "comment": "Not worth highlighting IMO, it's a relatively simple bug fix.", "path": "website/cue/reference/releases/0.56.0.cue", "hunk": "@@ -0,0 +1,642 @@\n+package metadata\n+\n+releases: \"0.56.0\": {\n+\tdate: \"2026-06-02\"\n+\tcodename: \"\"\n+\n+\twhats_next: []\n+\n+\tdescription: \"\"\"\n...
true
vectordotdev/vector
25,555
comment_to_fix
chore(releasing): prepare v0.56.0 release
We can remove this from the highlight and keep the details only in the changelog entry.
2a3c5d89de23ee9b65d97fd038c2eb8bdbf98578
b1c454b406eaf8c1c5f2d88b4c321ce9c99fb68a
diff --git a/website/cue/reference/releases/0.56.0.cue b/website/cue/reference/releases/0.56.0.cue new file mode 100644 index 0000000000000..bfb16550249b8 --- /dev/null +++ b/website/cue/reference/releases/0.56.0.cue @@ -0,0 +1,646 @@ +package metadata + +releases: "0.56.0": { + date: "2026-06-03" + codename: "" + ...
[ "website/cue/reference/releases/0.56.0.cue" ]
[ { "comment": "We can remove this from the highlight and keep the details only in the changelog entry.", "path": "website/cue/reference/releases/0.56.0.cue", "hunk": "@@ -0,0 +1,642 @@\n+package metadata\n+\n+releases: \"0.56.0\": {\n+\tdate: \"2026-06-02\"\n+\tcodename: \"\"\n+\n+\twhats_next: []\n+...
true
vectordotdev/vector
25,555
comment_to_fix
chore(releasing): prepare v0.56.0 release
Comma before a restrictive "that" clause is incorrect — "that" defines which transform, so no comma. ```suggestion - Added a new `delay` transform that delays each event by a fixed duration. Events can also ```
2a3c5d89de23ee9b65d97fd038c2eb8bdbf98578
b1c454b406eaf8c1c5f2d88b4c321ce9c99fb68a
diff --git a/website/cue/reference/releases/0.56.0.cue b/website/cue/reference/releases/0.56.0.cue new file mode 100644 index 0000000000000..bfb16550249b8 --- /dev/null +++ b/website/cue/reference/releases/0.56.0.cue @@ -0,0 +1,646 @@ +package metadata + +releases: "0.56.0": { + date: "2026-06-03" + codename: "" + ...
[ "website/cue/reference/releases/0.56.0.cue" ]
[ { "comment": "Comma before a restrictive \"that\" clause is incorrect — \"that\" defines which transform, so no comma.\n\n```suggestion\n\t\t- Added a new `delay` transform that delays each event by a fixed duration. Events can also\n```", "path": "website/cue/reference/releases/0.56.0.cue", "hunk": "@@...
true