Raise test databases:
go run ./internal/cmd/testdbman create
Run tests:
go test ./... -p 1
Run the linter and try to autofix:
golangci-lint run --fix
The project uses sqlc (brew install sqlc) to generate Go targets for Postgres
queries. After changing an sqlc .sql file, generate Go with:
make generate
-
Fetch changes to the repo and any new tags. Export
VERSIONby incrementing the last tag. Executeupdate-submodule-versionsto add it the project'sgo.modfiles:git checkout master && git pull --rebase export VERSION=v0.x.y go run ./internal/cmd/update-submodule-versions/main.go
-
Prepare a PR with the changes, updating
CHANGELOG.mdwith any necessary additions at the same time. Have it reviewed and merged. -
Upon merge, pull down the changes, tag each module with the new version, and push the new tags:
git pull origin master git tag riverdriver/$VERSION -m "release riverdriver/$VERSION" git tag riverdriver/riverpgxv5/$VERSION -m "release riverdriver/riverpgxv5/$VERSION" git tag riverdriver/riverdatabasesql/$VERSION -m "release riverdriver/riverdatabasesql/$VERSION" git tag rivertype/$VERSION -m "release rivertype/$VERSION" git tag $VERSION
If you don't need a new River CLI release that requires API changes in the main River package from
$VERSION, tag that immediately as well (if you do, skip this command, and see "Releasing River CLI" below):git tag cmd/river/$VERSION -m "release cmd/river/$VERSION"
-
Push new tags to GitHub:
git push --tags
-
Cut a new GitHub release by visiting new release, selecting the new tag, and copying in the version's
CHANGELOG.mdcontent as the release body.
The CLI (./cmd/river) is different than other River submodules in that it doesn't use any replace directives so that it can stay installable with go install ...@latest.
If changes to it don't require updates to its other River dependencies (i.e. they're internal to the CLI only), it can be released normally as shown above.
If updates to River dependencies are required, then a second phase of the release is necessary:
-
Release River dependencies with an initial version (i.e. all the steps above).
-
Comment out
replacedirectives to River's top level packages in./cmd/river/go.mod. These were probably needed for developing the new feature, but need to be removed because they prevent the module from beinggo install-able. -
From
./cmd/river,go getto upgrade to the main package versions were just released (make sure you're getting$VERSIONand not thwarted by shenanigans in Go's module proxy):cmd ./cmd/river/ go get -u github.com/riverqueue/river@$VERSION go get -u github.com/riverqueue/river/riverdriver@$VERSION go get -u github.com/riverqueue/river/riverdriver/riverdatabasesql@$VERSION go get -u github.com/riverqueue/river/riverdriver/riverpgxv5@$VERSION
-
Run
go mod tidy:go mod tidy
-
Prepare a PR with the changes. Have it reviewed and merged.
-
Pull the changes back down, add a tag for
cmd/river/$VERSION, and push it to GitHub:git pull origin master git tag cmd/river/$VERSION -m "release cmd/river/$VERSION" git push --tags
The main
$VERSIONtag andcmd/river/$VERSIONwill point to different commits, and although a little odd, is tolerable.