File tree 6 files changed +14
-10
lines changed
6 files changed +14
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.0.79
2
+
3
+ * Bump to ` unstructured ` 0.15.7
4
+
1
5
## 0.0.78
2
6
3
7
* Resolve NLTK CVE.
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.78 " ,
16
+ version = "0.0.79 " ,
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 @@ -649,7 +649,7 @@ def return_content_type(filename: str):
649
649
650
650
651
651
@router .get ("/general/v0/general" , include_in_schema = False )
652
- @router .get ("/general/v0.0.78 /general" , include_in_schema = False )
652
+ @router .get ("/general/v0.0.79 /general" , include_in_schema = False )
653
653
async def handle_invalid_get_request ():
654
654
raise HTTPException (
655
655
status_code = status .HTTP_405_METHOD_NOT_ALLOWED , detail = "Only POST requests are supported."
@@ -664,7 +664,7 @@ async def handle_invalid_get_request():
664
664
description = "Description" ,
665
665
operation_id = "partition_parameters" ,
666
666
)
667
- @router .post ("/general/v0.0.78 /general" , include_in_schema = False )
667
+ @router .post ("/general/v0.0.79 /general" , include_in_schema = False )
668
668
def general_partition (
669
669
request : Request ,
670
670
# 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.78
2
+ version : 0.0.79
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ markdown==3.7
146
146
# via unstructured
147
147
markupsafe==2.1.5
148
148
# via jinja2
149
- marshmallow==3.21.3
149
+ marshmallow==3.22.0
150
150
# via
151
151
# dataclasses-json
152
152
# unstructured-client
@@ -383,7 +383,7 @@ tqdm==4.66.5
383
383
# nltk
384
384
# transformers
385
385
# unstructured
386
- transformers==4.44.0
386
+ transformers==4.44.1
387
387
# via unstructured-inference
388
388
typing-extensions==4.12.2
389
389
# via
@@ -409,7 +409,7 @@ typing-inspect==0.9.0
409
409
# unstructured-client
410
410
tzdata==2024.1
411
411
# via pandas
412
- unstructured[all-docs]==0.15.6
412
+ unstructured[all-docs]==0.15.7
413
413
# via -r requirements/base.in
414
414
unstructured-client==0.25.5
415
415
# via unstructured
Original file line number Diff line number Diff line change @@ -374,7 +374,7 @@ markupsafe==2.1.5
374
374
# -r requirements/base.txt
375
375
# jinja2
376
376
# nbconvert
377
- marshmallow==3.21.3
377
+ marshmallow==3.22.0
378
378
# via
379
379
# -r requirements/base.txt
380
380
# dataclasses-json
@@ -878,7 +878,7 @@ traitlets==5.14.3
878
878
# nbconvert
879
879
# nbformat
880
880
# qtconsole
881
- transformers==4.44.0
881
+ transformers==4.44.1
882
882
# via
883
883
# -r requirements/base.txt
884
884
# unstructured-inference
@@ -916,7 +916,7 @@ tzdata==2024.1
916
916
# via
917
917
# -r requirements/base.txt
918
918
# pandas
919
- unstructured[all-docs]==0.15.6
919
+ unstructured[all-docs]==0.15.7
920
920
# via -r requirements/base.txt
921
921
unstructured-client==0.25.5
922
922
# via
You can’t perform that action at this time.
0 commit comments