Skip to content

Commit 314e96b

Browse files
authored
Updated CHANGELOG for 1.5.0 release (#285)
* Updated CHANGELOG for 1.5.0 release * Removed 1.5.0 header * Updated poetry cache commands in GitHub Actions
1 parent 69c9c68 commit 314e96b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/pr-e2e-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
8080
run: poetry install --no-interaction --no-cache --with dev --all-extras
8181
- name: Clear Poetry cache
82-
run: poetry cache clear --all .
82+
run: poetry cache clear --all --no-interaction .
8383
- name: Show disk usage after Poetry installation
8484
run: |
8585
df -h

.github/workflows/scheduled-e2e-tests.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
8888
run: poetry install --no-interaction --no-cache --with dev --all-extras
8989
- name: Clear Poetry cache
90-
run: poetry cache clear --all .
90+
run: poetry cache clear --all --no-interaction .
9191
- name: Show disk usage after Poetry installation
9292
run: |
9393
df -h

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@
1717
- Refactored index-related functions for improved compatibility and functionality.
1818
- Added deprecation warnings to upsert_vector, upsert_vector_on_relationship functions in favor of upsert_vectors.
1919
- Added deprecation warnings to async_upsert_vector, async_upsert_vector_on_relationship functions notifying developers that they will be removed in a future release.
20+
- Added support for database, timeout, and sanitize arguments in schema functions.
21+
22+
### Fixed
23+
24+
- Resolved an issue with an incorrectly hard coded node alias in the `_handle_field_filter` function.
2025

2126
## 1.4.3
2227

0 commit comments

Comments
 (0)