File tree 4 files changed +8
-4
lines changed
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
+
1
5
## 0.0.83
2
6
3
7
* Patch various CVEs
Original file line number Diff line number Diff line change 13
13
app = FastAPI (
14
14
title = "Unstructured Pipeline API" ,
15
15
summary = "Partition documents with the Unstructured library" ,
16
- version = "0.0.83 " ,
16
+ version = "0.0.84 " ,
17
17
docs_url = "/general/docs" ,
18
18
openapi_url = "/general/openapi.json" ,
19
19
servers = [
Original file line number Diff line number Diff line change @@ -602,7 +602,7 @@ def return_content_type(filename: str):
602
602
603
603
604
604
@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 )
606
606
async def handle_invalid_get_request ():
607
607
raise HTTPException (
608
608
status_code = status .HTTP_405_METHOD_NOT_ALLOWED , detail = "Only POST requests are supported."
@@ -617,7 +617,7 @@ async def handle_invalid_get_request():
617
617
description = "Description" ,
618
618
operation_id = "partition_parameters" ,
619
619
)
620
- @router .post ("/general/v0.0.83 /general" , include_in_schema = False )
620
+ @router .post ("/general/v0.0.84 /general" , include_in_schema = False )
621
621
def general_partition (
622
622
request : Request ,
623
623
# cannot use annotated type here because of a bug described here:
Original file line number Diff line number Diff line change 1
1
name : general
2
- version : 0.0.83
2
+ version : 0.0.84
You can’t perform that action at this time.
0 commit comments