Skip to content

Commit 1798c4a

Browse files
ryanpetrellopre-commit-ci[bot]patrick91
authored
Document a breaking change import related to the introduction of lia (#3989)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Patrick Arminio <patrick.arminio@gmail.com>
1 parent 58ea8c9 commit 1798c4a

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

docs/breaking-changes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ title: List of breaking changes and deprecations
55
# List of breaking changes and deprecations
66

77
- [Version 0.279.0 - 19 August 2025](./breaking-changes/0.279.0.md)
8+
- [Version 0.278.1 - 5 August 2025](./breaking-changes/0.278.1.md)
89
- [Version 0.268.0 - 10 May 2025](./breaking-changes/0.268.0.md)
910
- [Version 0.249.0 - 18 November 2024](./breaking-changes/0.249.0.md)
1011
- [Version 0.243.0 - 25 September 2024](./breaking-changes/0.243.0.md)

docs/breaking-changes/0.278.1.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
title: 0.278.1 Breaking Changes
3+
slug: breaking-changes/0.278.1
4+
---
5+
6+
# v0.278.1 Breaking Changes
7+
8+
This release removes `strawberry.http.exceptions`. HTTP-related exceptions can
9+
now be imported directly from the `lia` package.
10+
11+
For example, instead of:
12+
13+
```python
14+
from strawberry.http.exceptions import HTTPException
15+
```
16+
17+
Now you need to do:
18+
19+
```python
20+
from lia import HTTPException
21+
```

0 commit comments

Comments
 (0)