File tree Expand file tree Collapse file tree 7 files changed +15
-12
lines changed Expand file tree Collapse file tree 7 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1- ## 0.0.85
1+ ## 0.0.86
2+ * Patch various CVEs
3+
4+ ## 0.0.86
25* Patch various CVEs
36* Bump Python version to 3.12, some packages no longer support 3.9
47
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.85 " ,
16+ version = "0.0.86 " ,
1717 docs_url = "/general/docs" ,
1818 openapi_url = "/general/openapi.json" ,
1919 servers = [
Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ def return_content_type(filename: str):
600600
601601
602602@router .get ("/general/v0/general" , include_in_schema = False )
603- @router .get ("/general/v0.0.85 /general" , include_in_schema = False )
603+ @router .get ("/general/v0.0.86 /general" , include_in_schema = False )
604604async def handle_invalid_get_request ():
605605 raise HTTPException (
606606 status_code = status .HTTP_405_METHOD_NOT_ALLOWED , detail = "Only POST requests are supported."
@@ -615,7 +615,7 @@ async def handle_invalid_get_request():
615615 description = "Description" ,
616616 operation_id = "partition_parameters" ,
617617)
618- @router .post ("/general/v0.0.85 /general" , include_in_schema = False )
618+ @router .post ("/general/v0.0.86 /general" , include_in_schema = False )
619619def general_partition (
620620 request : Request ,
621621 # 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.85
2+ version : 0.0.86
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ unstructured[all-docs]
33# Pinning click due to a unicode issue in black
44# can remove after black drops support for Python 3.6
55# ref: https://github.com/psf/black/issues/2964
6- click==8.1.3
6+ click==8.2.1
77fastapi
88uvicorn
99ratelimit
Original file line number Diff line number Diff line change @@ -301,7 +301,7 @@ regex==2024.11.6
301301 # via
302302 # nltk
303303 # transformers
304- requests==2.32.3
304+ requests==2.32.4
305305 # via
306306 # -r requirements/base.in
307307 # google-api-core
@@ -342,13 +342,13 @@ timm==1.0.14
342342 # unstructured-inference
343343tokenizers==0.21.0
344344 # via transformers
345- torch==2.7.0
345+ torch==2.7.1
346346 # via
347347 # effdet
348348 # timm
349349 # torchvision
350350 # unstructured-inference
351- torchvision==0.22.0
351+ torchvision==0.22.1
352352 # via
353353 # effdet
354354 # timm
Original file line number Diff line number Diff line change @@ -702,7 +702,7 @@ regex==2024.11.6
702702 # -r requirements/base.txt
703703 # nltk
704704 # transformers
705- requests==2.32.3
705+ requests==2.32.4
706706 # via
707707 # -r requirements/base.txt
708708 # google-api-core
@@ -785,14 +785,14 @@ tokenizers==0.21.0
785785 # via
786786 # -r requirements/base.txt
787787 # transformers
788- torch==2.7.0
788+ torch==2.7.1
789789 # via
790790 # -r requirements/base.txt
791791 # effdet
792792 # timm
793793 # torchvision
794794 # unstructured-inference
795- torchvision==0.22.0
795+ torchvision==0.22.1
796796 # via
797797 # -r requirements/base.txt
798798 # effdet
You can’t perform that action at this time.
0 commit comments