-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies, change resolver session behaviour and bump versi…
…on v1.0.0 Resolver session are now only accept httpx.Client rather than requests.Client, this is because dnspython changes makes it no longer accepting requests.Client also update dependencies to fix 2 CVE (requests and dnspython) - CVE-2024-35195 - CVE-2023-29483
- Loading branch information
Showing
5 changed files
with
32 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
DNS over HTTPS resolver for python requests | ||
""" | ||
|
||
__version__ = "0.3.3" | ||
__version__ = "1.0.0" | ||
__description__ = "DNS over HTTPS resolver for python requests" | ||
__author__ = "Rahman Yusuf" | ||
__author_email__ = "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
requests[socks]==2.31.0 | ||
dnspython[doh]==2.3.0 | ||
requests[socks]==2.32.3 | ||
dnspython[doh]==2.6.1 |