Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
d33c370
Update qor5/x/v3 and improve ServeHTTP error handling
molon Sep 8, 2025
82205c9
Add sync.Once to Builder ServeHTTP initialization
molon Sep 8, 2025
fc0ec93
Handle nil handler in Builder.ServeHTTP
molon Sep 8, 2025
8fa961e
Add starter package and update dependencies
molon Sep 22, 2025
3fc0042
Update github.com/qor5/x/v3
molon Sep 23, 2025
3419d9b
Refactor S3 storage setup to use s3x package
molon Sep 23, 2025
d6f331f
Use PascalCase for field names in validation errors
molon Sep 23, 2025
f95429e
Update github.com/qor5/x/v3 to latest version
molon Sep 26, 2025
2812287
Merge branch 'fix-preset-build' into field-err
molon Sep 26, 2025
eee1e40
Refactor handler hooks and improve user role saving
molon Sep 26, 2025
4443a5a
Fix error handling in grpcWrapper.convert method to ensure proper val…
molon Sep 29, 2025
67eb860
add filterNotification
buggoing Oct 11, 2025
7c63157
Merge branch 'main' into field-err
zhangshanwen Oct 16, 2025
2459c7f
Update dependencies in go.mod and go.sum
zhangshanwen Oct 16, 2025
e75aecc
Update dependency versions in go.sum
zhangshanwen Oct 16, 2025
2b0a7dd
Update S3 client setup to include nil parameter
zhangshanwen Oct 16, 2025
ce99c3c
Add validation and filter notification examples
zhangshanwen Oct 16, 2025
ced4fc3
style: format code with Gofumpt
deepsource-autofix[bot] Oct 16, 2025
e425e0b
Change validation error from field to global error
zhangshanwen Oct 16, 2025
cdfab8b
Merge branch 'field-err' of https://github.com/qor5/admin into field-err
zhangshanwen Oct 16, 2025
6ebeb52
Add test for ServeHTTP nil handler error handling
zhangshanwen Oct 16, 2025
a2fbc61
style: format code with Gofumpt
deepsource-autofix[bot] Oct 16, 2025
7a58501
Add embedded default config and config loader
zhangshanwen Oct 17, 2025
5287b1f
Rename product_test.go to pagebuilder_test.go
zhangshanwen Oct 17, 2025
4a76d33
Add tests for auth and user listing features
zhangshanwen Oct 17, 2025
7fc5981
style: format code with Gofumpt
deepsource-autofix[bot] Oct 17, 2025
8ea78bd
Fix TOTP revocation and expand user tests
zhangshanwen Oct 17, 2025
d902341
Add gRPC DataOperator example and expand user tests
zhangshanwen Oct 17, 2025
159eecd
style: format code with Gofumpt
deepsource-autofix[bot] Oct 17, 2025
39f320b
Remove unused PresetsDataOperatorWithGRPC example
zhangshanwen Oct 17, 2025
58850c0
Merge branch 'field-err' of https://github.com/qor5/admin into field-err
zhangshanwen Oct 17, 2025
0995d11
Add mock GRPC DataOperator example and tests
zhangshanwen Oct 17, 2025
c7fe83d
Add login page test and update test config for auth
zhangshanwen Oct 17, 2025
bd980c8
style: format code with Gofumpt
deepsource-autofix[bot] Oct 17, 2025
ed4a5e1
Enable debug in tests and add auth reset tests
zhangshanwen Oct 20, 2025
99c4942
Add tests for password reset edge cases
zhangshanwen Oct 20, 2025
e621abc
Remove redundant comments in auth_test.go
zhangshanwen Oct 20, 2025
9984f09
Refactor reset password test for short password failure
zhangshanwen Oct 20, 2025
0a6c47a
style: format code with Gofumpt
deepsource-autofix[bot] Oct 20, 2025
ed54f5b
Merge branch 'main' into field-err
zhangshanwen Oct 20, 2025
5f0a6ee
Update dependencies in go.mod and go.sum
zhangshanwen Oct 20, 2025
28c3754
Merge branch 'main' into field-err
zhangshanwen Oct 20, 2025
4ebde56
Update qor5/x dependency and improve reset password tests
zhangshanwen Oct 21, 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
40 changes: 26 additions & 14 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ require (
github.com/fatih/color v1.17.0
github.com/go-chi/chi/v5 v5.2.2
github.com/gocarina/gocsv v0.0.0-20240520201108-78e41c74b4b1
github.com/golang-jwt/jwt/v4 v4.5.2
github.com/google/go-cmp v0.7.0
github.com/google/uuid v1.6.0
github.com/gosimple/slug v1.14.0
Expand All @@ -21,7 +22,7 @@ require (
github.com/lib/pq v1.10.9
github.com/manifoldco/promptui v0.9.0
github.com/markbates/goth v1.80.0
github.com/mholt/archiver/v4 v4.0.0-alpha.8
github.com/mholt/archiver/v4 v4.0.0-alpha.9
github.com/microcosm-cc/bluemonday v1.0.27
github.com/orcaman/concurrent-map/v2 v2.0.1
github.com/ory/ladon v1.3.0
Expand All @@ -31,7 +32,7 @@ require (
github.com/qor5/imaging v1.6.4
github.com/qor5/web v1.3.2
github.com/qor5/web/v3 v3.0.12-0.20250618085230-3764d0e521a8
github.com/qor5/x/v3 v3.0.14-0.20250905062023-782b462a2bc0
github.com/qor5/x/v3 v3.0.0-00010101000000-000000000000
github.com/samber/lo v1.50.0
github.com/shurcooL/sanitized_anchor_name v1.0.0
github.com/spf13/cast v1.7.1
Expand All @@ -42,6 +43,7 @@ require (
github.com/theplant/docgo v0.0.16
github.com/theplant/gofixtures v1.1.3
github.com/theplant/htmlgo v1.0.3
github.com/theplant/inject v1.0.2
github.com/theplant/osenv v0.0.2
github.com/theplant/relay v0.4.3-0.20250424075128-61850ded6ace
github.com/theplant/sliceutils v0.0.0-20200406042209-89153d988eb1
Expand All @@ -55,18 +57,23 @@ require (
go.uber.org/zap v1.27.0
golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0
golang.org/x/text v0.28.0
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c
google.golang.org/grpc v1.75.0
gorm.io/driver/postgres v1.6.0
gorm.io/driver/sqlite v1.5.6
gorm.io/gorm v1.30.1
)

require (
cloud.google.com/go/compute/metadata v0.7.0 // indirect
cloud.google.com/go/compute/metadata v0.8.0 // indirect
connectrpc.com/connect v1.18.1 // indirect
connectrpc.com/cors v0.1.0 // indirect
dario.cat/mergo v1.0.2 // indirect
github.com/Azure/go-ansiterm v0.0.0-20250102033503-faa5f7b0171c // indirect
github.com/Microsoft/go-winio v0.6.2 // indirect
github.com/NYTimes/gziphandler v1.1.1 // indirect
github.com/andybalholm/brotli v1.1.0 // indirect
github.com/STARRY-S/zip v0.1.0 // indirect
github.com/andybalholm/brotli v1.1.1 // indirect
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7 // indirect
github.com/aws/aws-sdk-go-v2/config v1.29.6 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.59 // indirect
Expand All @@ -85,7 +92,7 @@ require (
github.com/aws/smithy-go v1.22.5 // indirect
github.com/aymerick/douceur v0.2.0 // indirect
github.com/bodgit/plumbing v1.3.0 // indirect
github.com/bodgit/sevenzip v1.5.1 // indirect
github.com/bodgit/sevenzip v1.6.1 // indirect
github.com/bodgit/windows v1.0.1 // indirect
github.com/boombuler/barcode v1.0.2 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
Expand All @@ -103,24 +110,26 @@ require (
github.com/docker/docker v28.3.3+incompatible // indirect
github.com/docker/go-connections v0.5.0 // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/dsnet/compress v0.0.2-0.20210315054119-f66993602bf5 // indirect
github.com/dsnet/compress v0.0.2-0.20230904184137-39efe44ab707 // indirect
github.com/ebitengine/purego v0.8.4 // indirect
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
github.com/felixge/httpsnoop v1.0.4 // indirect
github.com/go-logr/logr v1.4.3 // indirect
github.com/go-logr/stdr v1.2.2 // indirect
github.com/go-ole/go-ole v1.3.0 // indirect
github.com/go-playground/form v3.1.4+incompatible // indirect
github.com/go-playground/form/v4 v4.2.1 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/gorilla/css v1.0.1 // indirect
github.com/gorilla/mux v1.8.1 // indirect
github.com/gorilla/securecookie v1.1.2 // indirect
github.com/gorilla/sessions v1.3.0 // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.25.1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.21.0 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/golang-lru v1.0.2 // indirect
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
Expand Down Expand Up @@ -148,15 +157,16 @@ require (
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/morikuni/aec v1.0.0 // indirect
github.com/nwaples/rardecode/v2 v2.0.0-beta.2 // indirect
github.com/nwaples/rardecode/v2 v2.0.0-beta.4 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.1.1 // indirect
github.com/ory/pagination v0.0.1 // indirect
github.com/oschwald/maxminddb-golang v1.13.0 // indirect
github.com/pierrec/lz4/v4 v4.1.21 // indirect
github.com/pierrec/lz4/v4 v4.1.22 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
github.com/redis/go-redis/v9 v9.11.0 // indirect
github.com/rs/cors v1.11.1 // indirect
github.com/russross/blackfriday v1.6.0 // indirect
github.com/sergi/go-diff v1.3.1 // indirect
github.com/shirou/gopsutil/v4 v4.25.6 // indirect
Expand All @@ -165,12 +175,14 @@ require (
github.com/shurcooL/highlight_go v0.0.0-20230708025100-33e05792540a // indirect
github.com/shurcooL/octicon v0.0.0-20230705024016-66bff059edb8 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/sorairolake/lzip-go v0.3.5 // indirect
github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d // indirect
github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/testcontainers/testcontainers-go v0.38.0 // indirect
github.com/testcontainers/testcontainers-go/modules/redis v0.38.0 // indirect
github.com/theplant/inject v1.0.2 // indirect
github.com/theplant/validator v0.0.0-20210202101755-357a9daa8f5f // indirect
github.com/therootcompany/xz v1.0.1 // indirect
github.com/tidwall/gjson v1.17.3 // indirect
github.com/tidwall/match v1.1.1 // indirect
Expand All @@ -194,12 +206,12 @@ require (
golang.org/x/sync v0.16.0 // indirect
golang.org/x/sys v0.35.0 // indirect
golang.org/x/time v0.12.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20250811230008-5f3141c8851a // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250818200422-3122310a409c // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20250818200422-3122310a409c // indirect
google.golang.org/protobuf v1.36.8 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

// replace github.com/qor5/web/v3 => ../web

// replace github.com/qor5/x/v3 => ../x
replace github.com/qor5/x/v3 => ../x
Loading
Loading