Skip to content
This repository was archived by the owner on Apr 21, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
975f861
Fix clickhouse schema dump with non-default database (#676)
Flamefork Feb 6, 2026
dd209c5
Bump js-yaml from 4.1.0 to 4.1.1 in /typescript (#741)
dependabot[bot] Feb 6, 2026
d45e021
Bump alpine from 3.23.2 to 3.23.3 (#739)
dependabot[bot] Feb 6, 2026
de56b2a
fix: lib/pq v1.11.1 broke connecting to Supavisor (#750)
dossy Feb 11, 2026
d8ce770
New release v2.30.0 (#745)
sofuture Feb 11, 2026
2d62e04
feat: issue #489 support clickhouse+http/s schemes and --driver flag …
FatherCandle Feb 11, 2026
40de0da
Bump golang from 1.25.5 to 1.25.6 (#740)
dependabot[bot] Feb 11, 2026
ba87f94
fix: extract file path from SQLite URL for shell commands (#574)
eloff Feb 12, 2026
285c25a
Add further common Postgres Unix socket URL examples (#459)
malteneuss Feb 12, 2026
422f30b
fix: comment out invalid docker ignore condition in dependabot.yml (#…
dossy Feb 12, 2026
e26a6ad
Bump golang from 1.25.6 to 1.26.0 (#753)
dependabot[bot] Feb 13, 2026
10ec839
feat: allow passing extra arguments to mysqldump/pgdump (#694)
zapotinschii Feb 16, 2026
5dc429d
bump version to v2.31.0 (#754)
sofuture Feb 18, 2026
dc4cb1b
Bump filippo.io/edwards25519 from 1.1.0 to 1.1.1 (#756)
dependabot[bot] Feb 19, 2026
3a4bbdb
Bump docker/build-push-action from 6 to 7 (#763)
dependabot[bot] Mar 11, 2026
e21ea7d
Bump docker/setup-buildx-action from 3 to 4 (#765)
dependabot[bot] Mar 11, 2026
3930f7a
Bump docker/login-action from 3 to 4 (#764)
dependabot[bot] Mar 11, 2026
c2c4713
Bump golang from 1.26.0 to 1.26.1 (#766)
dependabot[bot] Mar 12, 2026
01ef3e9
Bump actions/upload-artifact from 6 to 7 (#761)
dependabot[bot] Mar 12, 2026
c3613a3
Bump actions/download-artifact from 7 to 8 (#760)
dependabot[bot] Mar 12, 2026
d31283a
Bump minimatch from 3.1.2 to 3.1.5 in /typescript (#758)
dependabot[bot] Mar 12, 2026
f844083
Bump docker/setup-qemu-action from 3 to 4 (#768)
dependabot[bot] Mar 18, 2026
96f9c47
Bump docker/metadata-action from 5 to 6 (#769)
dependabot[bot] Mar 18, 2026
2791f6f
Bump flatted from 3.3.3 to 3.4.2 in /typescript (#772)
dependabot[bot] Mar 23, 2026
a5ab198
Bump google.golang.org/grpc from 1.78.0 to 1.79.3 (#771)
dependabot[bot] Mar 23, 2026
e274828
Bump picomatch from 4.0.3 to 4.0.4 in /typescript (#776)
dependabot[bot] Mar 26, 2026
c89e2fd
Release v2.32.0 (#777)
sofuture Mar 26, 2026
ca73b83
Bump mislav/bump-homebrew-formula-action from 3 to 4 (#775)
dependabot[bot] Apr 4, 2026
365589d
Bump handlebars from 4.7.8 to 4.7.9 in /typescript (#778)
dependabot[bot] Apr 4, 2026
2036c59
Update Go dependencies. (#779)
dossy Apr 4, 2026
4c8f80d
Sync upstream amacneil/dbmate
Apr 7, 2026
018a72c
Delete docs/plans/2026-02-04-set-role-validation-design.md
Ragge-dev Apr 7, 2026
67f380c
Delete docs/plans/2026-02-04-set-role-validation.md
Ragge-dev Apr 7, 2026
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 .github/workflows/post-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Bump Homebrew Formula
runs-on: ubuntu-latest
steps:
- uses: mislav/bump-homebrew-formula-action@v3
- uses: mislav/bump-homebrew-formula-action@v4
with:
formula-name: dbmate
env:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN apt-get update \

# golangci-lint
RUN curl -fsSL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s -- -b /usr/local/bin v2.9.0
| sh -s -- -b /usr/local/bin v2.11.4

# download modules
COPY go.* /src/
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ update-deps:
go mod verify
cd typescript && \
rm -f package-lock.json && \
./node_modules/.bin/npm-check-updates --upgrade && \
./node_modules/.bin/npm-check-updates --upgrade --peer && \
npm install && \
npm dedupe

Expand Down
72 changes: 36 additions & 36 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
module github.com/amacneil/dbmate/v2

go 1.24.1
go 1.25.0

toolchain go1.26.1

require (
cloud.google.com/go/bigquery v1.73.1
github.com/ClickHouse/clickhouse-go/v2 v2.43.0
cloud.google.com/go/bigquery v1.75.0
github.com/ClickHouse/clickhouse-go/v2 v2.44.0
github.com/go-sql-driver/mysql v1.9.3
github.com/joho/godotenv v1.5.1
github.com/lib/pq v1.11.2
github.com/mattn/go-sqlite3 v1.14.33
github.com/lib/pq v1.12.3
github.com/mattn/go-sqlite3 v1.14.40
github.com/stretchr/testify v1.11.1
github.com/urfave/cli/v2 v2.27.7
github.com/zenizh/go-capturer v0.0.0-20211219060012-52ea6c8fed04
google.golang.org/api v0.265.0
google.golang.org/api v0.274.0
gorm.io/driver/bigquery v1.2.0
)

require (
cloud.google.com/go v0.123.0 // indirect
cloud.google.com/go/auth v0.18.1 // indirect
cloud.google.com/go/auth v0.19.0 // indirect
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
cloud.google.com/go/compute/metadata v0.9.0 // indirect
cloud.google.com/go/iam v1.5.3 // indirect
filippo.io/edwards25519 v1.1.1 // indirect
cloud.google.com/go/iam v1.7.0 // indirect
filippo.io/edwards25519 v1.2.0 // indirect
github.com/ClickHouse/ch-go v0.71.0 // indirect
github.com/andybalholm/brotli v1.2.0 // indirect
github.com/andybalholm/brotli v1.2.1 // indirect
github.com/apache/arrow/go/v15 v15.0.2 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
Expand All @@ -36,18 +36,18 @@ require (
github.com/go-faster/errors v0.7.1 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/goccy/go-json v0.10.5 // indirect
github.com/goccy/go-json v0.10.6 // indirect
github.com/google/flatbuffers v25.12.19+incompatible // indirect
github.com/google/s2a-go v0.1.9 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.11 // indirect
github.com/googleapis/gax-go/v2 v2.17.0 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.14 // indirect
github.com/googleapis/gax-go/v2 v2.21.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/klauspost/compress v1.18.3 // indirect
github.com/klauspost/compress v1.18.5 // indirect
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
github.com/paulmach/orb v0.12.0 // indirect
github.com/pierrec/lz4/v4 v4.1.25 // indirect
github.com/paulmach/orb v0.13.0 // indirect
github.com/pierrec/lz4/v4 v4.1.26 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/segmentio/asm v1.2.1 // indirect
Expand All @@ -56,28 +56,28 @@ require (
github.com/xrash/smetrics v0.0.0-20250705151800-55b8f293f342 // indirect
github.com/zeebo/xxh3 v1.1.0 // indirect
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.65.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.65.0 // indirect
go.opentelemetry.io/otel v1.40.0 // indirect
go.opentelemetry.io/otel/metric v1.40.0 // indirect
go.opentelemetry.io/otel/trace v1.40.0 // indirect
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.67.0 // indirect
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.67.0 // indirect
go.opentelemetry.io/otel v1.43.0 // indirect
go.opentelemetry.io/otel/metric v1.43.0 // indirect
go.opentelemetry.io/otel/trace v1.43.0 // indirect
go.yaml.in/yaml/v3 v3.0.4 // indirect
golang.org/x/crypto v0.47.0 // indirect
golang.org/x/exp v0.0.0-20260112195511-716be5621a96 // indirect
golang.org/x/mod v0.32.0 // indirect
golang.org/x/net v0.49.0 // indirect
golang.org/x/oauth2 v0.34.0 // indirect
golang.org/x/sync v0.19.0 // indirect
golang.org/x/sys v0.40.0 // indirect
golang.org/x/telemetry v0.0.0-20260205145544-86a5c4bf3c8d // indirect
golang.org/x/text v0.33.0 // indirect
golang.org/x/time v0.14.0 // indirect
golang.org/x/tools v0.41.0 // indirect
golang.org/x/crypto v0.49.0 // indirect
golang.org/x/exp v0.0.0-20260312153236-7ab1446f8b90 // indirect
golang.org/x/mod v0.34.0 // indirect
golang.org/x/net v0.52.0 // indirect
golang.org/x/oauth2 v0.36.0 // indirect
golang.org/x/sync v0.20.0 // indirect
golang.org/x/sys v0.42.0 // indirect
golang.org/x/telemetry v0.0.0-20260316223853-b6b0c46d1ccd // indirect
golang.org/x/text v0.35.0 // indirect
golang.org/x/time v0.15.0 // indirect
golang.org/x/tools v0.43.0 // indirect
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect
google.golang.org/genproto v0.0.0-20260203192932-546029d2fa20 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260203192932-546029d2fa20 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260203192932-546029d2fa20 // indirect
google.golang.org/grpc v1.79.3 // indirect
google.golang.org/genproto v0.0.0-20260401024825-9d38bb4040a9 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20260401024825-9d38bb4040a9 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20260401024825-9d38bb4040a9 // indirect
google.golang.org/grpc v1.80.0 // indirect
google.golang.org/protobuf v1.36.11 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorm.io/gorm v1.31.1 // indirect
Expand Down
Loading
Loading