Skip to content
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
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,17 @@ updates:
- dependency-name: "axllent/mailpit"
- dependency-name: "darthsim/imgproxy"
- dependency-name: "timberio/vector"
# Held back: v2.109.0+ adds a setup_supabase_realtime_admin migration
# that fails against the CLI's local Postgres and breaks `supabase start`.
# Remove once the CLI's local stack is compatible with the new migration.
- dependency-name: "supabase/realtime"
versions:
- ">= 2.109.0"
# Held back: 1.45.0 is not mirrored to the ghcr registry CI pulls from
# ("manifest unknown"). Remove once a mirrored tag is available.
- dependency-name: "supabase/logflare"
versions:
- ">= 1.45.0"
cooldown:
default-days: 7
exclude:
Expand Down
4 changes: 2 additions & 2 deletions apps/cli-go/pkg/config/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ FROM supabase/edge-runtime:v1.74.1 AS edgeruntime
FROM timberio/vector:0.53.0-alpine AS vector
FROM supabase/supavisor:2.9.7 AS supavisor
FROM supabase/gotrue:v2.190.0 AS gotrue
FROM supabase/realtime:v2.109.1 AS realtime
FROM supabase/realtime:v2.108.0 AS realtime

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Keep Dependabot from unpinning realtime

This pin is in the Dockerfile that .github/dependabot.yml scans for Docker updates, and that config still groups minor/patch Docker updates for this directory while excluding supabase/* images from cooldown. Because supabase/realtime:v2.109.1 was already available and was the version being reverted here, the next scheduled Dependabot run can immediately propose the same broken bump again unless supabase/realtime is ignored or otherwise held back.

Useful? React with 👍 / 👎.

FROM supabase/storage-api:v1.60.21 AS storage
FROM supabase/logflare:1.45.0 AS logflare
FROM supabase/logflare:1.44.3 AS logflare
# Append to JobImages when adding new dependencies below
FROM supabase/pgadmin-schema-diff:cli-0.0.5 AS differ
FROM supabase/migra:3.0.1663481299 AS migra
Expand Down
Loading