Skip to content
This repository was archived by the owner on Sep 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 6 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
79 changes: 79 additions & 0 deletions .golangci.bck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
linters:
enable-all: true
disable:
- varnamelen
- gomoddirectives
- nlreturn
- wsl
- musttag # FIXME
- depguard
- canonicalheader
- tenv # deprecated

linters-settings:
ireturn:
allow:
- anon
- error
- empty
- generic
- stdlib

issues:
exclude-rules:
- path: _test\.go
linters:
- funlen
- ireturn
- goconst
- revive

- linters:
- lll
source: "^//go:generate "

- linters:
- gochecknoglobals
text: "Version is a global variable"

- path: schema\.resolvers\.go
linters:
- ireturn
- lll
- gofumpt

- path: services/watchtower/pkg
linters:
- perfsprint
- nolintlint
- testpackage
- paralleltest
- wrapcheck
- thelper
- tagliatelle
- stylecheck
- ireturn
- mnd
- goerr113
- err113
- gochecknoglobals
- exhaustruct
- nilnil
- exhaustive
- forcetypeassert
- containedctx
- unparam
- revive
- prealloc
- nestif
- funlen
- misspell
- lll
- godox
- errname
- cyclop
- godot
- gci
- gosec
- gocognit
- dupl
163 changes: 89 additions & 74 deletions .golangci.yaml
Original file line number Diff line number Diff line change
@@ -1,79 +1,94 @@
version: "2"
linters:
enable-all: true
default: all
disable:
- varnamelen
- canonicalheader
- depguard
- gomoddirectives
- musttag
- nlreturn
- varnamelen
- wsl
- musttag # FIXME
- depguard
- canonicalheader
- tenv # deprecated

linters-settings:
ireturn:
allow:
- anon
- error
- empty
- generic
- stdlib

issues:
exclude-rules:
- path: _test\.go
linters:
- funlen
- ireturn
- goconst
- revive

- linters:
- lll
source: "^//go:generate "

- linters:
- gochecknoglobals
text: "Version is a global variable"

- path: schema\.resolvers\.go
linters:
- ireturn
- lll
- gofumpt

- path: services/watchtower/pkg
linters:
- perfsprint
- nolintlint
- testpackage
- paralleltest
- wrapcheck
- thelper
- tagliatelle
- stylecheck
- ireturn
- mnd
- goerr113
- err113
- gochecknoglobals
- exhaustruct
- nilnil
- exhaustive
- forcetypeassert
- containedctx
- unparam
- revive
- prealloc
- nestif
- funlen
- misspell
- lll
- godox
- errname
- cyclop
- godot
- gci
- gosec
- gocognit
- dupl
settings:
ireturn:
allow:
- anon
- error
- empty
- generic
- stdlib
exclusions:
generated: lax
presets:
- comments
- common-false-positives
- legacy
- std-error-handling
rules:
- linters:
- funlen
- goconst
- ireturn
- revive
path: _test\.go
- linters:
- lll
source: '^//go:generate '
- linters:
- gochecknoglobals
text: Version is a global variable
- linters:
- ireturn
- lll
path: schema\.resolvers\.go
- linters:
- containedctx
- cyclop
- dupl
- err113
- errname
- exhaustive
- exhaustruct
- forcetypeassert
- funlen
- gochecknoglobals
- gocognit
- godot
- godox
- gosec
- ireturn
- lll
- misspell
- mnd
- nestif
- nilnil
- nolintlint
- paralleltest
- perfsprint
- prealloc
- revive
- staticcheck
- tagliatelle
- testpackage
- thelper
- unparam
- wrapcheck
path: services/watchtower/pkg
paths:
- third_party$
- builtin$
- examples$
formatters:
enable:
- gci
- gofmt
- gofumpt
- goimports
exclusions:
generated: lax
paths:
- third_party$
- builtin$
- examples$
- schema\.resolvers\.go
- services/watchtower/pkg
6 changes: 3 additions & 3 deletions backend/nhost/nhost.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ httpPoolSize = 100
version = 20

[auth]
version = '0.40.1'
version = '0.41.1'

[auth.elevatedPrivileges]
mode = 'disabled'
Expand Down Expand Up @@ -182,7 +182,7 @@ limit = 1000
interval = '1m'

[postgres]
version = '17.4-20250530-1'
version = '17.5-20250728-1'

[postgres.resources]
[postgres.resources.storage]
Expand All @@ -191,7 +191,7 @@ capacity = 1
[provider]

[storage]
version = '0.7.2'
version = '0.8.0-beta3'

[observability]
[observability.grafana]
Expand Down
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## main

- 20250811 feat (package/nhost-js): update openapi specs and properly generate formData when uploading/updating files #47
- 20250705 feat chore (nhost-js): update openapi #44
- 20250704 feat (packages/nhost-js): added functions.post method and improve documentation #43
- 20250627 feat (packages/nhost-js): graphql.post -> graphql.request #41
Expand Down
Loading