Skip to content

Commit 8df6102

Browse files
committed
chore: update version to 0.1.0-dev0
1 parent 7dc7374 commit 8df6102

File tree

2 files changed

+19
-15
lines changed

2 files changed

+19
-15
lines changed

CHANGELOG.md

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.1.0-dev0
2+
3+
### Fixes
4+
5+
* **Fix Notion Pagination** Iterate on Notion paginated results using the `next_cursor` and `start_cursor` properties.
6+
17
## 0.1.0
28

39
### Enhancements
@@ -46,7 +52,7 @@
4652

4753
* **Leverage `uv` for pip compile**
4854

49-
* **Use incoming fsspec data to populate metadata** Rather than make additional calls to collect metadata after initial file list, use connector-specific data to populate the metadata.
55+
* **Use incoming fsspec data to populate metadata** Rather than make additional calls to collect metadata after initial file list, use connector-specific data to populate the metadata.
5056

5157
* **Drop langchain as dependency for embedders**
5258

@@ -84,7 +90,6 @@
8490

8591
* **Drop use of unstructued in embed** Remove remnant import from unstructured dependency in embed implementations.
8692

87-
8893
## 0.0.16
8994

9095
### Fixes
@@ -97,7 +102,7 @@
97102

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

102107
### Enhancements
103108

@@ -147,13 +152,12 @@
147152

148153
* **Chroma dict settings should allow string inputs**
149154
* **Move opensearch non-secret fields out of access config**
150-
* **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.
151-
* **Move opensearch non-secret fields out of access config
155+
* **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.
156+
* \*\*Move opensearch non-secret fields out of access config
152157

153158
### Fixes
154159

155-
**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.
156-
160+
**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.
157161

158162
## 0.0.8
159163

@@ -166,12 +170,12 @@
166170

167171
### Enhancements
168172

169-
* **support sharing parent multiprocessing for uploaders** If an uploader needs to fan out it's process using multiprocessing, support that using the parent pipeline approach rather than handling it explicitly by the connector logic.
170-
* **OTEL support** If endpoint supplied, publish all traces to an otel collector.
173+
* **support sharing parent multiprocessing for uploaders** If an uploader needs to fan out it's process using multiprocessing, support that using the parent pipeline approach rather than handling it explicitly by the connector logic.
174+
* **OTEL support** If endpoint supplied, publish all traces to an otel collector.
171175

172176
### Fixes
173177

174-
* **Weaviate access configs access** Weaviate access config uses pydantic Secret and it needs to be resolved to the secret value when being used. This was fixed.
178+
* **Weaviate access configs access** Weaviate access config uses pydantic Secret and it needs to be resolved to the secret value when being used. This was fixed.
175179
* **unstructured-client compatibility fix** Fix an error when accessing the fields on `PartitionParameters` in the new 0.26.0 Python client.
176180

177181
## 0.0.6
@@ -190,7 +194,7 @@
190194

191195
### Fixes
192196

193-
* **AstraDB connector configs** Configs had dataclass annotation removed since they're now pydantic data models.
197+
* **AstraDB connector configs** Configs had dataclass annotation removed since they're now pydantic data models.
194198
* **Local indexer recursive behavior** Local indexer was indexing directories as well as files. This was filtered out.
195199

196200
## 0.0.4
@@ -208,15 +212,15 @@
208212
### Enhancements
209213

210214
* **Improve documentation** Update the README's.
211-
* **Explicit Opensearch classes** For the connector registry entries for opensearch, use only opensearch specific classes rather than any elasticsearch ones.
215+
* **Explicit Opensearch classes** For the connector registry entries for opensearch, use only opensearch specific classes rather than any elasticsearch ones.
212216
* **Add missing fsspec destination precheck** check connection in precheck for all fsspec-based destination connectors
213217

214218
## 0.0.2
215219

216220
### Enhancements
217221

218222
* **Use uuid for s3 identifiers** Update unique id to use uuid derived from file path rather than the filepath itself.
219-
* **V2 connectors precheck support** All steps in the v2 pipeline support an optional precheck call, which encompasses the previous check connection functionality.
223+
* **V2 connectors precheck support** All steps in the v2 pipeline support an optional precheck call, which encompasses the previous check connection functionality.
220224
* **Filter Step** Support dedicated step as part of the pipeline to filter documents.
221225

222226
## 0.0.1
@@ -229,7 +233,7 @@
229233

230234
### Fixes
231235

232-
* **Remove old repo references** Any mention of the repo this project came from was removed.
236+
* **Remove old repo references** Any mention of the repo this project came from was removed.
233237

234238
## 0.0.0
235239

unstructured_ingest/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.0" # pragma: no cover
1+
__version__ = "0.1.0-dev0" # pragma: no cover

0 commit comments

Comments
 (0)