File tree Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Expand file tree Collapse file tree 2 files changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ title: List of breaking changes and deprecations
5
5
# List of breaking changes and deprecations
6
6
7
7
- [ 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 )
8
9
- [ Version 0.268.0 - 10 May 2025] ( ./breaking-changes/0.268.0.md )
9
10
- [ Version 0.249.0 - 18 November 2024] ( ./breaking-changes/0.249.0.md )
10
11
- [ Version 0.243.0 - 25 September 2024] ( ./breaking-changes/0.243.0.md )
Original file line number Diff line number Diff line change
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
+ ```
You can’t perform that action at this time.
0 commit comments