]> git.ipfire.org Git - thirdparty/dnspython.git/log
thirdparty/dnspython.git
2 years agoZone signer (#911)
Jakob Schlyter [Tue, 21 Mar 2023 01:14:59 +0000 (02:14 +0100)] 
Zone signer (#911)

* first cut at NSEC support

* use transactions, fix delegations

* rename to add_nsec_to_zone

* optimize NSEC generation

* split out function to get all secure names (could be useful for NSEC3 later)

* add `Bitmap.from_rdtypes()` and add missing typing

* more typing

* add missing import

* add more typing

* fix tok type

* remove _get_secure_names, optimize

* better zone testing (compare as text)
add test example with delegation below other delegation

* include NSEC itself in the bitmap

* lint

* Add names iteration to transactions via iterate_names().

Also make rdataset iteration more obvious by adding an
explicit iterate_rdatasets() API.

* use iterate_names()

* typo

* black

* use single iteration

* better type fix

* add optional transaction to add_nsec_to_zone

* idea for zone signer

* do not sign RRSIGs

* fix signer

* correctly sign DS

* simplify

* simplify by passing rrset to signer

* fix typing

* nit

* add DS

* add more test

* rewrite zone signer

* compact

* simplify

* make easier to read

* bring back rrset_signer

* move default RRset signer

* more

* more

* prettier context handling (mypy issue pending)

* make NSEC zone signer less complex

* update

* fix txn, sign as defined by SEP

* docs

* add back missing dnskey_include

* rename dnskey_include to add_dnskey

* check KSK/ZSK key tags in signed zone

---------

Co-authored-by: Bob Halley <halley@dnspython.org>
2 years agolinting + have asyncio HTTP code actually connect to right address
Bob Halley [Sun, 19 Mar 2023 16:49:25 +0000 (09:49 -0700)] 
linting + have asyncio HTTP code actually connect to right address

2 years agore-run black
Bob Halley [Sun, 19 Mar 2023 16:31:03 +0000 (09:31 -0700)] 
re-run black

2 years agoMore curio cleanups.
Bob Halley [Sun, 19 Mar 2023 16:26:33 +0000 (09:26 -0700)] 
More curio cleanups.

2 years agoBetter DNS-over-HTTPS support. (#908)
Bob Halley [Sun, 19 Mar 2023 16:24:32 +0000 (09:24 -0700)] 
Better DNS-over-HTTPS support. (#908)

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.

2 years agoAdd names iteration to transactions via iterate_names(). (#907)
Bob Halley [Tue, 14 Mar 2023 20:26:51 +0000 (13:26 -0700)] 
Add names iteration to transactions via iterate_names(). (#907)

Also make rdataset iteration more obvious by adding an
explicit iterate_rdatasets() API.

2 years agoUpdate wheel requirement from ^0.38.1 to ^0.40.0 (#910)
dependabot[bot] [Tue, 14 Mar 2023 20:26:35 +0000 (13:26 -0700)] 
Update wheel requirement from ^0.38.1 to ^0.40.0 (#910)

Updates the requirements on [wheel](https://github.com/pypa/wheel) to permit the latest version.
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](https://github.com/pypa/wheel/compare/0.38.1...0.40.0)

---
updated-dependencies:
- dependency-name: wheel
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years agoremove a curio reference that missed the first pass
Bob Halley [Sun, 12 Mar 2023 19:14:19 +0000 (12:14 -0700)] 
remove a curio reference that missed the first pass

2 years agoRemove curio support.
Bob Halley [Sun, 12 Mar 2023 17:03:11 +0000 (10:03 -0700)] 
Remove curio support.

2 years agolint
Bob Halley [Sun, 12 Mar 2023 15:06:46 +0000 (08:06 -0700)] 
lint

2 years agoadd Bitmap.from_rdtypes() (#906)
Jakob Schlyter [Sat, 11 Mar 2023 02:13:51 +0000 (03:13 +0100)] 
add Bitmap.from_rdtypes() (#906)

* add `Bitmap.from_rdtypes()` and add missing typing

* more typing

* add missing import

* add more typing

* fix tok type

2 years agoAdd dns.resolver.resolve_name(). (#903)
Brian Wellington [Sat, 11 Mar 2023 02:12:02 +0000 (18:12 -0800)] 
Add dns.resolver.resolve_name(). (#903)

* Add dns.resolver.resolve_name().

* Add missing type annotations.

* Add async resolve_name().

* Replace List[Answer] with HostAnswers.

* Switch addresses_and_families() tuple order

* Fix comment.

2 years agoRemove the DSA signature test, as it can fail in certain
Bob Halley [Tue, 7 Mar 2023 15:20:46 +0000 (07:20 -0800)] 
Remove the DSA signature test, as it can fail in certain
OpenSSL 3 with the FIPS 140-3 module, as the module will not
generate keys with a "q" size that is representable in DNSSEC.

2 years agoFix hangs when QUIC connection fails [#899]. (#900)
Bob Halley [Thu, 2 Mar 2023 15:51:50 +0000 (07:51 -0800)] 
Fix hangs when QUIC connection fails [#899]. (#900)

This also fixes problems with computing the wait_for() timeout for
the sync and asyncio ports, and fixes delivery of the timeout for
the sync port.

2 years agoMake a few nameserver changes that missed getting added to the PR.
Bob Halley [Sat, 25 Feb 2023 20:01:03 +0000 (12:01 -0800)] 
Make a few nameserver changes that missed getting added to the PR.

2 years agoResolver "nameserver" object support. (#897)
Bob Halley [Sat, 25 Feb 2023 19:43:26 +0000 (11:43 -0800)] 
Resolver "nameserver" object support. (#897)

* Resolver "nameserver" object support.

This turns the list of nameserver strings in the resolver into a tuple
of nameserver objects, which abstract away making queries to a
nameserver of a given type.

The resolver's legacy nameserver list is "enriched" into a tuple of
nameserver objects whenever it is set.  Note that you cannot mutate
the object other than by setting,
e.g. res.nameservers.append("1.2.3.4") will not work.

Error message accumulation has been updated to refer to the
nameservers using a descriptive text form.

* doco fix

* more doco fixes

* do enrichment at Resolution time

* require a later mypy, fix type issues

* add nameserver doc

2 years agoFix typos.
Brian Wellington [Fri, 17 Feb 2023 19:17:04 +0000 (11:17 -0800)] 
Fix typos.

2 years agoAdd dns.quic to setup.cfg for legacy setup.py installs [#896]
Bob Halley [Sat, 11 Feb 2023 23:17:27 +0000 (15:17 -0800)] 
Add dns.quic to setup.cfg for legacy setup.py installs [#896]

2 years agoBump sphinx-rtd-theme from 1.1.1 to 1.2.0 (#894)
dependabot[bot] [Wed, 8 Feb 2023 16:23:55 +0000 (08:23 -0800)] 
Bump sphinx-rtd-theme from 1.1.1 to 1.2.0 (#894)

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 1.1.1 to 1.2.0.
- [Release notes](https://github.com/readthedocs/sphinx_rtd_theme/releases)
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](https://github.com/readthedocs/sphinx_rtd_theme/compare/1.1.1...1.2.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years agoadd more minor typehints (#889)
Mathias Ertl [Mon, 6 Feb 2023 00:33:59 +0000 (01:33 +0100)] 
add more minor typehints (#889)

2 years agoUpdate black requirement from ^22.1.0 to ^23.1.0 (#892)
dependabot[bot] [Wed, 1 Feb 2023 16:27:14 +0000 (08:27 -0800)] 
Update black requirement from ^22.1.0 to ^23.1.0 (#892)

Updates the requirements on [black](https://github.com/psf/black) to permit the latest version.
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](https://github.com/psf/black/compare/22.1.0...23.1.0)

---
updated-dependencies:
- dependency-name: black
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years agoBump readthedocs-sphinx-search from 0.1.2 to 0.2.0 (#891)
dependabot[bot] [Wed, 25 Jan 2023 17:07:51 +0000 (09:07 -0800)] 
Bump readthedocs-sphinx-search from 0.1.2 to 0.2.0 (#891)

Bumps [readthedocs-sphinx-search](https://github.com/readthedocs/readthedocs-sphinx-search) from 0.1.2 to 0.2.0.
- [Release notes](https://github.com/readthedocs/readthedocs-sphinx-search/releases)
- [Changelog](https://github.com/readthedocs/readthedocs-sphinx-search/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/readthedocs/readthedocs-sphinx-search/commits)

---
updated-dependencies:
- dependency-name: readthedocs-sphinx-search
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years agoThe DS digest_type field is now made a DSDigest instance by the constructor (#890)
Dennis Værum [Wed, 25 Jan 2023 17:06:49 +0000 (18:06 +0100)] 
The DS digest_type field is now made a DSDigest instance by the constructor (#890)

Hey @rthalley

I found another place in the code there, you may have gotten "distracted" 😉 as you phrased it in
https://github.com/rthalley/dnspython/issues/888#issuecomment-1402198449

So, I just made a pull request this time

2 years agoThe DNSKEY flags field is now made a Flag instance by the constructor.
Bob Halley [Tue, 24 Jan 2023 16:37:37 +0000 (08:37 -0800)] 
The DNSKEY flags field is now made a Flag instance by the constructor.

2 years agoMore doco updates for 2.4
Bob Halley [Wed, 18 Jan 2023 13:16:14 +0000 (05:16 -0800)] 
More doco updates for 2.4

2 years agoAdd missing quic files to setup.py cythonize [#887].
Bob Halley [Wed, 18 Jan 2023 12:50:29 +0000 (04:50 -0800)] 
Add missing quic files to setup.py cythonize [#887].

2 years agoAdd deprecation note about the Resolver nameserver attribute.
Bob Halley [Sun, 15 Jan 2023 16:36:56 +0000 (08:36 -0800)] 
Add deprecation note about the Resolver nameserver attribute.

2 years agoMake Coverity happier [#882].
Bob Halley [Thu, 12 Jan 2023 22:00:52 +0000 (14:00 -0800)] 
Make Coverity happier [#882].

2 years agoUse 'https' instead of 'http' for dnspython.org (#883)
Rafael Guterres Jeffman [Wed, 11 Jan 2023 22:37:13 +0000 (19:37 -0300)] 
Use 'https' instead of 'http' for dnspython.org (#883)

These days, 'https' should be used instead of 'http' for almost
anything, and Coverity is warning that dnspython.org URL in 'setup.cfg'
uses 'http'.

This patch changes the use of 'http' to 'https' on setup.cfg and
documentation, where it does not affect module code, tests or examples.

2 years agoremove obsolete lgtm link
Bob Halley [Mon, 2 Jan 2023 21:21:20 +0000 (13:21 -0800)] 
remove obsolete lgtm link

2 years agoRemove obsolete comment (#873)
sblondon [Mon, 2 Jan 2023 16:59:57 +0000 (17:59 +0100)] 
Remove obsolete comment (#873)

2 years agoUpdate cryptography requirement from >=2.6,<39.0 to >=2.6,<40.0 (#878)
dependabot[bot] [Mon, 2 Jan 2023 16:57:48 +0000 (08:57 -0800)] 
Update cryptography requirement from >=2.6,<39.0 to >=2.6,<40.0 (#878)

Updates the requirements on [cryptography](https://github.com/pyca/cryptography) to permit the latest version.
- [Release notes](https://github.com/pyca/cryptography/releases)
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/2.6...39.0.0)

---
updated-dependencies:
- dependency-name: cryptography
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years agoUpdate SECURITY.md to 2.3.x
Bob Halley [Tue, 27 Dec 2022 19:34:23 +0000 (11:34 -0800)] 
Update SECURITY.md to 2.3.x

2 years agoUpdate versions and CI post 2.3 branch.
Bob Halley [Tue, 27 Dec 2022 19:23:41 +0000 (11:23 -0800)] 
Update versions and CI post 2.3 branch.

2 years agoupdate whatsnew
Bob Halley [Fri, 23 Dec 2022 17:26:47 +0000 (09:26 -0800)] 
update whatsnew

2 years agolint
Bob Halley [Fri, 23 Dec 2022 17:24:21 +0000 (09:24 -0800)] 
lint

2 years agoDNSSEC doco fixes.
Bob Halley [Fri, 23 Dec 2022 17:19:47 +0000 (09:19 -0800)] 
DNSSEC doco fixes.

2 years agoCDS/CDNSKEY utilities (#872)
Jakob Schlyter [Fri, 23 Dec 2022 17:11:31 +0000 (18:11 +0100)] 
CDS/CDNSKEY utilities (#872)

Add CDS and CDNSKEY utilities:

make_cdnskey()
make_cds()
make_ds_rdataset()
cds_rdataset_to_ds_rdataset()
dnskey_rdataset_to_cds_rdataset()
dnskey_rdataset_to_cdnskey_rdataset()

2 years agoUpdate pocov Makefile rule for coverage 7.0.0.
Bob Halley [Tue, 20 Dec 2022 14:20:30 +0000 (06:20 -0800)] 
Update pocov Makefile rule for coverage 7.0.0.

2 years agoUpdate coverage requirement from ^6.0 to ^7.0 (#874)
dependabot[bot] [Tue, 20 Dec 2022 14:12:36 +0000 (06:12 -0800)] 
Update coverage requirement from ^6.0 to ^7.0 (#874)

Updates the requirements on [coverage](https://github.com/nedbat/coveragepy) to permit the latest version.
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](https://github.com/nedbat/coveragepy/compare/6.0...7.0.0)

---
updated-dependencies:
- dependency-name: coverage
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years agoFix async quic() doco.
Bob Halley [Fri, 16 Dec 2022 21:54:05 +0000 (13:54 -0800)] 
Fix async quic() doco.

2 years agoProperly pass source and source_port to connect() in the sync version of quic().
Bob Halley [Fri, 16 Dec 2022 21:49:25 +0000 (13:49 -0800)] 
Properly pass source and source_port to connect() in the sync version of quic().

3 years agoFix misc. lint.
Bob Halley [Fri, 16 Dec 2022 15:50:50 +0000 (07:50 -0800)] 
Fix misc. lint.

3 years agoRemove unsupported python case (#871)
sblondon [Fri, 16 Dec 2022 15:32:19 +0000 (16:32 +0100)] 
Remove unsupported python case (#871)

3 years agoDNSSEC policy. (#869)
Bob Halley [Thu, 15 Dec 2022 14:22:27 +0000 (06:22 -0800)] 
DNSSEC policy. (#869)

3 years agoadd DNSSEC sign() to whatsnew
Bob Halley [Tue, 13 Dec 2022 02:24:16 +0000 (18:24 -0800)] 
add DNSSEC sign() to whatsnew

3 years agoadd sign and make_dnskey functions (#868)
Jakob Schlyter [Tue, 13 Dec 2022 12:59:25 +0000 (13:59 +0100)] 
add sign and make_dnskey functions (#868)

3 years agoImprove DNSSEC _doco, minor DNSSEC and typing tweaks.
Bob Halley [Tue, 13 Dec 2022 02:17:43 +0000 (18:17 -0800)] 
Improve DNSSEC _doco, minor DNSSEC and typing tweaks.

3 years agoDNSSEC signer (#866)
Jakob Schlyter [Tue, 13 Dec 2022 01:28:00 +0000 (02:28 +0100)] 
DNSSEC signer (#866)

* first cut at key_to_dnskey

* update docs

* typo

* use real test vectors for DNSKEY

* comment

* split

* add test for large exponent size

* rename to make_dnskey

* no default algorithm

* rename and add comment

* split out function to create rrsig signature data

* docs

* add type for public key

* more typing

* make RSA exponent key test easier to read

* work in progress for dns.dnssec.sign

* better docs

* docs

* simplify

* add test with RSASHA1

* initial support for DSA

* update docs

* clean up DSA, t still not clear

* allow inception/expiration to be specified as datetime, string, float or in

* allow rrset to be specified as a tuple

* calculate dsa_t

* reformat

* more rrset tuple fixes

* support DSA

* improve exception handling

* fix return type error

* fix typing issue to silence mypy

* make test case more verbose

* ensure UTC and use sigtime_to_posixtime to convert text to timestamp

3 years agoAdd NSEC3 RFC to doco.
Bob Halley [Fri, 9 Dec 2022 14:58:57 +0000 (06:58 -0800)] 
Add NSEC3 RFC to doco.

3 years agoAdd more DNSSEC RFCs.
Bob Halley [Wed, 7 Dec 2022 17:08:13 +0000 (09:08 -0800)] 
Add more DNSSEC RFCs.

3 years agoOne more RFC text tweak.
Bob Halley [Wed, 30 Nov 2022 14:27:39 +0000 (06:27 -0800)] 
One more RFC text tweak.

3 years agoMore RFC updates.
Bob Halley [Wed, 30 Nov 2022 14:27:00 +0000 (06:27 -0800)] 
More RFC updates.

3 years agoMore whatsnew updates.
Bob Halley [Mon, 28 Nov 2022 02:01:55 +0000 (18:01 -0800)] 
More whatsnew updates.

3 years agoMerge pull request #863 from rbrins/master
Bob Halley [Wed, 30 Nov 2022 13:15:18 +0000 (05:15 -0800)] 
Merge pull request #863 from rbrins/master

changed docs dns.resolver.Answer response to QueryMessage

3 years agochanged docs dns.resolver.Answer response to QueryMessage 863/head
Russell [Tue, 29 Nov 2022 17:07:51 +0000 (12:07 -0500)] 
changed docs dns.resolver.Answer response to QueryMessage

3 years agoBasic SVCB and HTTPS doco.
Bob Halley [Mon, 28 Nov 2022 01:42:31 +0000 (17:42 -0800)] 
Basic SVCB and HTTPS doco.

3 years agoAdd some more RFCs.
Bob Halley [Sun, 27 Nov 2022 22:27:46 +0000 (14:27 -0800)] 
Add some more RFCs.

3 years agoImprove AMTRELAY doco.
Bob Halley [Sun, 27 Nov 2022 22:17:15 +0000 (14:17 -0800)] 
Improve AMTRELAY doco.

3 years agoAdd doco for AMTRELAY, L32, L64, LP, and NID.
Bob Halley [Sun, 27 Nov 2022 22:06:09 +0000 (14:06 -0800)] 
Add doco for AMTRELAY, L32, L64, LP, and NID.

3 years agoMake generate-rdatatype-doc.py work properly again.
Bob Halley [Sun, 27 Nov 2022 21:38:54 +0000 (13:38 -0800)] 
Make generate-rdatatype-doc.py work properly again.

3 years agoTest on 3.10 still for windows as aioquic does not build without openssl source.
Bob Halley [Thu, 24 Nov 2022 15:44:47 +0000 (07:44 -0800)] 
Test on 3.10 still for windows as aioquic does not build without openssl source.

3 years agoDoQ packing and testing tweaks
Bob Halley [Thu, 24 Nov 2022 15:27:12 +0000 (07:27 -0800)] 
DoQ packing and testing tweaks

3 years agoFix type lint from latest mypy.
Bob Halley [Thu, 24 Nov 2022 15:20:58 +0000 (07:20 -0800)] 
Fix type lint from latest mypy.

3 years agoMerge pull request #842 from rthalley/quic
Bob Halley [Thu, 24 Nov 2022 14:56:04 +0000 (06:56 -0800)] 
Merge pull request #842 from rthalley/quic

Initial DoQ support.

3 years agoMerge pull request #858 from rthalley/dependabot/pip/sphinx-rtd-theme-1.1.1
Bob Halley [Mon, 7 Nov 2022 17:16:38 +0000 (09:16 -0800)] 
Merge pull request #858 from rthalley/dependabot/pip/sphinx-rtd-theme-1.1.1

Bump sphinx-rtd-theme from 1.1.0 to 1.1.1

3 years agoBump sphinx-rtd-theme from 1.1.0 to 1.1.1 858/head
dependabot[bot] [Mon, 7 Nov 2022 16:09:15 +0000 (16:09 +0000)] 
Bump sphinx-rtd-theme from 1.1.0 to 1.1.1

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/readthedocs/sphinx_rtd_theme/releases)
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](https://github.com/readthedocs/sphinx_rtd_theme/compare/1.1.0...1.1.1)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoMerge pull request #856 from GlennChia/docs/fix-typo-examples
Bob Halley [Mon, 7 Nov 2022 13:45:46 +0000 (05:45 -0800)] 
Merge pull request #856 from GlennChia/docs/fix-typo-examples

docs: programs typo

3 years agodocs: programs typo 856/head
Glenn [Mon, 7 Nov 2022 06:58:14 +0000 (14:58 +0800)] 
docs: programs typo

3 years agoMerge pull request #852 from rthalley/dependabot/pip/sphinx-rtd-theme-1.1.0
Bob Halley [Sun, 6 Nov 2022 00:47:30 +0000 (17:47 -0700)] 
Merge pull request #852 from rthalley/dependabot/pip/sphinx-rtd-theme-1.1.0

Bump sphinx-rtd-theme from 1.0.0 to 1.1.0

3 years agoMerge pull request #855 from rthalley/dependabot/pip/wheel-tw-0.38.1
Bob Halley [Sun, 6 Nov 2022 00:46:13 +0000 (17:46 -0700)] 
Merge pull request #855 from rthalley/dependabot/pip/wheel-tw-0.38.1

Update wheel requirement from ^0.37.1 to ^0.38.1

3 years agoMerge pull request #853 from jameshilliard/no-wheel
Bob Halley [Sun, 6 Nov 2022 00:45:22 +0000 (17:45 -0700)] 
Merge pull request #853 from jameshilliard/no-wheel

Remove spurious wheel build dependency

3 years agoUpdate wheel requirement from ^0.37.1 to ^0.38.1 855/head
dependabot[bot] [Fri, 4 Nov 2022 16:08:34 +0000 (16:08 +0000)] 
Update wheel requirement from ^0.37.1 to ^0.38.1

Updates the requirements on [wheel](https://github.com/pypa/wheel) to permit the latest version.
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](https://github.com/pypa/wheel/compare/0.37.1...0.38.1)

---
updated-dependencies:
- dependency-name: wheel
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoRemove spurious wheel build dependency 853/head
James Hilliard [Wed, 2 Nov 2022 20:01:58 +0000 (14:01 -0600)] 
Remove spurious wheel build dependency

Wheel isn't a build dependency so it shouldn't be in setup_requires.

3 years agoBump sphinx-rtd-theme from 1.0.0 to 1.1.0 852/head
dependabot[bot] [Wed, 2 Nov 2022 16:38:19 +0000 (16:38 +0000)] 
Bump sphinx-rtd-theme from 1.0.0 to 1.1.0

Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 1.0.0 to 1.1.0.
- [Release notes](https://github.com/readthedocs/sphinx_rtd_theme/releases)
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](https://github.com/readthedocs/sphinx_rtd_theme/compare/1.0.0...1.1.0)

---
updated-dependencies:
- dependency-name: sphinx-rtd-theme
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoupdate to dev version
Bob Halley [Fri, 28 Oct 2022 01:23:37 +0000 (18:23 -0700)] 
update to dev version

3 years agoMerge pull request #849 from eaglegai/master
Bob Halley [Fri, 28 Oct 2022 01:22:30 +0000 (18:22 -0700)] 
Merge pull request #849 from eaglegai/master

fix missing version in setup.cfg

3 years agofix missing version in setup.cfg 849/head
eaglegai [Thu, 27 Oct 2022 15:07:17 +0000 (23:07 +0800)] 
fix missing version in setup.cfg

Signed-off-by: eaglegai <eaglegai@163.com>
3 years agoFor async send_udp(), return a length and clarify the expiration
Bob Halley [Fri, 14 Oct 2022 01:10:34 +0000 (18:10 -0700)] 
For async send_udp(), return a length and clarify the expiration
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]

3 years agofix doco typo 842/head
Bob Halley [Thu, 13 Oct 2022 00:32:32 +0000 (17:32 -0700)] 
fix doco typo

3 years agotemporarily add aioquic
Bob Halley [Mon, 10 Oct 2022 01:03:05 +0000 (18:03 -0700)] 
temporarily add aioquic

3 years agoadd missing skip marks
Bob Halley [Mon, 10 Oct 2022 01:00:19 +0000 (18:00 -0700)] 
add missing skip marks

3 years agoInitial DoQ support.
Bob Halley [Sat, 1 Oct 2022 22:24:13 +0000 (15:24 -0700)] 
Initial DoQ support.

3 years agoMerge pull request #845 from rthalley/asyncio-timeout-fix
Bob Halley [Sat, 8 Oct 2022 14:04:29 +0000 (07:04 -0700)] 
Merge pull request #845 from rthalley/asyncio-timeout-fix

Asyncio sockets should work after a timeout [#843].

3 years agoMerge pull request #846 from rthalley/dependabot/pip/requests-toolbelt-gte-0.9.1...
Bob Halley [Fri, 7 Oct 2022 19:07:55 +0000 (12:07 -0700)] 
Merge pull request #846 from rthalley/dependabot/pip/requests-toolbelt-gte-0.9.1-and-lt-0.11.0

Update requests-toolbelt requirement from ^0.9.1 to >=0.9.1,<0.11.0

3 years agoUpdate requests-toolbelt requirement from ^0.9.1 to >=0.9.1,<0.11.0 846/head
dependabot[bot] [Fri, 7 Oct 2022 16:04:54 +0000 (16:04 +0000)] 
Update requests-toolbelt requirement from ^0.9.1 to >=0.9.1,<0.11.0

Updates the requirements on [requests-toolbelt](https://github.com/requests/toolbelt) to permit the latest version.
- [Release notes](https://github.com/requests/toolbelt/releases)
- [Changelog](https://github.com/requests/toolbelt/blob/master/HISTORY.rst)
- [Commits](https://github.com/requests/toolbelt/compare/0.9.1...0.10.0)

---
updated-dependencies:
- dependency-name: requests-toolbelt
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoAsyncio sockets should work after a timeout [#843]. 845/head
Bob Halley [Thu, 6 Oct 2022 11:33:16 +0000 (04:33 -0700)] 
Asyncio sockets should work after a timeout [#843].

3 years agoDeal with leading dots in search lists on Windows [#844].
Bob Halley [Thu, 6 Oct 2022 11:08:38 +0000 (04:08 -0700)] 
Deal with leading dots in search lists on Windows [#844].

3 years agomore lint
Bob Halley [Sun, 2 Oct 2022 17:04:05 +0000 (10:04 -0700)] 
more lint

3 years agotry again to fix CodeQL
Bob Halley [Sun, 2 Oct 2022 17:03:59 +0000 (10:03 -0700)] 
try again to fix CodeQL

3 years agolint
Bob Halley [Sun, 2 Oct 2022 16:40:42 +0000 (09:40 -0700)] 
lint

3 years agotry to fix codeql
Bob Halley [Thu, 29 Sep 2022 19:19:17 +0000 (12:19 -0700)] 
try to fix codeql

3 years agoMerge pull request #841 from rthalley/dependabot/pip/pytest-cov-tw-4.0.0
Bob Halley [Thu, 29 Sep 2022 19:11:19 +0000 (12:11 -0700)] 
Merge pull request #841 from rthalley/dependabot/pip/pytest-cov-tw-4.0.0

Update pytest-cov requirement from ^3.0.0 to ^4.0.0

3 years agoUpdate pytest-cov requirement from ^3.0.0 to ^4.0.0 841/head
dependabot[bot] [Thu, 29 Sep 2022 16:03:47 +0000 (16:03 +0000)] 
Update pytest-cov requirement from ^3.0.0 to ^4.0.0

Updates the requirements on [pytest-cov](https://github.com/pytest-dev/pytest-cov) to permit the latest version.
- [Release notes](https://github.com/pytest-dev/pytest-cov/releases)
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest-cov/compare/v3.0.0...v4.0.0)

---
updated-dependencies:
- dependency-name: pytest-cov
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoMerge pull request #840 from rthalley/dependabot/pip/trio-gte-0.14-and-lt-0.23
Bob Halley [Wed, 28 Sep 2022 16:40:41 +0000 (09:40 -0700)] 
Merge pull request #840 from rthalley/dependabot/pip/trio-gte-0.14-and-lt-0.23

Update trio requirement from >=0.14,<0.22 to >=0.14,<0.23

3 years agoUpdate trio requirement from >=0.14,<0.22 to >=0.14,<0.23 840/head
dependabot[bot] [Wed, 28 Sep 2022 16:04:52 +0000 (16:04 +0000)] 
Update trio requirement from >=0.14,<0.22 to >=0.14,<0.23

Updates the requirements on [trio](https://github.com/python-trio/trio) to permit the latest version.
- [Release notes](https://github.com/python-trio/trio/releases)
- [Commits](https://github.com/python-trio/trio/compare/v0.14.0...v0.22.0)

---
updated-dependencies:
- dependency-name: trio
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoMerge pull request #837 from rthalley/dependabot/pip/cryptography-gte-2.6-and-lt...
Bob Halley [Wed, 7 Sep 2022 19:08:27 +0000 (12:08 -0700)] 
Merge pull request #837 from rthalley/dependabot/pip/cryptography-gte-2.6-and-lt-39.0

Update cryptography requirement from >=2.6,<38.0 to >=2.6,<39.0

3 years agoUpdate cryptography requirement from >=2.6,<38.0 to >=2.6,<39.0 837/head
dependabot[bot] [Wed, 7 Sep 2022 16:02:50 +0000 (16:02 +0000)] 
Update cryptography requirement from >=2.6,<38.0 to >=2.6,<39.0

Updates the requirements on [cryptography](https://github.com/pyca/cryptography) to permit the latest version.
- [Release notes](https://github.com/pyca/cryptography/releases)
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](https://github.com/pyca/cryptography/compare/2.6...38.0.1)

---
updated-dependencies:
- dependency-name: cryptography
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
3 years agoMerge pull request #836 from rthalley/dependabot/pip/wheel-tw-0.37.1
Bob Halley [Mon, 5 Sep 2022 18:24:43 +0000 (11:24 -0700)] 
Merge pull request #836 from rthalley/dependabot/pip/wheel-tw-0.37.1

Update wheel requirement from ^0.35.0 to ^0.37.1

3 years agoUpdate wheel requirement from ^0.35.0 to ^0.37.1 836/head
dependabot[bot] [Mon, 5 Sep 2022 16:55:50 +0000 (16:55 +0000)] 
Update wheel requirement from ^0.35.0 to ^0.37.1

Updates the requirements on [wheel](https://github.com/pypa/wheel) to permit the latest version.
- [Release notes](https://github.com/pypa/wheel/releases)
- [Changelog](https://github.com/pypa/wheel/blob/main/docs/news.rst)
- [Commits](https://github.com/pypa/wheel/compare/0.35.0...0.37.1)

---
updated-dependencies:
- dependency-name: wheel
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>