Skip to content

Commit 2b8b875

Browse files
chore(releasing): prepare v0.54.0 release (#24876)
* chore(releasing): Pinned VRL version to 0.31.0 * chore(releasing): Generated release CUE file * chore(releasing): Updated website/cue/reference/administration/interfaces/kubectl.cue vector version to 0.54.0 * chore(releasing): Updated distribution/install.sh vector version to 0.54.0 * chore(releasing): Add 0.54.0 to versions.cue * chore(releasing): Created release md file * spell checker fixes * regen licenses * highlights + breaking changes v1 * fix(vdev): make build vrl-docs work with released VRL version (#24877) * fix(vdev): make build vrl-docs work with released VRL version * Format * Import bail * Fix invalid \ inside cue string * Remove whitespace * fix(ci): use cross-strip tools when packaging RPMs for non-x86_64 targets (#24873) * fix(ci): use cross-strip tools when packaging RPMs for non-x86_64 targets * Install vdev using setup action in publish.yml * revert unrelated change * update date --------- Co-authored-by: Thomas <thomas.schneider@datadoghq.com>
1 parent f2c50cb commit 2b8b875

37 files changed

+536
-140
lines changed

.github/actions/spelling/allow.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -560,3 +560,4 @@ Zync
560560
sighup
561561
CLAUDE
562562
linting
563+
lexers

.github/workflows/publish.yml

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4040
with:
4141
ref: ${{ inputs.git_ref }}
42+
43+
- uses: ./.github/actions/setup
44+
with:
45+
vdev: true
4246
- name: Generate publish metadata
4347
id: generate-publish-metadata
4448
run: make ci-generate-publish-metadata
@@ -72,6 +76,8 @@ jobs:
7276
run: sudo -E bash scripts/environment/bootstrap-ubuntu-24.04.sh
7377
- name: Bootstrap runner environment (generic)
7478
run: bash scripts/environment/prepare.sh --modules=rustup,cross,cargo-deb
79+
- name: Install cross-compilation tools
80+
run: sudo apt-get install -y binutils-arm-linux-gnueabihf binutils-aarch64-linux-gnu
7581
- name: Build Vector
7682
run: make package-${{ matrix.target }}-all
7783
- name: Stage package artifacts for publish
@@ -109,10 +115,12 @@ jobs:
109115
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
110116
with:
111117
ref: ${{ inputs.git_ref }}
112-
- name: Bootstrap runner environment (macOS-specific)
113-
run: |
114-
bash scripts/environment/bootstrap-macos.sh
115-
bash scripts/environment/prepare.sh --modules=rustup
118+
119+
- uses: ./.github/actions/setup
120+
with:
121+
rust: true
122+
rustup: true
123+
protoc: true
116124
- name: Build Vector
117125
env:
118126
TARGET: "${{ matrix.architecture }}-apple-darwin"
@@ -349,6 +357,9 @@ jobs:
349357
pattern: vector-${{ env.VECTOR_VERSION }}-*-linux-*
350358
path: target/artifacts
351359
merge-multiple: true
360+
- uses: ./.github/actions/setup
361+
with:
362+
vdev: true
352363
- name: Build and publish Docker images
353364
env:
354365
PLATFORM: "linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v6"
@@ -380,6 +391,9 @@ jobs:
380391
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
381392
with:
382393
ref: ${{ inputs.git_ref }}
394+
- uses: ./.github/actions/setup
395+
with:
396+
vdev: true
383397
- name: Download all package artifacts
384398
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
385399
with:
@@ -417,6 +431,9 @@ jobs:
417431
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
418432
with:
419433
ref: ${{ inputs.git_ref }}
434+
- uses: ./.github/actions/setup
435+
with:
436+
vdev: true
420437
- name: Download all package artifacts
421438
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
422439
with:

Cargo.lock

Lines changed: 17 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ vector-common-macros = { path = "lib/vector-common-macros" }
215215
vector-lib = { path = "lib/vector-lib", default-features = false, features = ["vrl"] }
216216
vector-vrl-category = { path = "lib/vector-vrl/category" }
217217
vector-vrl-functions = { path = "lib/vector-vrl/functions", default-features = false }
218-
vrl = { git = "https://github.com/vectordotdev/vrl.git", branch = "main", default-features = false, features = ["arbitrary", "cli", "test", "test_framework", "stdlib-base"] }
218+
vrl = { default-features = false, features = ["arbitrary", "cli", "test", "test_framework", "stdlib-base"] , version = "0.31.0" }
219219
mock_instant = { version = "0.6" }
220220
serial_test = { version = "3.2" }
221221

LICENSE-3rdparty.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,7 @@ serde_urlencoded,https://github.com/nox/serde_urlencoded,MIT OR Apache-2.0,Antho
700700
serde_with,https://github.com/jonasbb/serde_with,MIT OR Apache-2.0,"Jonas Bushart, Marcin Kaźmierczak"
701701
serde_with_macros,https://github.com/jonasbb/serde_with,MIT OR Apache-2.0,Jonas Bushart
702702
serde_yaml,https://github.com/dtolnay/serde-yaml,MIT OR Apache-2.0,David Tolnay <dtolnay@gmail.com>
703+
serde_yaml_ng,https://github.com/acatton/serde-yaml-ng,MIT,Antoine Catton <devel@antoine.catton.fr>
703704
sha-1,https://github.com/RustCrypto/hashes,MIT OR Apache-2.0,RustCrypto Developers
704705
sha1,https://github.com/RustCrypto/hashes,MIT OR Apache-2.0,RustCrypto Developers
705706
sha2,https://github.com/RustCrypto/hashes,MIT OR Apache-2.0,RustCrypto Developers

changelog.d/#####_limited-buffer-close-race.fix.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

changelog.d/22912_add_azure_logs_ingestion.feature.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

changelog.d/23329_remove_patch_dependencies.fix.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelog.d/24074_clickhouse_arrow_complex_types.enhancement.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

changelog.d/24355_vector_top_controls.feature.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

0 commit comments

Comments
 (0)