Skip to content
Draft
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- Upgraded `curl`/`libcurl` in the Docker image to `8.20.0-r0` to address CVE-2026-7009. [#1450](https://github.com/sourcebot-dev/sourcebot/pull/1450)

## [5.1.1] - 2026-07-14

- Add book a call button to sidebar. [#1441](https://github.com/sourcebot-dev/sourcebot/pull/1441)
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,12 @@ ENV SOURCEBOT_LOG_LEVEL=info
# Sourcebot collects anonymous usage data using [PostHog](https://posthog.com/). Uncomment this line to disable.
# ENV SOURCEBOT_TELEMETRY_DISABLED=1

# Configure dependencies
# Configure dependencies.
# `apk upgrade --no-cache` pulls patched versions of all base packages. curl and
# libcurl are upgraded explicitly to ensure the image includes the fix for
# CVE-2026-7009 (OCSP stapling certificate validation bypass, fixed in 8.20.0-r0).
RUN apk add --no-cache git ca-certificates bind-tools tini jansson wget supervisor uuidgen curl perl jq openssl util-linux unzip && \
apk upgrade --no-cache curl libcurl && \
apk upgrade --no-cache

# Remove npm (unused — we use Yarn). The Node.js base image bundles npm
Expand Down
Loading