We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28e70d4 commit f5d93beCopy full SHA for f5d93be
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+## 1.0.33
2
+
3
+* **Fix google drive not setting the display_name property on the FileData object**
4
5
## 1.0.32
6
7
* **Fix google drive connector's dependencies**
unstructured_ingest/__version__.py
@@ -1 +1 @@
-__version__ = "1.0.32" # pragma: no cover
+__version__ = "1.0.33" # pragma: no cover
unstructured_ingest/processes/connectors/google_drive.py
@@ -344,6 +344,7 @@ def map_file_data(root_info: dict) -> FileData:
344
},
345
),
346
additional_metadata=root_info,
347
+ display_name=source_identifiers.fullpath,
348
)
349
350
def get_paginated_results(
0 commit comments