Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): Upgrade cue to 0.5.0 #17204

Merged
merged 1 commit into from
Apr 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/DOCUMENTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ suitable for complex data definitions.

Cue can be [installed](https://cuelang.org/docs/install/) from package managers,
however it may be necessary to install it from source in order to use the correct
version that Vector depends on. Currently Vector is using `v0.4.2`. Using a CUE
version that Vector depends on. Currently Vector is using `v0.5.0`. Using a CUE
version different than this may result in CUE check/build errors. We are aiming
to improve the developer experience around external tool dependencies ([#15909](https://github.com/vectordotdev/vector/issues/15909)).

Expand Down
6 changes: 3 additions & 3 deletions scripts/environment/bootstrap-ubuntu-20.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ apt install --yes \
# Cue
TEMP=$(mktemp -d)
curl \
-L https://github.com/cue-lang/cue/releases/download/v0.4.2/cue_v0.4.2_linux_amd64.tar.gz \
-o "${TEMP}/cue_v0.4.2_linux_amd64.tar.gz"
-L https://github.com/cue-lang/cue/releases/download/v0.5.0/cue_v0.5.0_linux_amd64.tar.gz \
-o "${TEMP}/cue_v0.5.0_linux_amd64.tar.gz"
tar \
-xvf "${TEMP}/cue_v0.4.2_linux_amd64.tar.gz" \
-xvf "${TEMP}/cue_v0.5.0_linux_amd64.tar.gz" \
-C "${TEMP}"
cp "${TEMP}/cue" /usr/bin/cue

Expand Down