Skip to content

Commit a17e465

Browse files
committed
refactor(deps): update go.mod to use Fiber v2 and adjust README links
1 parent 56a12f9 commit a17e465

File tree

21 files changed

+143
-221
lines changed

21 files changed

+143
-221
lines changed

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ Here you can find the most **delicious** recipes to cook delicious meals using o
1919
- [Auth + JWT](./auth-jwt/README.md) - Simple JWT authentication.
2020
- [Autocert](./autocert/README.md) - Automatic TLS certificate management.
2121
- [AWS Elastic Beanstalk](./aws-eb/README.md) - Deploying to AWS Elastic Beanstalk.
22-
- [AWS SAM](./aws-sam/README.md) - Serverless applications with AWS SAM.
2322
- [AWS SAM Container](./aws-sam-container/README.md) - Containerized serverless applications with AWS SAM.
2423
- [AWS SES Email Sender](./aws-ses-sender/README.md) - AWS SES-based Golang email delivery service. Provides email dispatch processing, status tracking, scheduled sending, and result analysis capabilities.
2524
- [Bootstrap](./bootstrap/README.md) - Integrating Bootstrap.
@@ -57,17 +56,15 @@ Here you can find the most **delicious** recipes to cook delicious meals using o
5756
- [I18n](./i18n/README.md) - Internationalization support.
5857
- [JWT](./jwt/README.md) - Using JSON Web Tokens (JWT) for authentication.
5958
- [Kubernetes](./k8s/README.md) - Deploying applications to Kubernetes.
60-
- [Local Development with Testcontainers](./local-development-testcontainers/README.md) - Local development with Testcontainers.
59+
- [Todo App + Auth + GORM + Testcontainers](./local-development-testcontainers/README.md) - A Todo application with authentication using GORM and Postgres.
6160
- [Memgraph](./memgraph/README.md) - Using Memgraph.
6261
- [MinIO](./minio/README.md) - A simple application for uploading and downloading files from MinIO.
6362
- [MongoDB](./mongodb/README.md) - Connecting to a MongoDB database.
64-
- [Monitoring with Apitally](./monitoring-with-apitally/README.md) - A simple REST API with monitoring and request logging using Apitally.
6563
- [Multiple Ports](./multiple-ports/README.md) - Running an application on multiple ports.
6664
- [MySQL](./mysql/README.md) - Connecting to a MySQL database.
6765
- [Neo4j](./neo4j/README.md) - Connecting to a Neo4j database.
6866
- [OAuth2](./oauth2/README.md) - Implementing OAuth2 authentication.
6967
- [Google OAuth2](./oauth2-google/README.md) - Implementing Google OAuth2 authentication.
70-
- [OpenAPI](./openapi/README.md) - Generate OpenAPI 3 documentation and JSON schema for your application.
7168
- [Optional Parameter](./optional-parameter/README.md) - Handling optional parameters.
7269
- [Parsley](./parsley/README.md) - Using Parsley for dependency injection in an application.
7370
- [PostgreSQL](./postgresql/README.md) - Connecting to a PostgreSQL database.

β€Žlocal-development-testcontainers/README.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description: A Todo application with authentication using GORM and Postgres.
66

77
# Todo App with Auth using GORM and Testcontainers
88

