File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1+ ## 0.0.87
2+ * Return 422 HTTP code when PDF can't be processed
3+
14## 0.0.86
25* Patch various CVEs
36
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.86 " ,
16+ version = "0.0.87 " ,
1717 docs_url = "/general/docs" ,
1818 openapi_url = "/general/openapi.json" ,
1919 servers = [
Original file line number Diff line number Diff line change @@ -618,7 +618,7 @@ def return_content_type(filename: str):
618618
619619
620620@router .get ("/general/v0/general" , include_in_schema = False )
621- @router .get ("/general/v0.0.86 /general" , include_in_schema = False )
621+ @router .get ("/general/v0.0.87 /general" , include_in_schema = False )
622622async def handle_invalid_get_request ():
623623 raise HTTPException (
624624 status_code = status .HTTP_405_METHOD_NOT_ALLOWED , detail = "Only POST requests are supported."
@@ -633,7 +633,7 @@ async def handle_invalid_get_request():
633633 description = "Description" ,
634634 operation_id = "partition_parameters" ,
635635)
636- @router .post ("/general/v0.0.86 /general" , include_in_schema = False )
636+ @router .post ("/general/v0.0.87 /general" , include_in_schema = False )
637637def general_partition (
638638 request : Request ,
639639 # 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.86
2+ version : 0.0.87
You can’t perform that action at this time.
0 commit comments