Skip to content

Commit

Permalink
Update changelog and fix client tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jmaupetit committed Dec 3, 2024
1 parent 202fdec commit 416bb4f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
8 changes: 8 additions & 0 deletions src/api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ and this project adheres to

## [Unreleased]

### Changed

- Upgrade httpx to `0.28.0`
- Upgrade pyarrow to `18.1.0`
- Upgrade pydantic to `2.10.2`
- Upgrade sentry-sdk to `2.19.0`
- Upgrade typer to `0.14.0`

## [0.15.0] - 2024-11-21

### Changed
Expand Down
3 changes: 2 additions & 1 deletion src/client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ and this project adheres to
### Changed

- Upgrade anyio to `4.6.1`
- Upgrade httpx to `0.28.0`
- Upgrade Pydantic to `2.9.1`
- Upgrade pydantic-settings to `2.5.2`
- Upgrade typer to `0.13.0`
- Upgrade typer to `0.14.0`

## [0.2.0] - 2024-09-05

Expand Down
2 changes: 1 addition & 1 deletion src/client/tests/test_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async def test_client_expired_token_renewal(httpx_mock):
)
response = await client.get("/auth/whoami")
assert response.status_code == httpx.codes.OK
assert response.content == b'{"fake": 1}'
assert response.content == b'{"fake":1}'

# Check requests
requests = httpx_mock.get_requests()
Expand Down

0 comments on commit 416bb4f

Please sign in to comment.