9-
[![Github](https://img.shields.io/static/v1?label=&message=Github&color=2ea44f&style=for-the-badge&logo=github)](https://github.com/gofiber/recipes/tree/master/todo-app-testcontainers-postgres) [![StackBlitz](https://img.shields.io/static/v1?label=&message=StackBlitz&color=2ea44f&style=for-the-badge&logo=StackBlitz)](https://stackblitz.com/github.com/gofiber/recipes/tree/master/todo-app-testcontainers-postgres)
9+
[![Github](https://img.shields.io/static/v1?label=&message=Github&color=2ea44f&style=for-the-badge&logo=github)](https://github.com/gofiber/recipes/tree/master/local-development-testcontainers) [![StackBlitz](https://img.shields.io/static/v1?label=&message=StackBlitz&color=2ea44f&style=for-the-badge&logo=StackBlitz)](https://stackblitz.com/github/gofiber/recipes/tree/master/local-development-testcontainers)
1010

1111
This project demonstrates a Todo application with authentication using GORM and Testcontainers.
1212

File renamed without changes.

β€Žaws-sam/app/go.modβ€Ž renamed to β€Žv2/aws-sam/app/go.modβ€Ž

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,21 @@
11
require (
22
github.com/aws/aws-lambda-go v1.50.0
33
github.com/awslabs/aws-lambda-go-api-proxy v0.16.2
4-
github.com/gofiber/fiber/v3 v3.0.0-rc.3
4+
github.com/gofiber/fiber/v2 v2.52.10
55
)
66

77
require (
88
github.com/andybalholm/brotli v1.2.0 // indirect
99
github.com/clipperhouse/stringish v0.1.1 // indirect
1010
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
11-
github.com/gofiber/fiber/v2 v2.52.1 // indirect
12-
github.com/gofiber/schema v1.6.0 // indirect
13-
github.com/gofiber/utils/v2 v2.0.0-rc.2 // indirect
1411
github.com/google/uuid v1.6.0 // indirect
1512
github.com/klauspost/compress v1.18.1 // indirect
1613
github.com/mattn/go-colorable v0.1.14 // indirect
1714
github.com/mattn/go-isatty v0.0.20 // indirect
1815
github.com/mattn/go-runewidth v0.0.19 // indirect
19-
github.com/philhofer/fwd v1.2.0 // indirect
20-
github.com/tinylib/msgp v1.5.0 // indirect
2116
github.com/valyala/bytebufferpool v1.0.0 // indirect
2217
github.com/valyala/fasthttp v1.68.0 // indirect
23-
golang.org/x/crypto v0.44.0 // indirect
24-
golang.org/x/net v0.47.0 // indirect
2518
golang.org/x/sys v0.38.0 // indirect
26-
golang.org/x/text v0.31.0 // indirect
2719
)
2820

2921
replace gopkg.in/yaml.v2 => gopkg.in/yaml.v2 v2.2.8

β€Žaws-sam/app/go.sumβ€Ž renamed to β€Žv2/aws-sam/app/go.sumβ€Ž

Lines changed: 8 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,8 @@ github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c
1212
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
1313
github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA=
1414
github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM=
15-
github.com/fxamacker/cbor/v2 v2.9.0 h1:NpKPmjDBgUfBms6tr6JZkTHtfFGcMKsw3eGcmD/sapM=
16-
github.com/fxamacker/cbor/v2 v2.9.0/go.mod h1:vM4b+DJCtHn+zz7h3FFp/hDAI9WNWCsZj23V5ytsSxQ=
17-
github.com/gofiber/fiber/v2 v2.52.1 h1:1RoU2NS+b98o1L77sdl5mboGPiW+0Ypsi5oLmcYlgHI=
18-
github.com/gofiber/fiber/v2 v2.52.1/go.mod h1:KEOE+cXMhXG0zHc9d8+E38hoX+ZN7bhOtgeF2oT6jrQ=
19-
github.com/gofiber/fiber/v3 v3.0.0-rc.3 h1:h0KXuRHbivSslIpoHD1R/XjUsjcGwt+2vK0avFiYonA=
20-
github.com/gofiber/fiber/v3 v3.0.0-rc.3/go.mod h1:LNBPuS/rGoUFlOyy03fXsWAeWfdGoT1QytwjRVNSVWo=
21-
github.com/gofiber/schema v1.6.0 h1:rAgVDFwhndtC+hgV7Vu5ItQCn7eC2mBA4Eu1/ZTiEYY=
22-
github.com/gofiber/schema v1.6.0/go.mod h1:WNZWpQx8LlPSK7ZaX0OqOh+nQo/eW2OevsXs1VZfs/s=
23-
github.com/gofiber/utils/v2 v2.0.0-rc.2 h1:NvJTf7yMafTq16lUOJv70nr+HIOLNQcvGme/X+ftbW8=
24-
github.com/gofiber/utils/v2 v2.0.0-rc.2/go.mod h1:gXins5o7up+BQFiubmO8aUJc/+Mhd7EKXIiAK5GBomI=
15+
github.com/gofiber/fiber/v2 v2.52.10 h1:jRHROi2BuNti6NYXmZ6gbNSfT3zj/8c0xy94GOU5elY=
16+
github.com/gofiber/fiber/v2 v2.52.10/go.mod h1:YEcBbO/FB+5M1IZNBP9FO3J9281zgPAreiI1oqg8nDw=
2517
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
2618
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
2719
github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0=
@@ -40,33 +32,23 @@ github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE=
4032
github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU=
4133
github.com/onsi/gomega v1.27.7 h1:fVih9JD6ogIiHUN6ePK7HJidyEDpWGVB5mzM7cWNXoU=
4234
github.com/onsi/gomega v1.27.7/go.mod h1:1p8OOlwo2iUUDsHnOrjE5UKYJ+e3W8eQ3qSlRahPmr4=
43-
github.com/philhofer/fwd v1.2.0 h1:e6DnBTl7vGY+Gz322/ASL4Gyp1FspeMvx1RNDoToZuM=
44-
github.com/philhofer/fwd v1.2.0/go.mod h1:RqIHx9QI14HlwKwm98g9Re5prTQ6LdeRQn+gXJFxsJM=
4535
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4636
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
47-
github.com/shamaton/msgpack/v2 v2.4.0 h1:O5Z08MRmbo0lA9o2xnQ4TXx6teJbPqEurqcCOQ8Oi/4=
48-
github.com/shamaton/msgpack/v2 v2.4.0/go.mod h1:6khjYnkx73f7VQU7wjcFS9DFjs+59naVWJv1TB7qdOI=
49-
github.com/stretchr/testify v1.11.1 h1:7s2iGBzp5EwR7/aIZr8ao5+dra3wiQyKjjFuvgVKu7U=
50-
github.com/stretchr/testify v1.11.1/go.mod h1:wZwfW3scLgRK+23gO65QZefKpKQRnfz6sD981Nm4B6U=
51-
github.com/tinylib/msgp v1.5.0 h1:GWnqAE54wmnlFazjq2+vgr736Akg58iiHImh+kPY2pc=
52-
github.com/tinylib/msgp v1.5.0/go.mod h1:cvjFkb4RiC8qSBOPMGPSzSAx47nAsfhLVTCZZNuHv5o=
37+
github.com/stretchr/testify v1.7.2 h1:4jaiDzPyXQvSd7D0EjG45355tLlV3VOECpq10pLC+8s=
38+
github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
5339
github.com/valyala/bytebufferpool v1.0.0 h1:GqA5TC/0021Y/b9FG4Oi9Mr3q7XYx6KllzawFIhcdPw=
5440
github.com/valyala/bytebufferpool v1.0.0/go.mod h1:6bBcMArwyJ5K/AmCkWv1jt77kVWyCJ6HpOuEn7z0Csc=
5541
github.com/valyala/fasthttp v1.68.0 h1:v12Nx16iepr8r9ySOwqI+5RBJ/DqTxhOy1HrHoDFnok=
5642
github.com/valyala/fasthttp v1.68.0/go.mod h1:5EXiRfYQAoiO/khu4oU9VISC/eVY6JqmSpPJoHCKsz4=
57-
github.com/x448/float16 v0.8.4 h1:qLwI1I70+NjRFUR3zs1JPUCgaCXSh3SW62uAKT1mSBM=
58-
github.com/x448/float16 v0.8.4/go.mod h1:14CWIYCyZA/cWjXOioeEpHeN/83MdbZDRQHoFcYsOfg=
5943
github.com/xyproto/randomstring v1.0.5 h1:YtlWPoRdgMu3NZtP45drfy1GKoojuR7hmRcnhZqKjWU=
6044
github.com/xyproto/randomstring v1.0.5/go.mod h1:rgmS5DeNXLivK7YprL0pY+lTuhNQW3iGxZ18UQApw/E=
61-
golang.org/x/crypto v0.44.0 h1:A97SsFvM3AIwEEmTBiaxPPTYpDC47w720rdiiUvgoAU=
62-
golang.org/x/crypto v0.44.0/go.mod h1:013i+Nw79BMiQiMsOPcVCB5ZIJbYkerPrGnOa00tvmc=
63-
golang.org/x/net v0.47.0 h1:Mx+4dIFzqraBXUugkia1OOvlD6LemFo1ALMHjrXDOhY=
64-
golang.org/x/net v0.47.0/go.mod h1:/jNxtkgq5yWUGYkaZGqo27cfGZ1c5Nen03aYrrKpVRU=
45+
golang.org/x/net v0.46.0 h1:giFlY12I07fugqwPuWJi68oOnpfqFnJIJzaIIm2JVV4=
46+
golang.org/x/net v0.46.0/go.mod h1:Q9BGdFy1y4nkUwiLvT5qtyhAnEHgnQ/zd8PfU6nc210=
6547
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
6648
golang.org/x/sys v0.38.0 h1:3yZWxaJjBmCWXqhN1qh02AkOnCQ1poK6oF+a7xWL6Gc=
6749
golang.org/x/sys v0.38.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks=
68-
golang.org/x/text v0.31.0 h1:aC8ghyu4JhP8VojJ2lEHBnochRno1sgL6nEi9WGFGMM=
69-
golang.org/x/text v0.31.0/go.mod h1:tKRAlv61yKIjGGHX/4tP1LTbc13YSec1pxVEWXzfoeM=
50+
golang.org/x/text v0.30.0 h1:yznKA/E9zq54KzlzBEAWn1NXSQ8DIp/NYMy88xJjl4k=
51+
golang.org/x/text v0.30.0/go.mod h1:yDdHFIX9t+tORqspjENWgzaCVXgk0yYnYuSZ8UzzBVM=
7052
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ=
7153
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw=
7254
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=

β€Žaws-sam/app/main.goβ€Ž renamed to β€Žv2/aws-sam/app/main.goβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"log"
66

7-
"github.com/gofiber/fiber/v3"
7+
"github.com/gofiber/fiber/v2"
88

99
"github.com/aws/aws-lambda-go/events"
1010
"github.com/aws/aws-lambda-go/lambda"
@@ -19,7 +19,7 @@ func init() {
1919
app := fiber.New()
2020

2121
// Routes
22-
app.Get("/", func(c fiber.Ctx) error {
22+
app.Get("/", func(c *fiber.Ctx) error {
2323
return c.JSON(fiber.Map{"message": "Hello World"})
2424
})
2525

File renamed without changes.
File renamed without changes.
File renamed without changes.

β€Žmonitoring-with-apitally/go.modβ€Ž renamed to β€Žv2/monitoring-with-apitally/go.modβ€Ž

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,12 @@ go 1.25.0
44

55
require (
66
github.com/apitally/apitally-go/fiber v0.8.2
7-
github.com/gofiber/fiber/v3 v3.0.0-rc.3
7+
github.com/gofiber/fiber/v2 v2.52.10
88
)
99

1010
require (
1111
github.com/clipperhouse/stringish v0.1.1 // indirect
1212
github.com/clipperhouse/uax29/v2 v2.3.0 // indirect
13-
github.com/gofiber/fiber/v2 v2.51.0 // indirect
14-
github.com/gofiber/schema v1.6.0 // indirect
15-
github.com/gofiber/utils/v2 v2.0.0-rc.2 // indirect
16-
github.com/philhofer/fwd v1.2.0 // indirect
17-
github.com/tinylib/msgp v1.5.0 // indirect
18-
golang.org/x/net v0.47.0 // indirect
1913
gopkg.in/go-playground/assert.v1 v1.2.1 // indirect
2014
)
2115

0 commit comments

Comments
Β (0)