From 85682f7f05a5c850b4b58264a7b5c7c83193bcfd Mon Sep 17 00:00:00 2001 From: Yann Stepienik Date: Wed, 5 Jul 2023 12:47:33 +0100 Subject: [PATCH] [release] v0.9.3 --- changelog.md | 3 ++- package.json | 2 +- src/utils/utils.go | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index a2eb422..3ba309e 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,6 @@ -## Version 0.9.1 > 0.9.2 +## Version 0.9.1 > 0.9.3 - Fix subdomain logic for composed TLDs + - Fix domain depupe logic ## Version 0.9.0 - Rewrote the entire HTTPS / DNS challenge system to be more robust and easier to use diff --git a/package.json b/package.json index 1a828e7..7568b67 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cosmos-server", - "version": "0.9.2", + "version": "0.9.3", "description": "", "main": "test-server.js", "bugs": { diff --git a/src/utils/utils.go b/src/utils/utils.go index 0c02c84..a217ee2 100644 --- a/src/utils/utils.go +++ b/src/utils/utils.go @@ -371,7 +371,7 @@ func GetAllHostnames(applyWildCard bool, removePorts bool) []string { } for _, hostname := range uniqueHostnames { - if hostname != mainHostname && !strings.HasSuffix(hostname, "."+mainHostname) { + if hostname != bareMainHostname && !strings.HasSuffix(hostname, "." + bareMainHostname) { filteredHostnames = append(filteredHostnames, hostname) } }