Skip to content

v3.28.0

Compare
Choose a tag to compare
@oxyno-zeta oxyno-zeta released this 26 Sep 21:04
· 138 commits to master since this release
9ad31a5

How to apply updates on your project ?

  • Download patch at your project root
  • Run this command to edit project path and name in patch
sed -i 's/github\.com\/oxyno-zeta\/golang-graphql-example/YOUR_GOLANG_MODULE_NAME/g; s/golang-graphql-example/YOUR_PROJECT_NAME/g' patch_v3.27.0_to_v3.28.0.patch
  • If you have changed the project base path for the backend:
sed -i 's/backend\//YOUR_NEW_PROJECT_PATH/g' patch_v3.27.0_to_v3.28.0.patch
  • If you have changed the project base path for the frontend:
sed -i 's/frontend\//YOUR_NEW_PROJECT_PATH/g' patch_v3.27.0_to_v3.28.0.patch
  • Apply patch with command:
git apply --reject patch_v3.27.0_to_v3.28.0.patch
  • Check if there is error applying the patch
find . -regex '.*\.rej'
  • Check these errors. Apply them or not and clean .rej files.
  • Upgrade your tools
go install github.com/99designs/gqlgen@v0.17.38
go install go.uber.org/mock/mockgen@v0.3.0
go install gotest.tools/gotestsum@v1.11.0
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.54.2
  • Regenerate GraphQL, build and lint
echo **/mocks | xargs rm -Rf
make code/generate
make code/graphql
make code/lint
rm yarn.lock
yarn install
yarn lint
yarn build
  • Replace all github.com/golang/mock by go.uber.org/mock
  • Type
go mod tidy
  • Remove patch file