From b31184e0b75b0af1fce38dce2e4e63ccc321c025 Mon Sep 17 00:00:00 2001 From: aliziyacevik Date: Sat, 18 Jan 2025 14:31:55 +0300 Subject: [PATCH] Doc: Added missing ctx.Drop() to whats_new.md --- docs/whats_new.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/whats_new.md b/docs/whats_new.md index 0c4d749cd7..81339d6a48 100644 --- a/docs/whats_new.md +++ b/docs/whats_new.md @@ -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