-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(server,docs): websocket server error handling, more documents. (#70)
- Loading branch information
Showing
11 changed files
with
87 additions
and
129 deletions.
There are no files selected for viewing
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,37 @@ | ||
TODO | ||
# Update Dependencies | ||
|
||
This document is about how to update the immortal repository dependencies to latest version. | ||
|
||
### Packages | ||
|
||
First of all you need to update golang dependencies to latest version using this commands: | ||
|
||
```sh | ||
go get -u ./... | ||
go mod tidy | ||
``` | ||
Once all packages got updated, make sure you run `make build` and `make test` commands to make sure | ||
none of previous behaviors are broken. If any packages had breaking changes or some of them are deprecated, you need to | ||
update the code and use new methods or use another package. | ||
|
||
### Dev tools | ||
|
||
After packages, you need to update dev tools such as `golangci-lint`, etc. | ||
|
||
You can go to root [make file](../makefile) and find all dev tools on devtools part. | ||
You have to find latest version of dev tools and replace them here. | ||
|
||
> Note: consider breaking changes and deprecated packages for devtools too. | ||
### Go version | ||
|
||
You have to update the go version to latest release in [go.mod](../go.mod). | ||
Make sure you are updating version of Golang on [Dockerfile](../dockerfile). | ||
|
||
> Note: you must run `make build` after this change to make sure everything works smoothly. | ||
### CI/CD and GitHub workflows | ||
|
||
You need to go to [workflows](../.github/workflows) directory and update old GitHub actions to latest version. | ||
You can find the latest version by searching the action name on GitHub. | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ import "fmt" | |
var ( | ||
major = 0 | ||
minor = 0 | ||
patch = 3 | ||
patch = 4 | ||
meta = "beta" | ||
) | ||
|
||
|