Skip to content

Commit

Permalink
Updated CHANGELOG for 1.5.0 release (neo4j#285)
Browse files Browse the repository at this point in the history
* Updated CHANGELOG for 1.5.0 release

* Removed 1.5.0 header

* Updated poetry cache commands in GitHub Actions
  • Loading branch information
alexthomas93 authored Feb 25, 2025
1 parent 69c9c68 commit 314e96b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-cache --with dev --all-extras
- name: Clear Poetry cache
run: poetry cache clear --all .
run: poetry cache clear --all --no-interaction .
- name: Show disk usage after Poetry installation
run: |
df -h
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --no-interaction --no-cache --with dev --all-extras
- name: Clear Poetry cache
run: poetry cache clear --all .
run: poetry cache clear --all --no-interaction .
- name: Show disk usage after Poetry installation
run: |
df -h
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
- Refactored index-related functions for improved compatibility and functionality.
- Added deprecation warnings to upsert_vector, upsert_vector_on_relationship functions in favor of upsert_vectors.
- Added deprecation warnings to async_upsert_vector, async_upsert_vector_on_relationship functions notifying developers that they will be removed in a future release.
- Added support for database, timeout, and sanitize arguments in schema functions.

### Fixed

- Resolved an issue with an incorrectly hard coded node alias in the `_handle_field_filter` function.

## 1.4.3

Expand Down

0 comments on commit 314e96b

Please sign in to comment.