Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
./start_emulator.sh > /dev/null 2>&1 &

- name: Install Poetry and pre-commit 💈
run: pip install poetry pre-commit
run: pip install poetry==1.8.5 pre-commit

- name: Install dependencies 🛠
run: poetry install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
./start_emulator.sh > /dev/null 2>&1 &

- name: Install Poetry and pre-commit 💈
run: pip install poetry pre-commit
run: pip install poetry==1.8.5 pre-commit

- name: Install dependencies 🛠
run: poetry install
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Switched Firestore `query.where()` to use the 'filter' keyword argument instead of
positional arguments. This eliminates a UserWarning that was introduced in
`google-cloud-firestore` 2.11.0.
- Internal, for builds only: Locked poetry in GitHub workflows to version 1.8.5, as
version 2.0.0 and later create METADATA files with version 2.3 instead of 2.2 and the
action to publish the package failed with an error about supported metadata versions
being 1.0, 1.1, 1.2, 2.0, 2.1, 2.2.

## [0.8.1] - 2024-12-09

Expand Down