Browse Source

fix(projects): replace satori/uuid in some projects because it is unmaintained and vulnurable

1153-word-abbreviate
miguel 2 years ago committed by MSilva95
parent
commit
219e7b4cbd
  1. 2
      subjects/forum/README.md
  2. 6
      subjects/forum/advanced-features/README.md
  3. 6
      subjects/forum/authentication/README.md
  4. 6
      subjects/forum/image-upload/README.md
  5. 6
      subjects/forum/moderation/README.md
  6. 2
      subjects/forum/security/README.md
  7. 6
      subjects/real-time-forum/README.md
  8. 6
      subjects/real-time-forum/typing-in-progress/README.md
  9. 2
      subjects/social-network/README.md

2
subjects/forum/README.md

@ -82,7 +82,7 @@ For the forum project you must use Docker. You can read about docker basics in t
- All [standard Go](https://golang.org/pkg/) packages are allowed.
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/satori/go.uuid)
- [UUID](https://github.com/gofrs/uuid)
This project will help you learn about:

6
subjects/forum/advanced-features/README.md

@ -30,6 +30,6 @@ We encourage you to add any other additional features that you find relevant.
### Allowed packages
- All [standard go](https://golang.org/pkg/) packages are allowed.
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/gofrs/uuid)

6
subjects/forum/authentication/README.md

@ -19,9 +19,9 @@ Some examples of authentication means are:
### Allowed packages
- All [standard go](https://golang.org/pkg/) packages are allowed.
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/gofrs/uuid)
This project will help you learn about:

6
subjects/forum/image-upload/README.md

@ -26,9 +26,9 @@ The max size of the images to load should be 20 mb. If there is an attempt to lo
### Allowed packages
- All [standard go](https://golang.org/pkg/) packages are allowed.
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/gofrs/uuid)
This project will help you learn about:

6
subjects/forum/moderation/README.md

@ -44,9 +44,9 @@ You should implement at least 4 types of users :
### Allowed packages
- All [standard go](https://golang.org/pkg/) packages are allowed.
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/gofrs/uuid)
This project will help you learn about:

2
subjects/forum/security/README.md

@ -38,7 +38,7 @@ Sessions and cookies were implemented in the [previous project](../README.md) bu
- All [standard Go](https://golang.org/pkg/) packages are allowed.
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/satori/go.uuid)
- [UUID](https://github.com/gofrs/uuid)
- [autocert](https://pkg.go.dev/golang.org/x/crypto/acme/autocert)
This project will help you learn about :

6
subjects/real-time-forum/README.md

@ -71,9 +71,9 @@ As it is expected, the messages should work in real time, in other words, if a u
- All [standard go](https://golang.org/pkg/) packages are allowed.
- [Gorilla](https://pkg.go.dev/github.com/gorilla/websocket) websocket
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/gofrs/uuid)
This project will help you learn about:

6
subjects/real-time-forum/typing-in-progress/README.md

@ -27,9 +27,9 @@ To help with the display of the typing in progress you can take a look on the js
- All [standard go](https://golang.org/pkg/) packages are allowed.
- [Gorilla](https://pkg.go.dev/github.com/gorilla/websocket) websocket
- github.com/mattn/go-sqlite3
- golang.org/x/crypto/bcrypt
- github.com/satori/go.uuid
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/gofrs/uuid)
This project will help you learn about:

2
subjects/social-network/README.md

@ -220,7 +220,7 @@ Every other notification created by you that isn't on the list is welcomed too.
- [migration](https://pkg.go.dev/github.com/Boostport/migration)
- [sqlite3](https://github.com/mattn/go-sqlite3)
- [bcrypt](https://pkg.go.dev/golang.org/x/crypto/bcrypt)
- [UUID](https://github.com/satori/go.uuid)
- [UUID](https://github.com/gofrs/uuid)
This project will help you learn about:

Loading…
Cancel
Save