<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/dnspython.git/dns/asyncquery.py, branch master</title>
<subtitle>github.com: rthalley/dnspython.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/'/>
<entry>
<title>Clean up the NoDOH exception.</title>
<updated>2023-03-28T17:53:18+00:00</updated>
<author>
<name>Brian Wellington</name>
<email>bwelling@xbill.org</email>
</author>
<published>2023-03-28T17:53:18+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=842f0bbd85e39dae7eb396c788ad0ff77a1cf493'/>
<id>842f0bbd85e39dae7eb396c788ad0ff77a1cf493</id>
<content type='text'>
The docstring/default should refer to httpx, not requests, and the
callers should use it rather than providing alternate (and different)
strings.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The docstring/default should refer to httpx, not requests, and the
callers should use it rather than providing alternate (and different)
strings.
</pre>
</div>
</content>
</entry>
<entry>
<title>Optionally allow server hostname to be checked by QUIC.</title>
<updated>2023-03-26T19:28:02+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2023-03-26T19:28:02+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=4c25a1ef00f3e16ced7d5b487a3e07b3b1580ed4'/>
<id>4c25a1ef00f3e16ced7d5b487a3e07b3b1580ed4</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Better DNS-over-HTTPS support. (#908)</title>
<updated>2023-03-19T16:24:32+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2023-03-19T16:24:32+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=6c5f0c9d8086c999357531c38b831efd24b6b5ac'/>
<id>6c5f0c9d8086c999357531c38b831efd24b6b5ac</id>
<content type='text'>
This change:

Allows resolution hostnames in URLs using dnspython's resolver
or via a bootstrap address, without rewriting URLs.

Adds full support for source addresses and ports to
httpx, except for asyncio I/O where only the source address
can be specified.

Removes support for requests.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change:

Allows resolution hostnames in URLs using dnspython's resolver
or via a bootstrap address, without rewriting URLs.

Adds full support for source addresses and ports to
httpx, except for asyncio I/O where only the source address
can be specified.

Removes support for requests.</pre>
</div>
</content>
</entry>
<entry>
<title>Fix async quic() doco.</title>
<updated>2022-12-16T21:54:05+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2022-12-16T21:54:05+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=9f7be26945a748d12373b9285c3914375f59170b'/>
<id>9f7be26945a748d12373b9285c3914375f59170b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #842 from rthalley/quic</title>
<updated>2022-11-24T14:56:04+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2022-11-24T14:56:04+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=12093aca267f0e37ca9d5fac4aa18277824c0d00'/>
<id>12093aca267f0e37ca9d5fac4aa18277824c0d00</id>
<content type='text'>
Initial DoQ support.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Initial DoQ support.</pre>
</div>
</content>
</entry>
<entry>
<title>For async send_udp(), return a length and clarify the expiration</title>
<updated>2022-10-14T01:10:34+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2022-10-14T01:10:34+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=db1f91ac57c54e909b24154944d2987123978e80'/>
<id>db1f91ac57c54e909b24154944d2987123978e80</id>
<content type='text'>
is meaningless.

For async receive_udp(), document that the return type is always a
3-tuple, as opposed to being either a pair or a 3-tuple as in the
sync version.  (I chose to document rather than change the behavior
as changing it broke dnspython tests and might possibly break other
code.)  [#848]
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
is meaningless.

For async receive_udp(), document that the return type is always a
3-tuple, as opposed to being either a pair or a 3-tuple as in the
sync version.  (I chose to document rather than change the behavior
as changing it broke dnspython tests and might possibly break other
code.)  [#848]
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial DoQ support.</title>
<updated>2022-10-09T21:34:10+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2022-10-01T22:24:13+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=948d5a6a2b3eb08647acaf2a67df92e9bcc2979a'/>
<id>948d5a6a2b3eb08647acaf2a67df92e9bcc2979a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>more lint</title>
<updated>2022-10-02T17:04:05+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2022-10-02T17:04:05+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=bfa397c9b97487e4f9d54f3d41323ccda1fc4b1d'/>
<id>bfa397c9b97487e4f9d54f3d41323ccda1fc4b1d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix type of query paramater to https() method</title>
<updated>2022-03-25T19:16:03+00:00</updated>
<author>
<name>Bob Halley</name>
<email>halley@dnspython.org</email>
</author>
<published>2022-03-25T19:16:03+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=b625c08b178af27030b55180754e7e120501ada6'/>
<id>b625c08b178af27030b55180754e7e120501ada6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>style(asyncquery): change the ``httpx.AsyncClient`` type annotation to a string literal</title>
<updated>2022-03-20T03:18:07+00:00</updated>
<author>
<name>Ryu juheon</name>
<email>saidbysolo@gmail.com</email>
</author>
<published>2022-03-20T03:18:07+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/python-packages/dnspython.git/commit/?id=e8331102f1ca3fdd174699854571028e151c902e'/>
<id>e8331102f1ca3fdd174699854571028e151c902e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
