Sebastián Ramírez
Sebastián Ramírez
Great, thank you @batlopes! :rocket: And thanks for the reviews @cassiobotaro, @jonatasoli, @ComicShrimp, @lsglucas! :cake:
Ha! That's fun, thank you @supraaxdd! :cake: And thanks everyone for the interactions!
This can be reproduced even without the `GzipMiddleware`: ```Python from fastapi import FastAPI app = FastAPI() @app.get("/", status_code=204) def endpoint(): print("Oh, hi mark") ``` More details in this Starlette issue:...
About the discussion of adding RxJS support, let me add my two cents: One of the main reasons I switched to Vue after having worked a lot in Angular is...
Thanks for the report, I'll take a look into this.
Thanks for the help here @paul121 ! :clap: :cake: @tatdatpham First make sure that your SQLAlchemy query is returning the data that you want. Run that code outside of your...
@Cozmo25 I'm not sure I'm following correctly, but I think that by having something like: ```Python # Properties to return to client class InputTemplateDetail(InputTemplateDetailInDBBase): template_name: InputTemplateShared class Config: orm_mode =...
@Cozmo25 I think that instead of: ```Python class InputTemplateDetail(InputTemplateDetailInDBBase): template_name: InputTemplateShared class Config: orm_mode = True ``` something like this could work: ```Python class InputTemplateDetail(InputTemplateDetailInDBBase): template_name: str class Config: orm_mode...
Awesome! :rocket: Thanks a lot @Kludex for the PR and for the short summary of breaking changes, that's super helpful. Indeed, breaking changes are not great in general... :sweat_smile: ....
> Also, for almost all of the points, I think except for the cookies in the client, the needed refactor could be automated with a LibCST codemod... but who would...