File tree 3 files changed +21
-2
lines changed
Filter options
3 files changed +21
-2
lines changed
Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
3
4
+ ## v0.146.3 (2025-04-02)
5
+
6
+ ### Bug Fixes
7
+
8
+ - Correctly override question type flag for requests
9
+ ([ #1558 ] ( https://github.com/python-zeroconf/python-zeroconf/pull/1558 ) ,
10
+ [ ` bd643a2 ` ] ( https://github.com/python-zeroconf/python-zeroconf/commit/bd643a227bc4d6a949d558850ad1431bc2940d74 ) )
11
+
12
+ * fix: correctly override question type flag for requests
13
+
14
+ Currently even when setting the explicit question type flag, the implementation ignores it for
15
+ subsequent queries. This commit ensures that all queries respect the explicit question type flag.
16
+
17
+ * chore(tests): add test for explicit question type flag
18
+
19
+ Add unit test to validate that the explicit question type flag is set correctly in outgoing
20
+ requests.
21
+
22
+
4
23
## v0.146.2 (2025-04-01)
5
24
6
25
### Bug Fixes
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " zeroconf"
3
- version = " 0.146.2 "
3
+ version = " 0.146.3 "
4
4
description = " A pure python implementation of multicast DNS service discovery"
5
5
authors = [" Paul Scott-Murphy" , " William McBrine" , " Jakub Stasiak" , " J. Nick Koston" ]
6
6
license = " LGPL-2.1-or-later"
Original file line number Diff line number Diff line change 88
88
89
89
__author__ = "Paul Scott-Murphy, William McBrine"
90
90
__maintainer__ = "Jakub Stasiak <jakub@stasiak.at>"
91
- __version__ = "0.146.2 "
91
+ __version__ = "0.146.3 "
92
92
__license__ = "LGPL"
93
93
94
94
You can’t perform that action at this time.
0 commit comments