sammaphey
sammaphey
I think this could potentially come down to semantics on what we would deem "successful" ([this](https://tools.ietf.org/html/rfc6902#section-4.2) deems that removing a non-existent key is unsuccessful). The users desire in this case...
Any updates on this @sydney-runkle ?
Also in a situation in which you have only removed one item, for example: with a list of `{a: [1, 2, 3]}` becoming `{a: [1, 2]}` It is a lot...
I had to add the middleware after Declaring the VersionedFastAPI. So this should hopefully fix it: ```python app = FastAPI(title='APP NAME') APP_VERSION = "1.1.1" app.include_router(api_router_v1_0, prefix=config.API_V1_STR) app.include_router(api_router_v1_1, prefix=config.API_V1_STR) app =...