Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
38d012d
chore(deps): bump the actions-major group with 2 updates (#4618)
dependabot[bot] Dec 17, 2025
3b1c7d5
fix(docker): bump the docker-minor group in /pkg/config/templates wit…
dependabot[bot] Dec 18, 2025
1876c66
fix(docker): bump the docker-minor group in /pkg/config/templates wit…
dependabot[bot] Dec 19, 2025
9b93e99
chore: exclude compose from dependabot group
sweatybridge Dec 19, 2025
8ece590
chore: exclude compose spec from dependabot group
sweatybridge Dec 19, 2025
3082277
chore(deps): bump the go-minor group across 1 directory with 8 update…
dependabot[bot] Dec 19, 2025
8d8247b
chore(deps): bump the go-minor group across 1 directory with 2 update…
dependabot[bot] Dec 20, 2025
1e47c62
chore(deps): bump github.com/go-playground/validator/v10 from 10.29.0…
dependabot[bot] Dec 22, 2025
a938d6d
feat(auth): add X OAuth 2.0 provider (#4635)
issuedat Dec 23, 2025
6b704d9
fix(docker): bump the docker-minor group across 1 directory with 3 up…
dependabot[bot] Dec 23, 2025
f386e44
feat(studio): functions management api - attaching functions folder (…
kallebysantos Dec 23, 2025
358a5ff
feat: Add support for file-based snippets in Studio (#4656)
ivasilov Dec 23, 2025
9b9b5a2
fix: better suggestions on pg connection error (#4597)
sweatybridge Dec 23, 2025
beefa70
fix: update studio image (#4659)
ivasilov Dec 23, 2025
d496bcd
fix(studio): format snippets folder container path (#4661)
singh-inder Dec 23, 2025
1be041b
fix: ncalls to handle > billion calls formating (#4658)
jpargudo Dec 23, 2025
14b8a3c
chore(deps): bump the go-minor group across 2 directories with 1 upda…
dependabot[bot] Dec 24, 2025
b8daa29
fix: remove fdw grant option from schema dump (#4664)
sweatybridge Dec 24, 2025
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: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ updates:
update-types:
- minor
- patch
exclude-patterns:
- github.com/compose-spec/compose-go/v2
- package-ecosystem: "npm"
directory: "/"
schedule:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
go tool gotestsum -- -race -v -count=1 ./... \
-coverpkg="./cmd/...,./internal/...,${pkgs}" -coverprofile=coverage.out

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: code-coverage-report
path: coverage.out
Expand All @@ -39,7 +39,7 @@ jobs:
- test
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: code-coverage-report
- uses: coverallsapp/github-action@v2
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
mv tmp.$$.json package.json
npm pack

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: installer
path: supabase-1.28.0.tgz
Expand All @@ -43,7 +43,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: installer

Expand All @@ -59,7 +59,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: installer

Expand All @@ -75,7 +75,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: installer

Expand All @@ -98,7 +98,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: installer

Expand All @@ -117,7 +117,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: installer

Expand Down
38 changes: 19 additions & 19 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/supabase/cli
go 1.24.10

require (
github.com/BurntSushi/toml v1.5.0
github.com/BurntSushi/toml v1.6.0
github.com/Netflix/go-env v0.1.2
github.com/andybalholm/brotli v1.2.0
github.com/cenkalti/backoff/v4 v4.3.0
Expand All @@ -23,7 +23,7 @@ require (
github.com/getsentry/sentry-go v0.40.0
github.com/go-errors/errors v1.5.1
github.com/go-git/go-git/v5 v5.16.4
github.com/go-playground/validator/v10 v10.28.0
github.com/go-playground/validator/v10 v10.30.0
github.com/go-viper/mapstructure/v2 v2.4.0
github.com/go-xmlfmt/xmlfmt v1.1.3
github.com/golang-jwt/jwt/v5 v5.3.0
Expand All @@ -42,7 +42,7 @@ require (
github.com/olekukonko/tablewriter v1.1.2
github.com/slack-go/slack v0.17.3
github.com/spf13/afero v1.15.0
github.com/spf13/cobra v1.10.1
github.com/spf13/cobra v1.10.2
github.com/spf13/pflag v1.0.10
github.com/spf13/viper v1.21.0
github.com/stretchr/testify v1.11.1
Expand All @@ -51,12 +51,12 @@ require (
github.com/tidwall/jsonc v0.3.2
github.com/withfig/autocomplete-tools/packages/cobra v1.2.0
github.com/zalando/go-keyring v0.2.6
go.opentelemetry.io/otel v1.38.0
golang.org/x/mod v0.30.0
golang.org/x/net v0.47.0
golang.org/x/oauth2 v0.33.0
golang.org/x/term v0.37.0
google.golang.org/grpc v1.77.0
go.opentelemetry.io/otel v1.39.0
golang.org/x/mod v0.31.0
golang.org/x/net v0.48.0
golang.org/x/oauth2 v0.34.0
golang.org/x/term v0.38.0
google.golang.org/grpc v1.78.0
gopkg.in/yaml.v3 v3.0.1
)

Expand Down Expand Up @@ -174,7 +174,7 @@ require (
github.com/fvbommel/sortorder v1.1.0 // indirect
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
github.com/fzipp/gocyclo v0.6.0 // indirect
github.com/gabriel-vasile/mimetype v1.4.10 // indirect
github.com/gabriel-vasile/mimetype v1.4.12 // indirect
github.com/getkin/kin-openapi v0.131.0 // indirect
github.com/ghostiam/protogetter v0.3.15 // indirect
github.com/go-critic/go-critic v0.13.0 // indirect
Expand Down Expand Up @@ -415,28 +415,28 @@ require (
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0 // indirect
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.35.0 // indirect
go.opentelemetry.io/otel/metric v1.38.0 // indirect
go.opentelemetry.io/otel/metric v1.39.0 // indirect
go.opentelemetry.io/otel/sdk v1.38.0 // indirect
go.opentelemetry.io/otel/sdk/metric v1.38.0 // indirect
go.opentelemetry.io/otel/trace v1.38.0 // indirect
go.opentelemetry.io/otel/trace v1.39.0 // indirect
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/automaxprocs v1.6.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
go.uber.org/zap v1.24.0 // indirect
go.yaml.in/yaml/v2 v2.4.2 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/crypto v0.45.0 // indirect
golang.org/x/crypto v0.46.0 // indirect
golang.org/x/exp/typeparams v0.0.0-20250210185358-939b2ce775ac // indirect
golang.org/x/sync v0.18.0 // indirect
golang.org/x/sys v0.38.0 // indirect
golang.org/x/text v0.31.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.39.0 // indirect
golang.org/x/text v0.32.0 // indirect
golang.org/x/time v0.11.0 // indirect
golang.org/x/tools v0.38.0 // indirect
golang.org/x/tools v0.39.0 // indirect
golang.org/x/tools/go/expect v0.1.1-deprecated // indirect
golang.org/x/tools/go/packages/packagestest v0.1.1-deprecated // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20251029180050-ab9386a59fda // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
google.golang.org/protobuf v1.36.10 // indirect
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
Expand Down
Loading
Loading