[PR #2058] [CLOSED] Bump dnspython from 1.16.0 to 2.0.0 #2432

Closed
opened 2026-02-27 12:11:00 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/modoboa/modoboa/pull/2058
Author: @dependabot[bot]
Created: 10/23/2020
Status: Closed

Base: masterHead: dependabot/pip/dnspython-2.0.0


📝 Commits (1)

  • 4d7e1ca Bump dnspython from 1.16.0 to 2.0.0

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 requirements.txt (+1 -1)

📄 Description

Bumps dnspython from 1.16.0 to 2.0.0.

Changelog

Sourced from dnspython's changelog.

2.0.0

  • Python 3.6 or newer is required.

  • The license is now the ISC license.

  • Rdata is now immutable. Use dns.rdata.Rdata.replace() to make a new Rdata based on an existing one.

  • dns.resolver.resolve() has been added, allowing control of whether search lists are used. dns.resolver.query() is retained for backwards compatibility, but deprecated. The default for search list behavior can be set at in the resolver object with the use_search_by_default parameter. The default is False.

  • DNS-over-TLS is supported with dns.query.tls().

  • DNS-over-HTTPS is supported with dns.query.https(), and the resolver will use DNS-over-HTTPS for a nameserver which is an HTTPS URL.

  • Basic query and resolver support for the Trio, Curio, and asyncio asynchronous I/O libraries has been added in dns.asyncquery and dns.asyncresolver. This API should be viewed as experimental as asynchronous I/O support in dnspython is still evolving.

  • TSIG now defaults to using SHA-256.

  • Basic type info has been added to some functions. Future releases will have comprehensive type info.

  • from_text() functions now have a relativize_to parameter.

  • python-cryptography is now used for DNSSEC.

  • Ed25519 and Ed448 signatures are now supported.

  • A helper for NSEC3 generating hashes has been added.

  • SHA384 DS records are supported.

  • Rdatasets and RRsets are much faster.

  • dns.resolver.resolve_address() has been added, allowing easy address-to-name lookups.

  • dns.reversename functions now allow an alternate origin to be specified.

  • The repr form of Rdatasets and RRsets now includes the rdata.

... (truncated)

Commits
  • 8243c57 2.0.0 versioning
  • a7e71aa Add DoH JSON example.
  • 868c660 make executable
  • 858bd95 add ECS example
  • 540e0d1 Fix _wordbreak() to always return a str.
  • bac5775 Generalize the word breaking code.
  • 0333492 Make dns.rdata._base64ify(..., 0) work.
  • 6070cff Merge pull request #533 from bwelling/receive_queries
  • bc329ed apply patch codecov rules
  • 5250399 Add coverage for TCP/TLS async getsockname.
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/modoboa/modoboa/pull/2058 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 10/23/2020 **Status:** ❌ Closed **Base:** `master` ← **Head:** `dependabot/pip/dnspython-2.0.0` --- ### 📝 Commits (1) - [`4d7e1ca`](https://github.com/modoboa/modoboa/commit/4d7e1ca43275d6c5960cc9d7e8638547ed9536f2) Bump dnspython from 1.16.0 to 2.0.0 ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `requirements.txt` (+1 -1) </details> ### 📄 Description Bumps [dnspython](https://github.com/rthalley/dnspython) from 1.16.0 to 2.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/rthalley/dnspython/blob/master/doc/whatsnew.rst">dnspython's changelog</a>.</em></p> <blockquote> <h2>2.0.0</h2> <ul> <li> <p>Python 3.6 or newer is required.</p> </li> <li> <p>The license is now the ISC license.</p> </li> <li> <p>Rdata is now immutable. Use <code>dns.rdata.Rdata.replace()</code> to make a new Rdata based on an existing one.</p> </li> <li> <p>dns.resolver.resolve() has been added, allowing control of whether search lists are used. dns.resolver.query() is retained for backwards compatibility, but deprecated. The default for search list behavior can be set at in the resolver object with the <code>use_search_by_default</code> parameter. The default is False.</p> </li> <li> <p>DNS-over-TLS is supported with <code>dns.query.tls()</code>.</p> </li> <li> <p>DNS-over-HTTPS is supported with <code>dns.query.https()</code>, and the resolver will use DNS-over-HTTPS for a nameserver which is an HTTPS URL.</p> </li> <li> <p>Basic query and resolver support for the Trio, Curio, and asyncio asynchronous I/O libraries has been added in <code>dns.asyncquery</code> and <code>dns.asyncresolver</code>. This API should be viewed as experimental as asynchronous I/O support in dnspython is still evolving.</p> </li> <li> <p>TSIG now defaults to using SHA-256.</p> </li> <li> <p>Basic type info has been added to some functions. Future releases will have comprehensive type info.</p> </li> <li> <p>from_text() functions now have a <code>relativize_to</code> parameter.</p> </li> <li> <p>python-cryptography is now used for DNSSEC.</p> </li> <li> <p>Ed25519 and Ed448 signatures are now supported.</p> </li> <li> <p>A helper for NSEC3 generating hashes has been added.</p> </li> <li> <p>SHA384 DS records are supported.</p> </li> <li> <p>Rdatasets and RRsets are much faster.</p> </li> <li> <p>dns.resolver.resolve_address() has been added, allowing easy address-to-name lookups.</p> </li> <li> <p>dns.reversename functions now allow an alternate origin to be specified.</p> </li> <li> <p>The <code>repr</code> form of Rdatasets and RRsets now includes the rdata.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/rthalley/dnspython/commit/8243c571088bb2f9c3f5b49c5b96d7726e07231d"><code>8243c57</code></a> 2.0.0 versioning</li> <li><a href="https://github.com/rthalley/dnspython/commit/a7e71aa9b0ebf43c8f997adc66b45069506afa6e"><code>a7e71aa</code></a> Add DoH JSON example.</li> <li><a href="https://github.com/rthalley/dnspython/commit/868c660fc9487862cbb8b79bafdfd3209c54d4ad"><code>868c660</code></a> make executable</li> <li><a href="https://github.com/rthalley/dnspython/commit/858bd95b78429c1f8d3e1c6b902f7445da437c1e"><code>858bd95</code></a> add ECS example</li> <li><a href="https://github.com/rthalley/dnspython/commit/540e0d1f7d59e959b735cd1364ec9f2e32249e56"><code>540e0d1</code></a> Fix _wordbreak() to always return a str.</li> <li><a href="https://github.com/rthalley/dnspython/commit/bac5775b07f7e10c1a593533a8f1786f8b2ea40b"><code>bac5775</code></a> Generalize the word breaking code.</li> <li><a href="https://github.com/rthalley/dnspython/commit/033349257b72cb7bf5d65a536051bbe14b80e141"><code>0333492</code></a> Make dns.rdata._base64ify(..., 0) work.</li> <li><a href="https://github.com/rthalley/dnspython/commit/6070cffcadf72508c19e60cd6d4d24601c1ea7aa"><code>6070cff</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/rthalley/dnspython/issues/533">#533</a> from bwelling/receive_queries</li> <li><a href="https://github.com/rthalley/dnspython/commit/bc329ed22eba8dc4dd6b2605d9ba6bd789c2026c"><code>bc329ed</code></a> apply patch codecov rules</li> <li><a href="https://github.com/rthalley/dnspython/commit/5250399a9aeecab9dbf40a65164faf7290a08f5b"><code>5250399</code></a> Add coverage for TCP/TLS async getsockname.</li> <li>Additional commits viewable in <a href="https://github.com/rthalley/dnspython/compare/v1.16.0...v2.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=dnspython&package-manager=pip&previous-version=1.16.0&new-version=2.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/configuring-github-dependabot-security-updates) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 12:11:00 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/modoboa-modoboa#2432
No description provided.