Merge pull request #3284 from aliziyacevik/master

[Maintenance]: Added ctx.Drop() to whats_new.md
pull/3285/head
Juan Calderon-Perez 2025-01-18 09:41:54 -05:00 committed by GitHub
commit 156897ee1c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -342,6 +342,7 @@ testConfig := fiber.TestConfig{
- **ViewBind**: Binds data to a view, replacing the old `Bind` method.
- **CBOR**: Introducing [CBOR](https://cbor.io/) binary encoding format for both request & response body. CBOR is a binary data serialization format which is both compact and efficient, making it ideal for use in web applications.
- **End**: Similar to Express.js, immediately flushes the current response and closes the underlying connection.
- **Drop**: Terminates the client connection silently without sending any HTTP headers or response body. This can be used for scenarios where you want to block certain requests without notifying the client, such as mitigating DDoS attacks or protecting sensitive endpoints from unauthorized access.
### Removed Methods