diff --git a/security/acme-client/Makefile b/security/acme-client/Makefile
index 9c3b42af0..8ae4798d8 100644
--- a/security/acme-client/Makefile
+++ b/security/acme-client/Makefile
@@ -1,6 +1,5 @@
PLUGIN_NAME= acme-client
-PLUGIN_VERSION= 4.10
-PLUGIN_REVISION= 2
+PLUGIN_VERSION= 4.11
PLUGIN_COMMENT= ACME Client
PLUGIN_MAINTAINER= opnsense@moov.de
PLUGIN_DEPENDS= acme.sh py${PLUGIN_PYTHON}-dns-lexicon
diff --git a/security/acme-client/pkg-descr b/security/acme-client/pkg-descr
index 77d44c677..35361185e 100644
--- a/security/acme-client/pkg-descr
+++ b/security/acme-client/pkg-descr
@@ -8,6 +8,23 @@ WWW: https://github.com/acmesh-official/acme.sh
Plugin Changelog
================
+4.11
+
+Added:
+* add support for Hetzner Cloud DNS API (#5020)
+* add support for Selectel.ru V2 API (#4824)
+* add support for mijn.host DNS API (#4446)
+* add support for AzureDNS System Assigned Managed Identity #4830 (4830)
+
+Changed:
+* use mwexec/file_safe for HTTP-01/TLSALPN challenge types (core #9325)
+
+Fixed:
+* fix deprecated PHP syntax in cron settings (#4824)
+
+Deprecated:
+* deprecate support for HTTP-01 challenge types (no removal date yet)
+
4.10
Added:
diff --git a/security/acme-client/src/opnsense/mvc/app/controllers/OPNsense/AcmeClient/forms/dialogValidation.xml b/security/acme-client/src/opnsense/mvc/app/controllers/OPNsense/AcmeClient/forms/dialogValidation.xml
index 1ae76c22c..043047fff 100644
--- a/security/acme-client/src/opnsense/mvc/app/controllers/OPNsense/AcmeClient/forms/dialogValidation.xml
+++ b/security/acme-client/src/opnsense/mvc/app/controllers/OPNsense/AcmeClient/forms/dialogValidation.xml
@@ -1230,7 +1230,7 @@
text
-
+
header
@@ -1242,8 +1242,7 @@
validation.dns_sl_apiver
- text
- Available Values: V2
+ dropdownvalidation.dns_sl_token_lifetime
@@ -1255,7 +1254,7 @@
validation.dns_sl_account_idtext
- Account number, can be seen in the upper right corner on the provider's website
+ The account number can be found on the Selectel control panelvalidation.dns_sl_project_name
@@ -1266,7 +1265,7 @@
validation.dns_sl_login_nametext
- Service username, can be seen in the control panel
+ The service username can be found in the Selectel control panelvalidation.dns_sl_password
diff --git a/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeValidation/DnsSelectel.php b/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeValidation/DnsSelectel.php
index 5cae485b2..54a115cd3 100644
--- a/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeValidation/DnsSelectel.php
+++ b/security/acme-client/src/opnsense/mvc/app/library/OPNsense/AcmeClient/LeValidation/DnsSelectel.php
@@ -42,7 +42,7 @@ class DnsSelectel extends Base implements LeValidationInterface
{
$this->acme_env['SL_Key'] = (string)$this->config->dns_sl_key;
$this->acme_env['SL_Ver'] = (string)$this->config->dns_sl_apiver;
- $this->acme_env['SL_Expire'] = (string)$this->config->dns_slv2_token_lifetime;
+ $this->acme_env['SL_Expire'] = (string)$this->config->dns_sl_token_lifetime;
$this->acme_env['SL_Login_ID'] = (string)$this->config->dns_sl_account_id;
$this->acme_env['SL_Project_Name'] = (string)$this->config->dns_sl_project_name;
$this->acme_env['SL_Login_Name'] = (string)$this->config->dns_sl_login_name;
diff --git a/security/acme-client/src/opnsense/mvc/app/models/OPNsense/AcmeClient/AcmeClient.xml b/security/acme-client/src/opnsense/mvc/app/models/OPNsense/AcmeClient/AcmeClient.xml
index 451ddee70..e176c7f8e 100644
--- a/security/acme-client/src/opnsense/mvc/app/models/OPNsense/AcmeClient/AcmeClient.xml
+++ b/security/acme-client/src/opnsense/mvc/app/models/OPNsense/AcmeClient/AcmeClient.xml
@@ -1056,8 +1056,12 @@
N
-
+ N
+
+ API version 1 (deprecated)
+ API version 2
+ N