Skip to content

Releases: Unstructured-IO/unstructured-ingest

0.0.18

19 Sep 19:49
df43877

Choose a tag to compare

0.0.18

Enhancements

  • Better destination precheck for blob storage Write an empty file to the destination location when running fsspec-based precheck

0.0.17

18 Sep 14:30
6b0c494

Choose a tag to compare

0.0.17

Fixes

  • Drop use of unstructued in embed Remove remnant import from unstructured dependency in embed implementations.

0.0.16

17 Sep 14:47
8536dc1

Choose a tag to compare

0.0.16

Fixes

  • Add constraint on pydantic Make sure the version of pydantic being used with this repo pulls in the earliest version that introduces generic Secret, since this is used heavily.

0.0.15

16 Sep 18:52
a673535

Choose a tag to compare

0.0.15

Fixes

  • Model serialization with nested models Logic updated to properly handle serializing pydantic models that have nested configs with secret values.
  • Sharepoint permission config requirement The sharepoint connector was expecting the permission config, even though it should have been optional.
  • **Sharepoint CLI permission params made optional

Enhancements

  • Migrate airtable connector to v2
  • Support iteratively deleting cached content Add a flag to delete cached content once it's no longer needed for systems that are limited in memory.

0.0.14

12 Sep 12:29
2279655

Choose a tag to compare

0.0.14

Enhancements

  • Support async batch uploads for pinecone connector
  • Migrate embedders Move embedder implementations from the open source unstructured repo into this one.

Fixes

  • Misc. Onedrive connector fixes

0.0.13

06 Sep 19:10
af91a92

Choose a tag to compare

What's Changed

  • Improve pinecone payload size handling by @vangheem in #91

Full Changelog: 0.0.12...0.0.13

0.0.12

06 Sep 01:50
31a7b85

Choose a tag to compare

0.0.12

Fixes

  • Fix invalid replace() calls in uncompress - replace() calls meant to be on str versions of the path were instead called on Path causing errors with parameters.

0.0.11

05 Sep 16:39
0090c4e

Choose a tag to compare

0.0.11

Fixes

  • Fix OpenSearch connector OpenSearch connector did not work when http_auth was not provided

0.0.10

05 Sep 13:16
2b110a5

Choose a tag to compare

0.0.10

Fixes

  • Fix tar extraction Tar extraction function assumed archive was gzip compressed which isn't true for supported .tar archives. Updated to work for both compressed and uncompressed tar archives.

0.0.9

04 Sep 18:38
cfd4b52

Choose a tag to compare

0.0.9

Enhancements

  • Chroma dict settings should allow string inputs
  • Move opensearch non-secret fields out of access config
  • Support string inputs for dict type model fields Use the BeforeValidator support from pydantic to map a string value to a dict if that's provided.
  • **Move opensearch non-secret fields out of access config

Fixes

  • Fix uncompress logic Use of the uncompress process wasn't being leveraged in the pipeline correctly. Updated to use the new loca download path for where the partitioned looks for the new file.