Skip to content
Merged
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 apps/cli-go/pkg/config/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ 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.108.0 AS realtime
FROM supabase/storage-api:v1.60.22 AS storage
FROM supabase/storage-api:v1.60.26 AS storage

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 Preserve the storage delete request cap

With supabase/storage-api:v1.60.26, the 1000-object bulk delete limit is only enforced when REQUEST_HARD_LIMITS_ENABLED=true; I checked the CLI storage env in internal/start/start.go and internal/db/start/start.go, and this repo never sets that variable. For local REST/S3 delete requests containing more than 1000 objects, this bump changes the behavior from rejecting the request to accepting and processing it, diverging from the previous local stack/protocol guardrail and making accidental huge deletes much heavier. Please add the new env var when starting the storage container/jobs before taking this image.

Useful? React with 👍 / 👎.

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
Expand Down
Loading