diff options
| author | 2025-06-10 01:08:57 +0200 | |
|---|---|---|
| committer | 2025-06-10 01:08:57 +0200 | |
| commit | 37f9a9fa9496c353d3e2c0c3b2d842aea60a0d11 (patch) | |
| tree | f75c82f9c370b1ef6ec1663cfec131ef586078d0 /go.mod | |
| parent | [bugfix] return 422 for invalid status visibility (#4252) (diff) | |
| download | gotosocial-37f9a9fa9496c353d3e2c0c3b2d842aea60a0d11.tar.xz | |
[chore] Upgrade to SQLite 3.50.1 (#4255)
# Description
## Checklist
Please put an x inside each checkbox to indicate that you've read and followed it: `[ ]` -> `[x]`
If this is a documentation change, only the first checkbox must be filled (you can delete the others if you want).
- [x] I/we have read the [GoToSocial contribution guidelines](https://codeberg.org/superseriousbusiness/gotosocial/src/branch/main/CONTRIBUTING.md).
- [ ] I/we have discussed the proposed changes already, either in an issue on the repository, or in the Matrix chat.
- [x] I/we have not leveraged AI to create the proposed changes.
- [ ] I/we have performed a self-review of added code.
- [ ] I/we have written code that is legible and maintainable by others.
- [ ] I/we have commented the added code, particularly in hard-to-understand areas.
- [ ] I/we have made any necessary changes to documentation.
- [ ] I/we have added tests that cover new code.
- [ ] I/we have run tests and they pass locally with the changes.
- [ ] I/we have run `go fmt ./...` and `golangci-lint run`.
Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4255
Co-authored-by: Daenney <daenney@noreply.codeberg.org>
Co-committed-by: Daenney <daenney@noreply.codeberg.org>
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -54,7 +54,7 @@ require ( github.com/miekg/dns v1.1.66 github.com/minio/minio-go/v7 v7.0.92 github.com/mitchellh/mapstructure v1.5.0 - github.com/ncruces/go-sqlite3 v0.26.0 + github.com/ncruces/go-sqlite3 v0.26.1 github.com/oklog/ulid v1.3.1 github.com/pquerna/otp v1.5.0 github.com/rivo/uniseg v0.4.7 @@ -83,12 +83,12 @@ require ( go.opentelemetry.io/otel/sdk/metric v1.36.0 go.opentelemetry.io/otel/trace v1.36.0 go.uber.org/automaxprocs v1.6.0 - golang.org/x/crypto v0.38.0 + golang.org/x/crypto v0.39.0 golang.org/x/image v0.27.0 golang.org/x/net v0.40.0 golang.org/x/oauth2 v0.30.0 golang.org/x/sys v0.33.0 - golang.org/x/text v0.25.0 + golang.org/x/text v0.26.0 gopkg.in/mcuadros/go-syslog.v2 v2.3.0 gopkg.in/yaml.v3 v3.0.1 modernc.org/sqlite v1.37.1 @@ -228,8 +228,8 @@ require ( go.uber.org/multierr v1.11.0 // indirect golang.org/x/arch v0.16.0 // indirect golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect - golang.org/x/mod v0.24.0 // indirect - golang.org/x/sync v0.14.0 // indirect + golang.org/x/mod v0.25.0 // indirect + golang.org/x/sync v0.15.0 // indirect golang.org/x/tools v0.33.0 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20250519155744-55703ea1f237 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20250519155744-55703ea1f237 // indirect |
