[PR #414] [MERGED] Introducing option to customize rcode #484

Closed
opened 2026-02-26 04:35:24 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mageddo/dns-proxy-server/pull/414
Author: @mageddo
Created: 4/12/2023
Status: Merged
Merged: 4/12/2023
Merged by: @mageddo

Base: masterHead: 386


📝 Commits (6)

  • 9e33fab option to customize default r code
  • 83b9945 missing impl
  • cba9ac1 missing impl
  • 3328537 adjusting the docs
  • 3427f37 adjusting the docs
  • ac7676c [Gradle Release Plugin] - new version commit: '3.15.13-snapshot'.

📊 Changes

20 files changed (+77 additions, -13 deletions)

View changed files

📝 RELEASE-NOTES.md (+2 -0)
📝 docs/content/3-configuration/_index.en.md (+9 -1)
📝 gradle.properties (+1 -1)
📝 src/main/java/com/mageddo/dnsproxyserver/config/Config.java (+2 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/Configs.java (+3 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigEnv.java (+4 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigFlag.java (+10 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJson.java (+2 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJsonV1.java (+5 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJsonV2.java (+2 -0)
📝 src/main/java/com/mageddo/dnsproxyserver/server/dns/RequestHandlerDefault.java (+6 -2)
📝 src/main/java/com/mageddo/dnsproxyserver/utils/Envs.java (+11 -0)
📝 src/test/java/com/mageddo/dnsproxyserver/config/entrypoint/JsonConfigsTest.java (+8 -8)
📝 src/test/resources/config-json-v1-test/002.json (+1 -0)
📝 src/test/resources/configs-test/001.json (+1 -0)
📝 src/test/resources/configs-test/002.json (+1 -0)
📝 src/test/resources/configs-test/004.json (+1 -0)
📝 src/test/resources/flags-test/001.json (+1 -0)
📝 src/test/resources/flags-test/002.txt (+6 -1)
📝 src/test/resources/json-configs-test/001.json (+1 -0)

📄 Description

Relates to #386


🔄 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/mageddo/dns-proxy-server/pull/414 **Author:** [@mageddo](https://github.com/mageddo) **Created:** 4/12/2023 **Status:** ✅ Merged **Merged:** 4/12/2023 **Merged by:** [@mageddo](https://github.com/mageddo) **Base:** `master` ← **Head:** `386` --- ### 📝 Commits (6) - [`9e33fab`](https://github.com/mageddo/dns-proxy-server/commit/9e33fabc6618176b4455de102e5c06253ea0d941) option to customize default r code - [`83b9945`](https://github.com/mageddo/dns-proxy-server/commit/83b99454fdf82fc9ca32768f900e56ce7551ede2) missing impl - [`cba9ac1`](https://github.com/mageddo/dns-proxy-server/commit/cba9ac1e5eee008dac86e98a5651922a7b72fcc7) missing impl - [`3328537`](https://github.com/mageddo/dns-proxy-server/commit/3328537bc21171dbb8c532d1754b3bac22a9ee73) adjusting the docs - [`3427f37`](https://github.com/mageddo/dns-proxy-server/commit/3427f375d1b1c6d3081f8749d9c67075b39f3775) adjusting the docs - [`ac7676c`](https://github.com/mageddo/dns-proxy-server/commit/ac7676cbc0405cb6c412b428e16a9901441ee979) [Gradle Release Plugin] - new version commit: '3.15.13-snapshot'. ### 📊 Changes **20 files changed** (+77 additions, -13 deletions) <details> <summary>View changed files</summary> 📝 `RELEASE-NOTES.md` (+2 -0) 📝 `docs/content/3-configuration/_index.en.md` (+9 -1) 📝 `gradle.properties` (+1 -1) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/Config.java` (+2 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/Configs.java` (+3 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigEnv.java` (+4 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigFlag.java` (+10 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJson.java` (+2 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJsonV1.java` (+5 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/config/entrypoint/ConfigJsonV2.java` (+2 -0) 📝 `src/main/java/com/mageddo/dnsproxyserver/server/dns/RequestHandlerDefault.java` (+6 -2) 📝 `src/main/java/com/mageddo/dnsproxyserver/utils/Envs.java` (+11 -0) 📝 `src/test/java/com/mageddo/dnsproxyserver/config/entrypoint/JsonConfigsTest.java` (+8 -8) 📝 `src/test/resources/config-json-v1-test/002.json` (+1 -0) 📝 `src/test/resources/configs-test/001.json` (+1 -0) 📝 `src/test/resources/configs-test/002.json` (+1 -0) 📝 `src/test/resources/configs-test/004.json` (+1 -0) 📝 `src/test/resources/flags-test/001.json` (+1 -0) 📝 `src/test/resources/flags-test/002.txt` (+6 -1) 📝 `src/test/resources/json-configs-test/001.json` (+1 -0) </details> ### 📄 Description Relates to #386 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-26 04:35:24 +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/dns-proxy-server-mageddo#484
No description provided.