[PR #1069] [MERGED] 0.19.4 release #1944

Closed
opened 2026-03-16 04:00:20 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/1069
Author: @bluejekyll
Created: 4/12/2020
Status: Merged
Merged: 4/12/2020
Merged by: @bluejekyll

Base: release/0.19Head: master


📝 Commits (10+)

  • 5a58011 add CRATES_IO_TOKEN to publish workflow
  • a054d5e Cleanup unimplemented for RData parser (#1026)
  • 84d9fc0 Bump enum-as-inner from 0.3.0 to 0.3.1
  • c6a2a65 Bump data-encoding from 2.1.2 to 2.2.0
  • e137e72 Balboah fix/missing cname records (#1033)
  • a2bba3f upgrade rustlts to 0.17 and tokio-rustls to 0.12
  • 7c2ea11 update changelog for 0.19.4
  • 6a01e43 Bump chrono from 0.4.10 to 0.4.11
  • 77fd933 Support $INCLUDE for master files (#1027)
  • c7c0dfe fix rustc 1.42 warnings and update libs

📊 Changes

61 files changed (+2177 additions, -770 deletions)

View changed files

📝 .github/workflows/publish.yml (+3 -1)
📝 .github/workflows/test.yml (+6 -6)
📝 .rustfmt.toml (+1 -0)
📝 CHANGELOG.md (+15 -0)
📝 Cargo.lock (+490 -419)
📝 Cargo.toml (+1 -0)
📝 Makefile.toml (+18 -11)
📝 README.md (+1 -1)
📝 bin/Cargo.toml (+11 -11)
📝 bin/README.md (+1 -1)
crates/async-std-resolver/Cargo.toml (+74 -0)
crates/async-std-resolver/LICENSE-APACHE (+202 -0)
crates/async-std-resolver/LICENSE-MIT (+20 -0)
crates/async-std-resolver/README.md (+58 -0)
crates/async-std-resolver/src/lib.rs (+129 -0)
crates/async-std-resolver/src/net.rs (+81 -0)
crates/async-std-resolver/src/runtime.rs (+86 -0)
crates/async-std-resolver/src/tests.rs (+201 -0)
crates/async-std-resolver/src/time.rs (+31 -0)
📝 crates/client/Cargo.toml (+7 -7)

...and 41 more files

📄 Description

No description provided


🔄 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/hickory-dns/hickory-dns/pull/1069 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 4/12/2020 **Status:** ✅ Merged **Merged:** 4/12/2020 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `release/0.19` ← **Head:** `master` --- ### 📝 Commits (10+) - [`5a58011`](https://github.com/hickory-dns/hickory-dns/commit/5a5801114df5c12870460fcae2f1d52979d68606) add CRATES_IO_TOKEN to publish workflow - [`a054d5e`](https://github.com/hickory-dns/hickory-dns/commit/a054d5e50aa6a001e0966146ac8bd5f0273203fd) Cleanup unimplemented for RData parser (#1026) - [`84d9fc0`](https://github.com/hickory-dns/hickory-dns/commit/84d9fc03cf09828a356c2666b93cba029261a139) Bump enum-as-inner from 0.3.0 to 0.3.1 - [`c6a2a65`](https://github.com/hickory-dns/hickory-dns/commit/c6a2a657ffbd4b818278bb126492f58fb100dfcb) Bump data-encoding from 2.1.2 to 2.2.0 - [`e137e72`](https://github.com/hickory-dns/hickory-dns/commit/e137e72f343960bab9965049bd6c02d05169a603) Balboah fix/missing cname records (#1033) - [`a2bba3f`](https://github.com/hickory-dns/hickory-dns/commit/a2bba3fee09eea332b3f024caf0e9dff8f44e088) upgrade rustlts to 0.17 and tokio-rustls to 0.12 - [`7c2ea11`](https://github.com/hickory-dns/hickory-dns/commit/7c2ea112038d373784510f7bbd843d31dc3f0ae2) update changelog for 0.19.4 - [`6a01e43`](https://github.com/hickory-dns/hickory-dns/commit/6a01e4326faa7b8006f98e7927c714294d8ae977) Bump chrono from 0.4.10 to 0.4.11 - [`77fd933`](https://github.com/hickory-dns/hickory-dns/commit/77fd933d5312d062bedd73d3a352cf9ed4b3c5e5) Support $INCLUDE for master files (#1027) - [`c7c0dfe`](https://github.com/hickory-dns/hickory-dns/commit/c7c0dfea237adfdfa3139a2357b989719d546aad) fix rustc 1.42 warnings and update libs ### 📊 Changes **61 files changed** (+2177 additions, -770 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/publish.yml` (+3 -1) 📝 `.github/workflows/test.yml` (+6 -6) 📝 `.rustfmt.toml` (+1 -0) 📝 `CHANGELOG.md` (+15 -0) 📝 `Cargo.lock` (+490 -419) 📝 `Cargo.toml` (+1 -0) 📝 `Makefile.toml` (+18 -11) 📝 `README.md` (+1 -1) 📝 `bin/Cargo.toml` (+11 -11) 📝 `bin/README.md` (+1 -1) ➕ `crates/async-std-resolver/Cargo.toml` (+74 -0) ➕ `crates/async-std-resolver/LICENSE-APACHE` (+202 -0) ➕ `crates/async-std-resolver/LICENSE-MIT` (+20 -0) ➕ `crates/async-std-resolver/README.md` (+58 -0) ➕ `crates/async-std-resolver/src/lib.rs` (+129 -0) ➕ `crates/async-std-resolver/src/net.rs` (+81 -0) ➕ `crates/async-std-resolver/src/runtime.rs` (+86 -0) ➕ `crates/async-std-resolver/src/tests.rs` (+201 -0) ➕ `crates/async-std-resolver/src/time.rs` (+31 -0) 📝 `crates/client/Cargo.toml` (+7 -7) _...and 41 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 04:00:20 +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/hickory-dns#1944
No description provided.