File tree Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Expand file tree Collapse file tree 4 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 0.0.84
2+ * Patch h11 CVE
3+ * bump httpcore version due to h11 dependency
4+
15## 0.0.83
26
37* Patch various CVEs
Original file line number Diff line number Diff line change 1313app = FastAPI (
1414 title = "Unstructured Pipeline API" ,
1515 summary = "Partition documents with the Unstructured library" ,
16- version = "0.0.83 " ,
16+ version = "0.0.84 " ,
1717 docs_url = "/general/docs" ,
1818 openapi_url = "/general/openapi.json" ,
1919 servers = [
Original file line number Diff line number Diff line change @@ -602,7 +602,7 @@ def return_content_type(filename: str):
602602
603603
604604@router .get ("/general/v0/general" , include_in_schema = False )
605- @router .get ("/general/v0.0.83 /general" , include_in_schema = False )
605+ @router .get ("/general/v0.0.84 /general" , include_in_schema = False )
606606async def handle_invalid_get_request ():
607607 raise HTTPException (
608608 status_code = status .HTTP_405_METHOD_NOT_ALLOWED , detail = "Only POST requests are supported."
@@ -617,7 +617,7 @@ async def handle_invalid_get_request():
617617 description = "Description" ,
618618 operation_id = "partition_parameters" ,
619619)
620- @router .post ("/general/v0.0.83 /general" , include_in_schema = False )
620+ @router .post ("/general/v0.0.84 /general" , include_in_schema = False )
621621def general_partition (
622622 request : Request ,
623623 # cannot use annotated type here because of a bug described here:
Original file line number Diff line number Diff line change 11name : general
2- version : 0.0.83
2+ version : 0.0.84
You can’t perform that action at this time.
0 commit comments