-
Notifications
You must be signed in to change notification settings - Fork 22
Move API framework to its own repo for reuse #307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,14 +1,13 @@ | ||
| module riverqueue.com/riverui | ||
|
|
||
| go 1.22.0 | ||
| go 1.23.0 | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ugh, I tried not to change this, but the new repo really wanted to be Go 1.23 (and run of Probably okay though since we don't really need to make as much an effort to support very old Go versions for this project, and currently only 1.23 and 1.24 are supported.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yeah I think it's fine, latest 2 Go versions is a reasonable and common stance.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yep, +1. SG. |
||
|
|
||
| toolchain go1.23.5 | ||
| toolchain go1.24.1 | ||
|
|
||
| require ( | ||
| github.com/go-playground/validator/v10 v10.25.0 | ||
| github.com/google/uuid v1.6.0 | ||
| github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438 | ||
| github.com/jackc/pgx/v5 v5.7.2 | ||
| github.com/riverqueue/apiframe v0.0.0-20250310051455-203f3fd8260f | ||
| github.com/riverqueue/river v0.18.0 | ||
| github.com/riverqueue/river/riverdriver v0.18.0 | ||
| github.com/riverqueue/river/riverdriver/riverpgxv5 v0.18.0 | ||
|
|
@@ -24,6 +23,8 @@ require ( | |
| github.com/gabriel-vasile/mimetype v1.4.8 // indirect | ||
| github.com/go-playground/locales v0.14.1 // indirect | ||
| github.com/go-playground/universal-translator v0.18.1 // indirect | ||
| github.com/go-playground/validator/v10 v10.25.0 // indirect | ||
| github.com/jackc/pgerrcode v0.0.0-20240316143900-6e2875d9b438 // indirect | ||
| github.com/jackc/pgpassfile v1.0.0 // indirect | ||
| github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect | ||
| github.com/jackc/puddle/v2 v2.2.2 // indirect | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We were on 1.64.4 elsewhere so we probably need to bump everywhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Luckily I don't think the new versions make that big of a difference (at least between 1.63 and 1.64). The main thing for some of them recently was getting in Go 1.24 support. But yeah, we should start rolling all the versions forward as we get to them.