Skip to content

Commit

Permalink
[v3-Maintenance]-Consolidate-and-Document-Core-Changes-in-v3
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneWerner87 committed Apr 19, 2024
1 parent 1f34b18 commit f30e24b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
26 changes: 13 additions & 13 deletions docs/core/api/ctx.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ app.Post("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand All @@ -284,7 +284,7 @@ app.Post("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand Down Expand Up @@ -457,7 +457,7 @@ app.Get("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand Down Expand Up @@ -575,7 +575,7 @@ app.Post("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand Down Expand Up @@ -615,7 +615,7 @@ app.Get("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand All @@ -630,7 +630,7 @@ func (c Ctx) GetReqHeaders() map[string][]string

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand Down Expand Up @@ -658,7 +658,7 @@ app.Get("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand All @@ -673,7 +673,7 @@ func (c Ctx) GetRespHeaders() map[string][]string

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand Down Expand Up @@ -726,7 +726,7 @@ app.Get("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand All @@ -751,7 +751,7 @@ app.Get("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand Down Expand Up @@ -1163,7 +1163,7 @@ app.Get("/", func(c fiber.Ctx) error {

:::info

All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)

:::
Expand Down Expand Up @@ -1216,7 +1216,7 @@ app.Get("/v1/*/shop/*", func(c fiber.Ctx) error {
:::info
All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)
:::
Expand Down Expand Up @@ -1396,7 +1396,7 @@ app.Get("/", func(c fiber.Ctx) error {
:::info
All binder returned value are only valid within the handler. Do not store any references.
Returned value is only valid within the handler. Do not store any references.
Make copies or use the [**`Immutable`**](./ctx.md) setting instead. [Read more...](../#zero-allocation)
:::
Expand Down
2 changes: 2 additions & 0 deletions docs/core/whats_new.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,7 @@ Fiber v3 is a major release with a lot of new features, improvements, and breaki
#### Session middleware
#### Filesystem middleware

### monitor middleware

## Migration guide
...

0 comments on commit f30e24b

Please sign in to comment.