Skip to content

Releases: Unstructured-IO/unstructured-platform-plugins

0.0.44

Choose a tag to compare

@aballman aballman released this 27 May 21:37
4aea423

0.0.44

  • Ignore SIGTERM in plugin uvicorn Servers: plugin webservers now keep serving on SIGTERM so their controller container can finish dispatching in-flight work before the pod is SIGKILLed. SIGINT still terminates for local-dev Ctrl-C.

0.0.43 (included in this release)

  • Deprecate wrap_in_fastapi — marked deprecated via PEP 702 @deprecated. New plugins should build a FastAPI app directly with explicit handlers for the plugin contract routes.

0.0.42

Choose a tag to compare

@micmarty-deepsense micmarty-deepsense released this 03 Mar 09:52
cd81430

What's Changed

  • chore: Add CODEOWNERS file for plugin ownership in #65
  • Remove unstructured-ingest as a dependency in #63
  • Revert "Remove unstructured-ingest as a dependency (#63)" in #66
  • fix(UNTRACKED): support "none" value for OTEL exporters to disable telemetry #64
  • fix: use correct Python version in release workflow in #67

Full Changelog: 0.0.41...0.0.42

0.0.41

Choose a tag to compare

@yuming-long yuming-long released this 01 Oct 20:01
c4e21cc

raise ingest error correctly

0.0.40

Choose a tag to compare

@yuming-long yuming-long released this 29 Sep 20:06
ac5c57a
  • fix Pydantic error where dataclass is asking status code is a int but e.status_code is None

0.0.39

Choose a tag to compare

@bryan-unstructured bryan-unstructured released this 14 Aug 16:34
52e6815
  • Remove wrap_error logic as exceptions are categorized in unstructured-ingest

0.0.38

Choose a tag to compare

@yuming-long yuming-long released this 28 Jul 20:49
83bd4a7

get rid of 512 UnrecoverableException

0.0.37

Choose a tag to compare

@CyMule CyMule released this 17 Jul 16:16
cc5aa90

fix: use wrap_error for proper status codes in streaming response

0.0.36

Choose a tag to compare

@yuming-long yuming-long released this 01 Jul 17:30
93bce15
chore: allow raise HTTPexcpetion with dict as detail msg (#57)

https://github.com/Unstructured-IO/platform-plugins/pull/673#issuecomment-3024686223

0.0.35

Choose a tag to compare

@six5532one six5532one released this 30 Jun 19:04
51c28a3

Streaming response returns filedata_meta when handling exception

0.0.34

Choose a tag to compare

@yuming-long yuming-long released this 30 Jun 16:19
61a29e7
chore [Nex-57]: remove calling `wrap_error` for `HTTPException` (#55)

we should not add each case for different HTTP status code -> should
just raise one when we see one

`wrap_error` should only be called for `Exception`