├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── .gitignore ├── .htaccess_sample ├── COPYRIGHTS ├── HISTORY.md ├── LICENSE ├── README.md ├── release.json ├── whmcs-cnic-bundle.zip ├── whmcs-ibs-registrar-latest.zip ├── whmcs-ispapi-pricingimporter-latest.zip ├── whmcs-moniker-registrar-latest.zip └── whmcs-tpp-registrar-latest.zip /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | Steps to reproduce the behavior: 12 | 1. Go to '...' 13 | 2. Click on '....' 14 | 3. Scroll down to '....' 15 | 4. See error 16 | 17 | **Expected behavior** 18 | A clear and concise description of what you expected to happen. 19 | 20 | **Screenshots** 21 | If applicable, add screenshots to help explain your problem. 22 | 23 | **Context (please complete the following information):** 24 | - Device: [e.g. Desktop, iPhone6, all] 25 | - Browser [e.g. Chrome 70.0.3538.77i] 26 | - WHMCS Version [e.g. 7.6] 27 | - Server OS: [e.g. Ubuntu 18.04, iOS8.1] 28 | - PHP Version [e.g. 7.2.12] 29 | - Registrar: [e.g. CNR, HX, IBS, TPP *] 30 | - Module Version: [WHMCS built-in, or version number] 31 | 32 | > NOTE: HX = HEXONET, CNR = CentralNic Reseller, IBS = internet.bs, TPP = TPP Wholesale 33 | 34 | 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .releaserc.json 2 | build -------------------------------------------------------------------------------- /.htaccess_sample: -------------------------------------------------------------------------------- 1 | RewriteEngine On 2 | RewriteBase / 3 | 4 | RewriteCond %{REQUEST_METHOD} POST 5 | RewriteCond %{THE_REQUEST} ^POST\ /domainchecker\.php 6 | RewriteRule ^domainchecker\.php$ /mydomainsearch\.php [P] 7 | 8 | # Uncomment the following lines to enable static file caching 9 | # 10 | # ExpiresActive On 11 | # 12 | # ExpiresDefault "access plus 1 month" 13 | # 14 | # 15 | -------------------------------------------------------------------------------- /COPYRIGHTS: -------------------------------------------------------------------------------- 1 | Copyright (C) 2018-2023 Team Internet Group PLC - All Rights Reserved 2 | 3 | Unauthorized copying of this file, via any medium is strictly prohibited 4 | Proprietary and confidential -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- 1 | # [23.3.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.2.5...v23.3.0) (2024-04-11) 2 | 3 | 4 | ### Bug Fixes 5 | 6 | * **cnic ssl module:** avoid showing duplicate validation information in Client Area ([5e2068c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/5e2068cca1b555cc764eed60779ad6c3223613b1)) 7 | * **cnic ssl module:** fix revoke certificate in CNIC ([0c3f311](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0c3f3114a89847032f9de47cbcaa48f86d14479b)) 8 | * **ispapi registrar module:** patch dns management in direction of IDNs in address field ([4d975c3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4d975c32f853b84abc07950bf4bf4f9534914f60)) 9 | 10 | 11 | ### Features 12 | 13 | * **cnic ssl module:** improve wildcard domain handling in CSR parsing ([ff7f6b4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ff7f6b47c071fae8813032f09060f5c1cd98f897)) 14 | 15 | 16 | ### Performance Improvements 17 | 18 | * **ispapi registrar module:** reviewed & replaced api idn conversion with php-idn-converter ([1518c47](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/1518c473dda6cef0ae5dede24adae552f5f2afe1)) 19 | 20 | ## [23.2.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.2.4...v23.2.5) (2024-04-10) 21 | 22 | 23 | ### Bug Fixes 24 | 25 | * **deps:** bump idna-uts46-hx in /domain-search-src-files ([60bc08b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/60bc08b3adbf0de8db12b1206b155230592a7cb9)) 26 | 27 | ## [23.2.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.2.3...v23.2.4) (2024-04-08) 28 | 29 | 30 | ### Bug Fixes 31 | 32 | * **zip archive:** rebuild (docker container patch) ([0499b20](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0499b20aee4da5b0bf18317414012e32a3885b62)) 33 | 34 | ## [23.2.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.2.2...v23.2.3) (2024-04-06) 35 | 36 | 37 | ### Bug Fixes 38 | 39 | * **cnic ssl module:** fix parsing of DNS records for Sectigo certificates ([a76cb14](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a76cb1427e073af0a5601a92a554bc9f9f5860e8)) 40 | 41 | ## [23.2.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.2.1...v23.2.2) (2024-04-05) 42 | 43 | 44 | ### Bug Fixes 45 | 46 | * **deps:** bump centralnic-reseller/php-sdk from 8.0.16 to 8.0.17 ([4af67c3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4af67c37ca3e7e70e983b5e11b56f4d300f649e1)) 47 | 48 | ## [23.2.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.2.0...v23.2.1) (2024-04-05) 49 | 50 | 51 | ### Bug Fixes 52 | 53 | * **ispapi registrar module:** reviewed renewalmode UI for .at,.dk etc tlds ([bb783e4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/bb783e458520bfa85482ca85159912255f4e6dda)) 54 | 55 | # [23.2.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.1.0...v23.2.0) (2024-03-20) 56 | 57 | 58 | ### Features 59 | 60 | * **ispapi registrar module:** Allow resellers to change domain renewals to AUTODELETE on specific tlds e.g. (.DK, .AT, etc) from Domain Configurations via admin panel ([fde2f5e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fde2f5ef91e94e64e67f2415023e803b2e37b5bb)) 61 | 62 | # [23.1.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.0.5...v23.1.0) (2024-03-19) 63 | 64 | 65 | ### Features 66 | 67 | * **cnic registrar module:** suppress api-side id protection service on demand ([8657799](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8657799dd7074d9ffb9d2cca8408ac4044f35d02)) 68 | * **ispapi registrar module:** suppress api-side id protection service on demand ([55f5cc5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/55f5cc54657728aa2c1b7e4199096049077271c4)) 69 | 70 | ## [23.0.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.0.4...v23.0.5) (2024-03-15) 71 | 72 | 73 | ### Bug Fixes 74 | 75 | * **cnic ssl module:** fix centralnic dns validation method for some certificate classes ([c0e1e3b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c0e1e3b1451d4ecfe48645c56483f92cee1ddcf1)) 76 | * **cnic ssl module:** fix unable to order wildcard certificates with CNIC ([0dd39f8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0dd39f8e0e270e4e20153afd2a7038bbcd662dbc)) 77 | * **cnic ssl module:** improve CSR validation ([d2d275a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d2d275a14ab6c51317304548959919a8e2a1132f)) 78 | * **cnic ssl module:** improve handling of DNS and FILE validation methods in CNIC ([28d0ecc](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/28d0ecc4bc5b60d2a12a82867705bc35e14b80dc)) 79 | 80 | ## [23.0.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.0.3...v23.0.4) (2024-03-13) 81 | 82 | 83 | ### Performance Improvements 84 | 85 | * **cnic domain search:** minifying javascript source files to improve the performance and user experience ([8e62597](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8e6259725bdec98f855ab80fde569b65aafe00e5)) 86 | 87 | ## [23.0.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.0.2...v23.0.3) (2024-03-12) 88 | 89 | 90 | ### Bug Fixes 91 | 92 | * **cnic domain search addon:** remove invalid characters from searched keywords ([a8f14e3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a8f14e319183e8f347b23109364d69089287ebb5)) 93 | 94 | ## [23.0.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.0.1...v23.0.2) (2024-03-12) 95 | 96 | 97 | ### Bug Fixes 98 | 99 | * **cnic ssl module:** fix CNIC certificates not showing in status ([476a089](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/476a089d003b1666df1b045c5d7c95da4e31b29a)) 100 | 101 | ## [23.0.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v23.0.0...v23.0.1) (2024-03-12) 102 | 103 | 104 | ### Bug Fixes 105 | 106 | * **cnic migrator addon:** fix merge issue ([e7c4922](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e7c4922866fcd5e72b5ba822ef60a3e86b47066f)) 107 | 108 | # [23.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.7.5...v23.0.0) (2024-03-11) 109 | 110 | 111 | ### Features 112 | 113 | * **cnic migrator addon:** switch email configuration files to email templates ([af30cf6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/af30cf68f2effcfc7881de719f916024b37320c8)) 114 | 115 | 116 | ### BREAKING CHANGES 117 | 118 | * **cnic migrator addon:** We switched from json configuration file based approach to using WHMCS built-in 119 | email templating system. Check our Documentation at https://www.hexonet.support/hc/en-gb/articles/13653135500573-WHMCS-Domain-Migrator-Addon Section Client Email Templates and following. 120 | 121 | ## [22.7.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.7.4...v22.7.5) (2024-3-7) 122 | 123 | 124 | ### Bug Fixes 125 | 126 | * **cnic ssl module:** fix contact handling in CentralNic SSL module ([cb79282](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cb7928267378463cf5d045a5752d0334f5aeaabf)) 127 | 128 | ## [22.7.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.7.3...v22.7.4) (2024-3-7) 129 | 130 | 131 | ### Performance Improvements 132 | 133 | * **release automation:** to no longer use Chrome for web scripting ([85054c8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/85054c899497fb11b19af01a206d1844a785f371)) 134 | 135 | ## [22.7.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.7.2...v22.7.3) (2024-3-6) 136 | 137 | 138 | ### Bug Fixes 139 | 140 | * **ispapi registrar module:** additional fields: add description for field .IT PIN ([d91525f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d91525fdae77eb095a634fe870a545a231f8cef9)) 141 | * **ispapi registrar module:** additional fields: add description for field .IT PIN (Transfer) ([4dccb1e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4dccb1efd2f9ff3ebd591f833756c633213b32a2)) 142 | 143 | ## [22.7.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.7.1...v22.7.2) (2024-3-6) 144 | 145 | 146 | ### Bug Fixes 147 | 148 | * **software bundle:** patched issues with ioncube encryption mechanism ([90b9c90](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/90b9c90df93b2acea9d2c8ce7f2ce24dff691053)) 149 | 150 | ## [22.7.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.7.0...v22.7.1) (2024-3-5) 151 | 152 | 153 | ### Bug Fixes 154 | 155 | * **cnic registrar module:** create todo item for 0Y term transfers only if pricing is not 0.00 ([75407ea](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/75407ea7ccfd975538abd1a693e475df46dd8d07)) 156 | * **ispapi registrar module:** create todo item for 0Y term transfers only if pricing is not 0.00 ([e4d479f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e4d479f9959849d7eebf510c1e403c6291b2ecbd)) 157 | 158 | # [22.7.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.6.3...v22.7.0) (2024-3-4) 159 | 160 | 161 | ### Bug Fixes 162 | 163 | * **cnic dns templating addon:** review default nameservers for DNS Management ([b53132a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b53132a033c0c16c3a02eec1b4cc7e93901c4ec9)) 164 | * **dns addon:** fix handling of IDN domains ([fc9fc85](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fc9fc85b4a3e7452de2606e8276cb846ce29f65a)) 165 | 166 | 167 | ### Features 168 | 169 | * **dns addon:** add option to enforce registry nameservers when creating dns zone ([e31a44b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e31a44b96c071ddad11f176b36ff3323efa8c6d4)) 170 | * **ispapi registrar module:** nameserver configuration setting for dns templating addon ([039b3d8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/039b3d89db60fc5207e08d993f87bb3890453228)) 171 | 172 | ## [22.6.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.6.2...v22.6.3) (2024-3-4) 173 | 174 | 175 | ### Bug Fixes 176 | 177 | * **ispapi registrar module:** improved error messaging for domain transfers pre-checks ([2708668](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/270866870071af1a2b4627f75acdf59f38612f5d)) 178 | 179 | ## [22.6.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.6.1...v22.6.2) (2024-3-4) 180 | 181 | 182 | ### Bug Fixes 183 | 184 | * **cnic registrar module:** patch handling of contact data's middlename via firstname field ([bdb5ce5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/bdb5ce57164d63e2b4c9e782318437e265e6956e)) 185 | 186 | ## [22.6.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.6.0...v22.6.1) (2024-3-1) 187 | 188 | 189 | ### Bug Fixes 190 | 191 | * **deps:** bump idna-uts46-hx in /domain-search-src-files ([591576a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/591576af07c3a5a93fb8c4bd5f81b8fe7ac6e861)) 192 | 193 | # [22.6.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.5.0...v22.6.0) (2024-2-27) 194 | 195 | 196 | ### Features 197 | 198 | * **ispapi/cnic registrar module:** client area nameserver update to show a provider-specific error ([6c51f67](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/6c51f679de0a2630e3257d528fb6646bd2de1f52)) 199 | 200 | # [22.5.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.9...v22.5.0) (2024-2-27) 201 | 202 | 203 | ### Features 204 | 205 | * **cnic registrar module:** add auto-loading custom hooks file (/resources/hooks_cnic_custom.php) ([24de8e3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/24de8e395b95b0b6eeabc80f7d67910a39b02798)) 206 | 207 | ## [22.4.9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.8...v22.4.9) (2024-2-26) 208 | 209 | 210 | ### Bug Fixes 211 | 212 | * **deps:** bump phpseclib/phpseclib from 3.0.35 to 3.0.36 ([7b0a2f9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7b0a2f98ee78fe0d7b73f7b0a3a01c3ce30cc10c)) 213 | 214 | ## [22.4.8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.7...v22.4.8) (2024-2-26) 215 | 216 | 217 | ### Bug Fixes 218 | 219 | * **hexonet registrar module:** (89) Show aftermarket domains as available via regular domain tab in cnic domain search addon and whmcs core search engine ([a7b94fd](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a7b94fde986b8403985701b5049cd5bb8f71d4fb)) 220 | 221 | ## [22.4.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.6...v22.4.7) (2024-2-26) 222 | 223 | 224 | ### Bug Fixes 225 | 226 | * **ispapi registrar module:** patch loading the list of existing email forwardings ([846a8b5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/846a8b52b3ce5f962914bba89d5b1911d534808c)) 227 | 228 | ## [22.4.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.5...v22.4.6) (2024-2-22) 229 | 230 | 231 | ### Bug Fixes 232 | 233 | * **cnic / ispapi registrar module:** ignore Migrator Addon related Transfers in Post-Transfer Processing ([11d016f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/11d016f28315a871123d60e8b540aceb5afd7852)) 234 | 235 | ## [22.4.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.4...v22.4.5) (2024-2-19) 236 | 237 | 238 | ### Bug Fixes 239 | 240 | * **cnic migrator addon:** fix country code field forwarding to HEXONET integration ([304fb59](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/304fb597808443e44d9ce24aaf7093229f656505)) 241 | 242 | ## [22.4.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.3...v22.4.4) (2024-2-16) 243 | 244 | 245 | ### Bug Fixes 246 | 247 | * **cnr registrar module:** fix additional fields generator (.fr at least affected) ([7f5a533](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7f5a5333884d558d0c31f135f6a6e83bc4e678af)) 248 | 249 | ## [22.4.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.2...v22.4.3) (2024-2-15) 250 | 251 | 252 | ### Bug Fixes 253 | 254 | * **cnic registrar module:** patched .EU domain transfers with too many contact data submitted ([48abb9f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/48abb9fae389983cfc821884efbc283f6c1e92cc)) 255 | * **cnic registrar module:** using unformatted phone number for registrations and transfers ([5919f6c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/5919f6c1579373da13e44172f67cdeebccc24277)) 256 | 257 | ## [22.4.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.1...v22.4.2) (2024-2-15) 258 | 259 | 260 | ### Bug Fixes 261 | 262 | * **composer.json:** deprecated PHP version requirement ([8861a62](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8861a62148bb6e5d4df5b05fb7ba364bc72964a5)) 263 | 264 | ## [22.4.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.4.0...v22.4.1) (2024-2-9) 265 | 266 | 267 | ### Bug Fixes 268 | 269 | * **cnr registrar module:** aftermarket integration: check for registrar id before processing ([4b33e4b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4b33e4b6fb8c802b23e55ff0f994310150dce31f)) 270 | * **cnr registrar module:** aftermarket integration: don't set a registration to pending transfer ([2482c91](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2482c91fd188712673ac2088a83942be75fc29af)) 271 | * **hooks:** fixed scope of hooks ([b65ceec](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b65ceec18e5a0eef979ca5054ec758e91ba908a1)) 272 | * **ispapi registrar module:** keep non-realtime registrations pending until completion e.g. .dk ([70e25f6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/70e25f6cc54a6940c6b10b53a864977d8193d0f4)) 273 | 274 | # [22.4.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.8...v22.4.0) (2024-2-6) 275 | 276 | 277 | ### Features 278 | 279 | * **cnr registrar module:** Implemented Transfer Status and Log integration for domains in "Pending Transfer" status ([bd14184](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/bd14184dfe295a168a8237a4f9861e93b6367563)) 280 | 281 | ## [22.3.8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.7...v22.3.8) (2024-2-3) 282 | 283 | 284 | ### Bug Fixes 285 | 286 | * **migrator:** improve database performance ([4bc886d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4bc886d5bd19d0ca3ea0af468ca2f429e0531a02)) 287 | 288 | ## [22.3.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.6...v22.3.7) (2024-2-2) 289 | 290 | 291 | ### Bug Fixes 292 | 293 | * **cnic dns addon:** Ensure freshly created DNS Templates are available for Bulk Update ([ad677c6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ad677c66861b8cc5d64a31ba5a32762b2d7ba7cd)) 294 | 295 | ## [22.3.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.5...v22.3.6) (2024-2-2) 296 | 297 | 298 | ### Bug Fixes 299 | 300 | * **ispapi registrar module:** fix SaveDNS integration (return error case of internal GetDNS call) ([b711854](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b71185479c875a2112917a610612ce6c9be299f2)) 301 | 302 | ## [22.3.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.4...v22.3.5) (2024-2-2) 303 | 304 | 305 | ### Bug Fixes 306 | 307 | * **cnr registrar module:** minor improvement for setting transferlock within registration process ([238ad9f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/238ad9f5f200b6dbfda537e95a3ec9ef62a698a5)) 308 | 309 | ## [22.3.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.3...v22.3.4) (2024-2-1) 310 | 311 | 312 | ### Bug Fixes 313 | 314 | * **deps:** bump lit from 3.1.1 to 3.1.2 in /domain-search-src-files ([49aed0d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/49aed0d31ddb47d2815716370cb2e27614773149)) 315 | 316 | ## [22.3.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.2...v22.3.3) (2024-2-1) 317 | 318 | 319 | ### Bug Fixes 320 | 321 | * **domain search addon:** enhance Compatibility for WHMCS Database Operations ([9ac16b6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/9ac16b64c6b68a1dc9702125efb07fbcbfcb3cbd)) 322 | 323 | 324 | ### Performance Improvements 325 | 326 | * **css and javascripts:** preloading stylesheets and defer loading javascripts to improve UI ([e84b17c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e84b17c042b18b04d923e3df8a79dbab09bb422d)) 327 | 328 | ## [22.3.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.1...v22.3.2) (2024-1-30) 329 | 330 | 331 | ### Performance Improvements 332 | 333 | * **css and js files:** reviewed and optimised css and js file with resource hints ([72c32df](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/72c32df1022b0e6773711a43f3a46f6202df5787)) 334 | 335 | ## [22.3.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.3.0...v22.3.1) (2024-1-24) 336 | 337 | 338 | ### Bug Fixes 339 | 340 | * **cnic and ibs registrar:** patch for adding to do items for domain transfers without renewals ([98cacf7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/98cacf7bc1fb88af9ba6b1d729b9ffbb973e61c4)) 341 | 342 | # [22.3.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.2.1...v22.3.0) (2024-1-22) 343 | 344 | 345 | ### Features 346 | 347 | * **ispapi/cnr/ibs registrar module:** add todo item in case of free/0Y transfer ([37551fa](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/37551fac355dd5dc0a65138d26d01b6a88f393fb)) 348 | 349 | ## [22.2.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.2.0...v22.2.1) (2024-1-18) 350 | 351 | 352 | ### Bug Fixes 353 | 354 | * **ispapi & cnic registrar:** exclude invalid domains from appearing in the SearchEngine via API ([126f2d3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/126f2d3a54f98d6e0dcc0d46676ae80ec0ca6b6e)) 355 | 356 | # [22.2.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.1.2...v22.2.0) (2024-1-16) 357 | 358 | 359 | ### Features 360 | 361 | * **domain search addon:** Added a quick link for Aftermarket domains in Regular/Suggestions tab search results, directing users to the Aftermarket search tab. ([0f691f0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0f691f0c3bd0370ce4bcd512be50d9947fe99975)) 362 | 363 | ## [22.1.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.1.1...v22.1.2) (2024-1-16) 364 | 365 | 366 | ### Bug Fixes 367 | 368 | * **domain search addon:** Marking Aftermarket domains as reserved in regular and suggestion tabs. ([a51d141](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a51d14187c9de5e3ac39414c682f287d5311c41e)) 369 | 370 | ## [22.1.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.1.0...v22.1.1) (2024-1-15) 371 | 372 | 373 | ### Bug Fixes 374 | 375 | * **domain search addon:** Fixed an issue that was preventing the adding domains to the cart for domain transfers. ([cc99db6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cc99db6fb052b03603e28d3c7df26cd05e3e7bc5)) 376 | 377 | # [22.1.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.0.5...v22.1.0) (2024-1-15) 378 | 379 | 380 | ### Features 381 | 382 | * **domain search addon:** aftermarket domains integration for HX and CNIC ([936504a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/936504ac19f0d1603b391aaab9787932f0fef08b)) 383 | 384 | ## [22.0.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.0.4...v22.0.5) (2024-01-11) 385 | 386 | 387 | ### Bug Fixes 388 | 389 | * **ispapi registrar module:** .ES fields (X-ES-REGISTRANT-TIPO-IDENTIFICACION, add option VAT ID) ([d8c41a9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d8c41a9fbf38ec659dac4666caa9aaa7427aea8e)) 390 | 391 | ## [22.0.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.0.3...v22.0.4) (2024-01-10) 392 | 393 | 394 | ### Bug Fixes 395 | 396 | * **deps:** bump lit from 3.1.0 to 3.1.1 in /domain-search-src-files ([aa2ae68](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/aa2ae68eda8972d58a8d0e3791a0d6428b042b8c)) 397 | 398 | ## [22.0.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.0.2...v22.0.3) (2024-01-10) 399 | 400 | 401 | ### Bug Fixes 402 | 403 | * **domain search addon:** fixed the stylesheet loading issue for WHMCS installations in sub-folders ([cc388a2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cc388a2237fec2a426b00d2d358d4c25d624e6f5)) 404 | 405 | ## [22.0.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.0.1...v22.0.2) (2024-01-10) 406 | 407 | 408 | ### Bug Fixes 409 | 410 | * **ispapi registrar module:** temporarily deactivate premium domain data auto-cleanup ([10f0633](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/10f0633818d6371e63bc67455bda51b962a1a8c6)) 411 | 412 | ## [22.0.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v22.0.0...v22.0.1) (2024-01-09) 413 | 414 | 415 | ### Bug Fixes 416 | 417 | * **deps:** bump phpseclib/phpseclib from 3.0.34 to 3.0.35 ([485c9ee](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/485c9ee15cdca0d10713cf08762e72041f4d320f)) 418 | 419 | # [22.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.13...v22.0.0) (2024-01-09) 420 | 421 | 422 | ### Features 423 | 424 | * **ssl:** implement new CNR SSL API 2.0 ([4b399f1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4b399f146028f82607c5f01d464bc591b3e6ef52)) 425 | 426 | 427 | ### BREAKING CHANGES 428 | 429 | * **ssl:** Existing legacy certificates must be migrated by opening the SSL Addon once. 430 | 431 | ## [21.6.13](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.12...v21.6.13) (2024-01-08) 432 | 433 | 434 | ### Bug Fixes 435 | 436 | * **cnr registrar:** fix ignored error on domain status when domain is transfered away ([74b1beb](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/74b1beb98d51bac4448d23a0dee91a1229c9b614)) 437 | 438 | ## [21.6.12](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.11...v21.6.12) (2023-12-15) 439 | 440 | 441 | ### Bug Fixes 442 | 443 | * **cnr registrar:** make sure DNS zone is existing when saving records ([322459f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/322459f075312be9620401dff013997fa22af1e2)) 444 | * **dns addon:** fix template failing to apply ([38b88bc](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/38b88bc9b04a20a07c8522b67173983728619257)) 445 | 446 | ## [21.6.11](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.10...v21.6.11) (2023-12-14) 447 | 448 | 449 | ### Bug Fixes 450 | 451 | * **domain search addon:** Updated the link for transferring domains to our search engine addon URL, overriding the default Store > Transfer Domain To Us link. ([e97446c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e97446cfefa5af50bc9fac1609a1a61d687c70a2)) 452 | 453 | ## [21.6.10](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.9...v21.6.10) (2023-12-14) 454 | 455 | 456 | ### Bug Fixes 457 | 458 | * **domain search addon:** Fixed the "cannot redeclare gettldlist" error issue for specific resellers. ([a566776](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a5667768271bc216cd489fffd818aab402c7a624)) 459 | 460 | ## [21.6.9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.8...v21.6.9) (2023-12-07) 461 | 462 | 463 | ### Bug Fixes 464 | 465 | * **domain search addon:** Domain transfer authorization codes with dots (.) were not being processed correctly. ([408a7da](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/408a7da9474ebc4c050988bf2ebee8b3f0c17c9b)) 466 | 467 | ## [21.6.8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.7...v21.6.8) (2023-11-24) 468 | 469 | 470 | ### Bug Fixes 471 | 472 | * **cnic registrar module:** remove contact-related params NEW, PREVERIFY and AUTODELETE ([ce29e99](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ce29e999a2c7d84ae32d150db619e400fadd59ce)) 473 | 474 | ## [21.6.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.6...v21.6.7) (2023-11-24) 475 | 476 | 477 | ### Bug Fixes 478 | 479 | * **ispapi registrar module:** tLD & Pricing Import to ignore garbage data from API e.g. .nu (CA) ([4b2beaa](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4b2beaa1444e4bfcbad13d1685749124e83a6be3)) 480 | 481 | ## [21.6.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.5...v21.6.6) (2023-11-17) 482 | 483 | 484 | ### Bug Fixes 485 | 486 | * **deps:** bump lit from 3.0.2 to 3.1.0 in /domain-search-src-files ([f4abaf6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f4abaf67a2622ecacac387ac5930a0d9908cf5d4)) 487 | 488 | ## [21.6.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.4...v21.6.5) (2023-11-10) 489 | 490 | 491 | ### Bug Fixes 492 | 493 | * **ci:** test release process after rewrite (no need to upgrade) ([714b3ff](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/714b3ffe3179f80459f0612ebe1b58c99254faec)) 494 | * **deps:** bump lit from 3.0.1 to 3.0.2 in /domain-search-src-files ([fad89a4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fad89a46e2ae0b1a2ad8ef08869942aa639b2a7f)) 495 | * **ispapi registrar module:** fix Transfer integration and use of additional fields (e.g. .dk) ([b2f59b3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b2f59b32edeeb359b0c4ede155278fa3ba3191be)) 496 | * **release process:** patch release process ([88849cf](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/88849cf8c4bb7887d4d9260593f3ba43f545eb72)) 497 | 498 | ## [21.6.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.3...v21.6.4) (2023-11-02) 499 | 500 | ### Bug Fixes 501 | 502 | - **deps:** bump idna-uts46-hx in /domain-search-src-files ([4136d45](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4136d453f9b678c27817d27108c478b7e1515685)) 503 | - **deps:** bump lit from 3.0.0 to 3.0.1 in /domain-search-src-files ([973b3a0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/973b3a0416b4a7b84a3716211cf654776b769927)) 504 | 505 | ## [21.6.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.2...v21.6.3) (2023-10-30) 506 | 507 | ### Bug Fixes 508 | 509 | - **ibs / cnic / ispapi registrar modules:** patch issue with if branch in dnssec template ([b8a4d18](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b8a4d187fe0bf2446790dd68a36f5c2e3432270a)) 510 | 511 | ## [21.6.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.1...v21.6.2) (2023-10-30) 512 | 513 | ### Bug Fixes 514 | 515 | - **ibs / cnic / ispapi registrar modules:** review dnssec template for translation support ([9172f93](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/9172f93bf0074a68cb506fcdc96a096ac7d2a3b4)), closes [#271](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/issues/271) 516 | 517 | ## [21.6.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.6.0...v21.6.1) (2023-10-25) 518 | 519 | ### Bug Fixes 520 | 521 | - **ispapi registrar module:** reviewed handling of applications (premium domains, .swiss et al) ([f9c0e86](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f9c0e86bf70e0268e0dd8eb1393c847a85a76809)) 522 | 523 | # [21.6.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.5.4...v21.6.0) (2023-10-20) 524 | 525 | ### Features 526 | 527 | - **cnic registrar module:** add support for managing DS records in DNSSEC ([2547c38](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2547c389096c063b6405331d9ce60b542b261630)) 528 | - **cnic registrar module:** automatically detect if DNSSEC supports DS records for TLD ([3f13d30](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/3f13d3015d73bf282836af6c9ed95364906c8317)) 529 | - **ibs registrar module:** automatically detect if DNSSEC supports DS records for TLD ([9c2f301](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/9c2f301c840d7f62e4e76cb6493522720cf91095)) 530 | - **ispapi registrar module:** auto-detect which dnssec form is supported (dsdata or dnskey) ([69de940](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/69de940b67fa047b038f1eb67631404a1bf81c46)) 531 | - **ispapi registrar module:** revamped DNSSEC management feature ([dfef791](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/dfef79106eb8a216272b470625e8533531913cef)) 532 | 533 | ## [21.5.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.5.3...v21.5.4) (2023-10-12) 534 | 535 | ### Bug Fixes 536 | 537 | - **ssl module:** fix default registrar fallback ([e381599](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e38159930f0436de76ff5e3215de0335c3104454)) 538 | 539 | ## [21.5.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.5.2...v21.5.3) (2023-10-12) 540 | 541 | ### Bug Fixes 542 | 543 | - **ispapi registrar module:** review additional domain fields for TLD .giving ([ec43ad4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ec43ad4ad84883f47800ec784396204da4ce4c9a)) 544 | 545 | ## [21.5.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.5.1...v21.5.2) (2023-10-11) 546 | 547 | ### Bug Fixes 548 | 549 | - **cnic registrar module:** deprecate & cleanup of feature "Daily Cron" ([8c67b88](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8c67b88b1617c88e9d3cb526b6aeb4daf56d79e3)) 550 | 551 | ## [21.5.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.5.0...v21.5.1) (2023-10-11) 552 | 553 | ### Bug Fixes 554 | 555 | - **cnic & ispapi registrar module:** Domain private Nameservers access and deletion functionality fixed. ([7bf0217](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7bf0217d88a519b53bbe0d6031ceb7737455e442)) 556 | 557 | # [21.5.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.4.7...v21.5.0) (2023-10-09) 558 | 559 | ### Features 560 | 561 | - **cnic registrar module:** added AA buttons for approving/rejecting outgoing transfers ([5e4f40f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/5e4f40fa0ebafb1f262a530a2e30e4cdf6991402)) 562 | - **ispapi registrar module:** added AA buttons for approving/rejecting outgoing transfers ([da5b0f2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/da5b0f2c72dd4dafcc3984025a1c6ee489fb32f9)) 563 | 564 | ## [21.4.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.4.6...v21.4.7) (2023-10-09) 565 | 566 | ### Bug Fixes 567 | 568 | - **package.json:** bumped semantic-release-whmcs package depedency to 5.0.4 (no need to upgrade) ([26fde4a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/26fde4a3416fa2da5c0e70ce74e7375d9759b565)) 569 | 570 | ## [21.4.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.4.5...v21.4.6) (2023-10-02) 571 | 572 | ### Bug Fixes 573 | 574 | - **cnic registrar module:** add DNSZone for EmailForwardings if not present ([508eec9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/508eec990a6621ba65db5ed3904911c7bac952c6)) 575 | 576 | ## [21.4.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.4.4...v21.4.5) (2023-09-29) 577 | 578 | ### Bug Fixes 579 | 580 | - **ispapi/cnic registrar module:** additional domain fields validation scope & processing ([e052c7d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e052c7d1b07f79446b614375c30132f6aa0001fe)) 581 | 582 | ## [21.4.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.4.3...v21.4.4) (2023-09-28) 583 | 584 | ### Bug Fixes 585 | 586 | - **ispapi registrar module:** reviewed Get/SaveEmailforwarding. Create DNSZone dnsmanagement-like ([e6ee658](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e6ee6584d25091c5650b1ebac766a8456d22b34d)) 587 | 588 | ## [21.4.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.4.2...v21.4.3) (2023-09-28) 589 | 590 | ### Bug Fixes 591 | 592 | - **cnic domain monitoring addon:** patched an issue throwing an error on activation ([b69c430](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b69c4300b92642db988aac2e35d63f0e11e3d56c)) 593 | 594 | ## [21.4.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.4.1...v21.4.2) (2023-09-28) 595 | 596 | ### Bug Fixes 597 | 598 | - **migrator addon:** store EPP codes without encoded HTML entities ([ca4c4c1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ca4c4c16e41a9975849aa86984a50b72ed141f4f)) 599 | 600 | ## [21.4.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.4.0...v21.4.1) (2023-09-28) 601 | 602 | ### Bug Fixes 603 | 604 | - **cnic domain monitoring addon:** delete record functionality patch ([10af4d6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/10af4d624a21bcfea8d8092e04ea4817c180c5b8)) 605 | - **cnic domain monitoring addon:** patch to recalculate premium prices manually with extended info ([15948de](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/15948dee9b576bb9105105e2cb41a3c6d430dfe3)) 606 | 607 | # [21.4.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.3.1...v21.4.0) (2023-09-27) 608 | 609 | ### Features 610 | 611 | - **cnic domain monitoring addon:** Sync premium status and apply pricing updates to domains ([370fd99](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/370fd995d4a144cc58cac8e196f7cf5f29c947f7)) 612 | 613 | ## [21.3.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.3.0...v21.3.1) (2023-09-26) 614 | 615 | ### Bug Fixes 616 | 617 | - **ispapi registrar module:** patch PHP Error in GetContactDetails in case of missing API data ([a09c44d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a09c44dc0d75a28ad796994396133732a4e30cec)) 618 | 619 | # [21.3.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.2.4...v21.3.0) (2023-09-25) 620 | 621 | ### Features 622 | 623 | - **cnic & ispapi registrar module:** implemented validation for additional fields on the domain cart page ([a98befe](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a98befebdb9598c4055dc1ae331518f5c701d2cf)) 624 | 625 | ## [21.2.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.2.3...v21.2.4) (2023-09-25) 626 | 627 | ### Bug Fixes 628 | 629 | - **ispapi registrar module:** .eu domain registration error due to conflicting client data fields ([76e5b73](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/76e5b731880e5a047b9e4309747c444ac9091f1c)) 630 | 631 | ## [21.2.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.2.2...v21.2.3) (2023-09-20) 632 | 633 | ### Bug Fixes 634 | 635 | - **cnic search engine addon:** fixed ob_start conflict with zlib compression ([fc2d3cf](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fc2d3cfd6504a57010bb1f7130e5e2c73a9c037f)) 636 | 637 | ## [21.2.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.2.1...v21.2.2) (2023-09-13) 638 | 639 | ### Bug Fixes 640 | 641 | - **ispapi registrar:** add multiple improvements to DNS Management and detection of duplicate RRs ([cfd31cf](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cfd31cf77dd14e6ad553fd3cbe7f13036ec2d039)), closes [#267](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/issues/267) 642 | 643 | ## [21.2.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.2.0...v21.2.1) (2023-09-06) 644 | 645 | ### Bug Fixes 646 | 647 | - **cnic domain search addon:** patched an issue related to add/remove items to cart ([e72da1b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e72da1b99716803c0ba350a738d690af0931cf71)) 648 | 649 | # [21.2.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.1.2...v21.2.0) (2023-09-05) 650 | 651 | ### Features 652 | 653 | - **cnic domain search addon:** notifications when adding items to cart; UI for info in transfer tab ([5da5d99](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/5da5d99b64c4747b9dec6162d9f27031673c9c34)) 654 | 655 | ## [21.1.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.1.1...v21.1.2) (2023-08-31) 656 | 657 | ### Bug Fixes 658 | 659 | - **cnic domain search addon:** sidebar menu entries on review & checkout page ([1b07242](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/1b07242dc6ff88fe47ba3cbe570735fe71c7c260)) 660 | 661 | ## [21.1.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.1.0...v21.1.1) (2023-08-31) 662 | 663 | ### Bug Fixes 664 | 665 | - **cnic domain search addon:** patched a bug related to domain transfers auth code ([4ff1a34](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4ff1a349a36b691421d7cfc51bd810eab5594000)) 666 | 667 | # [21.1.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.0.3...v21.1.0) (2023-08-31) 668 | 669 | ### Features 670 | 671 | - **ispapi registrar module:** to-Do List add: failed post-transfer updates + non-free domain trades ([7a4e881](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7a4e8813074f1bc7cff2ef39465d7a94916a1a7b)) 672 | 673 | ## [21.0.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.0.2...v21.0.3) (2023-08-29) 674 | 675 | ### Bug Fixes 676 | 677 | - **readme:** updated path of readme.md file ([6ca104e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/6ca104e7a29cf5221b25cbf870d689c0a9de4677)) 678 | 679 | ## [21.0.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.0.1...v21.0.2) (2023-08-29) 680 | 681 | ### Bug Fixes 682 | 683 | - **readme.md:** updated readme.md file ([65432e8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/65432e8ce758b081800d3e2ab1519a2aca6c6a4d)) 684 | 685 | ## [21.0.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v21.0.0...v21.0.1) (2023-08-28) 686 | 687 | ### Bug Fixes 688 | 689 | - **cnic domain importer:** fix controller endpoints json response for http code 200 ([716f2e9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/716f2e91f51fb647d689919d8594b99fedd8f065)) 690 | 691 | # [21.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v20.0.4...v21.0.0) (2023-08-28) 692 | 693 | ### Bug Fixes 694 | 695 | - **cnic + ispapi registrar module:** inject private nameserver list now via child theme ([7ebb039](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7ebb0395ea040499108b5a151e7c97d0b980009b)) 696 | - **ispapi registrar module:** add global default TTL Setting for DNS RR ([f3fe4bd](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f3fe4bd57d40739406ebb4266513245808b764cd)) 697 | - **ispapi registrar module:** deprecated add. fields injection in admin area (contact information) ([569d22b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/569d22bf4c349ad9f6c4f098635af5d012e2c6d3)) 698 | - **ispapi registrar module:** Dns Management replacement for RR deletion via wildcard ([a826cc5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a826cc5416e0bd1c038581c6c8215d994e2dd34f)) 699 | 700 | ### Features 701 | 702 | - **cnic + ispapi registrar module:** add exact error of DNS Update to output and more record types (child theme) ([ff929fd](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ff929fdf528136f1ee0cc53fe5ca4eb5263890dc)) 703 | - **cnic + ispapi registrar module:** add support for TTL field for DNS Management Section ([0d682d5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0d682d55808c1efcf756387ceaa32ca70c0ac85d)) 704 | - **cnic + ispapi registrar module:** review private nameserver deletion for better UX ([e3fb49d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e3fb49d66bfebda9a18f0a60e4c641f022021422)) 705 | - **cnic registrar module:** add support for MXE resource record (internally covered via MX, A) ([dfc57ca](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/dfc57ca847d4562f3b8c4725e660eb4896911308)) 706 | - **cnic sex/twenty-one theme:** show success message for succeeded dns update ([d556633](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d556633cfb11c5cbe3c3536c824e6173b42b013c)) 707 | - **ispapi registrar module:** offer more supported DNS Resource Records ([e3ca300](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e3ca30063b7a75f3116e970ffdf56072f0293d79)) 708 | 709 | ### BREAKING CHANGES 710 | 711 | - **ispapi registrar module:** The way of doing the additional domain fields injection on contact information page in admin are wasn't compatible to all themes and were it did not work, we run into bugs. If you want to cover a contact update via admin area, please do the additional fields update via domain details first and then the contact update itself. 712 | - **cnic + ispapi registrar module:** We use beneficial child themes now (compatible to WHMCS 8) to improve the DNS Management Section. We added a TTL field plus better error / success messaging and more supported resource records. Please ensure so update your template fields by taking over custom changes we applied to includes/alert.tpl and clientareadomaindns.tpl. Find our custom files under /templates/cnic-six or /templates/cnic-twenty-one. Custom changes are wrapped with comments to ease up taking them over. 713 | - **cnic + ispapi registrar module:** Javascript-based way for private Nameserver List injection got replaced by 714 | injection over child theme. 715 | 716 | ## [20.0.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v20.0.3...v20.0.4) (2023-08-28) 717 | 718 | ### Bug Fixes 719 | 720 | - **cnic domain search addon:** input search fix for bulk domain transfers ([4796874](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/47968741042a693aba0f6b145d6afac3ebecb1d9)) 721 | 722 | ## [20.0.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v20.0.2...v20.0.3) (2023-08-25) 723 | 724 | ### Bug Fixes 725 | 726 | - **cnic registrar module:** .dk transfers to be initiated without contact data ([34e8bc1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/34e8bc10b31402370e6253356d0441d7aae3b779)) 727 | 728 | ## [20.0.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v20.0.1...v20.0.2) (2023-08-24) 729 | 730 | ### Bug Fixes 731 | 732 | - **composer dependencies:** changed the way of producing the vendor directory ([fb3987c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fb3987c596c14df719cb868072007c5cde36f23e)) 733 | 734 | ## [20.0.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v20.0.0...v20.0.1) (2023-08-04) 735 | 736 | ### Bug Fixes 737 | 738 | - **cnic & ispapi registrar module:** patch for pre-select domain addons on checkout ([020f54f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/020f54fc3952400e19971ff1ebcd81bf6f7881aa)) 739 | 740 | # [20.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.1.3...v20.0.0) (2023-08-04) 741 | 742 | ### Bug Fixes 743 | 744 | - **cnic registrar module:** patch GetContactDetails to return all contact even if not set ([2c432d4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2c432d444c613ee1b6fabb2f4d61bf4dec9f4fa5)) 745 | - **ispapi registrar module:** improved description for .NO "Registrant ID Number" additional field ([60b0382](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/60b0382107bdfa5e585b7f8b30e1625b7b05134d)) 746 | - **ispapi registrar module:** inject additional fields via Child Theme (deprecate JS solution) ([a5d8578](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a5d857822d7fd504a6a28c6a3aedbd3d7563d39c)) 747 | 748 | ### BREAKING CHANGES 749 | 750 | - **ispapi registrar module:** Replaced our Javascript-based injection of additional fields into the contact 751 | information form in clientarea with a mechanism using Child Themes. 752 | 753 | ## [19.1.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.1.2...v19.1.3) (2023-07-31) 754 | 755 | ### Bug Fixes 756 | 757 | - **cnic dns addon:** disable Apply button while in progress ([f5a37f1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f5a37f1db846e39586d8468b709466fe0992b248)) 758 | 759 | ## [19.1.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.1.1...v19.1.2) (2023-07-31) 760 | 761 | ### Bug Fixes 762 | 763 | - **cnic registrar module:** review registrar context in hooks ([e51e642](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e51e6420b52eef603ccf9382e7f9ed428270f60d)) 764 | 765 | ## [19.1.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.1.0...v19.1.1) (2023-07-31) 766 | 767 | ### Bug Fixes 768 | 769 | - **cnic registrar module:** additional fields conditional requirements detection ([eb0ef0e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/eb0ef0eacf02c12b2c92d2eb933f3ae72806f2a4)) 770 | 771 | # [19.1.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.16...v19.1.0) (2023-07-27) 772 | 773 | ### Features 774 | 775 | - **cnic dns addon:** add ability to bulk apply templates to multiple domains ([8ea581a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8ea581a1ee69e710dd37bf4ff693ca90ddc036cf)) 776 | 777 | ## [19.0.16](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.15...v19.0.16) (2023-07-26) 778 | 779 | ### Bug Fixes 780 | 781 | - **cnic registar module:** fix issue with additional fields update in `_SaveContactDetails` ([efa3ca7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/efa3ca7083e2709bf750db2f67d95c19cda13980)) 782 | 783 | ## [19.0.15](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.14...v19.0.15) (2023-07-26) 784 | 785 | ### Bug Fixes 786 | 787 | - **cnic registrar module:** domain Sync to map Active to Transferred Away ([6091f03](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/6091f038c3a0a5b071235021f008eb2ee29517e1)) 788 | 789 | ## [19.0.14](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.13...v19.0.14) (2023-07-26) 790 | 791 | ### Bug Fixes 792 | 793 | - **ispapi registrar module:** add X-AT-DISCLOSE = 0 in contact data updates (auto-hide contact data) ([08d35c3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/08d35c3a5ddcb6794f23b1c707d605156fb2468a)) 794 | 795 | ## [19.0.13](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.12...v19.0.13) (2023-07-25) 796 | 797 | ### Bug Fixes 798 | 799 | - **cnic registrar module:** no PHP error when saving contact data in context of pending domains ([3e94e7e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/3e94e7eaa27cc64285926e093f0b9bcb2d44ea9f)) 800 | 801 | ## [19.0.12](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.11...v19.0.12) (2023-07-25) 802 | 803 | ### Bug Fixes 804 | 805 | - **cnic domain search add-on:** Patched domain suggestion search ending in PHP error ([4a6c73b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4a6c73b45660f401b20c35ec6d5a45cd2d839707)) 806 | 807 | ## [19.0.11](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.10...v19.0.11) (2023-07-24) 808 | 809 | ### Bug Fixes 810 | 811 | - **cnic registrar module:** fix transfer precheck on shopping cart ([478f3f1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/478f3f1eb556e022d8e9dbf2c62c7c819f888d7f)) 812 | 813 | ## [19.0.10](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.9...v19.0.10) (2023-07-24) 814 | 815 | ### Bug Fixes 816 | 817 | - **cnic and ispapi registrar module:** beautifying the system activity logs ([f943d5c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f943d5c4d814d0fc63b5a2a57d408adc0626cd09)) 818 | - **ispapi registrar module:** getEPPCode for .NZ, .FI reviewed ([0b8a14e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0b8a14e40cbd09f119e367beb26793f0b944f685)) 819 | - **ispapi registrar module:** logging for renewal patched ([98b2517](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/98b2517cce7876518091018d70f0b382a1a5c810)) 820 | 821 | ## [19.0.9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.8...v19.0.9) (2023-07-18) 822 | 823 | ### Bug Fixes 824 | 825 | - **ispapi + cnic registrar module:** cleanup additional fields handling in \_GetDomainInformation ([d59ea2c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d59ea2c31169dd0ad564949654846a09ff0e28be)) 826 | 827 | ## [19.0.8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.7...v19.0.8) (2023-07-14) 828 | 829 | ### Bug Fixes 830 | 831 | - **cnic ssl addon:** patch ouput of Intermediate Cert + Root Cert for CNR ([5c39e69](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/5c39e69e2e0d7bbb8566cbcab2de5e151200b280)) 832 | 833 | ## [19.0.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.6...v19.0.7) (2023-07-13) 834 | 835 | ### Bug Fixes 836 | 837 | - **cnic registrar module:** replace comma in additional field option labels (=new option for WHMCS) ([d335b46](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d335b4633dd89f19401c9471cb8218dbfa44c6b2)) 838 | 839 | ## [19.0.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.5...v19.0.6) (2023-07-13) 840 | 841 | ### Bug Fixes 842 | 843 | - **cnic domain importer:** do not include additional fields in import (auto-reg lookup of whmcs) ([31f138b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/31f138bc7f3912d79ab1471cd5678db1f895a9d4)) 844 | - **cnic registrar module:** patch AdditionalFields' Class internal function call to $this context ([e89b4ee](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e89b4ee821c56a92c8c86363c685d6c193d99cba)) 845 | 846 | ## [19.0.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.4...v19.0.5) (2023-07-13) 847 | 848 | ### Bug Fixes 849 | 850 | - **cnic registrar module:** patched issue related to domain status for DNS management ([0e43b96](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0e43b96d204cfa9f9868929e9bb5c999bc7750d7)) 851 | 852 | ## [19.0.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.3...v19.0.4) (2023-07-13) 853 | 854 | ### Bug Fixes 855 | 856 | - **cnic ssl addon:** works again with ispapi registrar module ([f0ae65d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f0ae65d524d46fc786c5d92129100960c1d93e6e)) 857 | 858 | ## [19.0.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.2...v19.0.3) (2023-07-12) 859 | 860 | ### Bug Fixes 861 | 862 | - **cnic registrar module:** review and cleanup of additional fields' required property detection ([8473cd2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8473cd2302b2de3da242cbf4364cdb0590b73dac)) 863 | 864 | ## [19.0.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.1...v19.0.2) (2023-07-11) 865 | 866 | ### Bug Fixes 867 | 868 | - **cnic registrar module:** patch issue in field generator ([0512f2b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0512f2b3fca96ddb8a936cd4a0d98ba103419102)) 869 | 870 | ## [19.0.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v19.0.0...v19.0.1) (2023-07-10) 871 | 872 | ### Bug Fixes 873 | 874 | - **cnic registrar module:** cleanup additional fields tmp. workaround ([2a07184](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2a071847547998827ebb2bec8be856a163323177)) 875 | 876 | # [19.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v18.0.3...v19.0.0) (2023-07-10) 877 | 878 | ### Features 879 | 880 | - **cnic registrar module:** api-driven additional domain fields integration (no config required) ([c77d7b5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c77d7b59dbb74b4f89ac5bb256f1c1251f13d9e7)) 881 | 882 | ### BREAKING CHANGES 883 | 884 | - **cnic registrar module:** New API-driven way for Additional Domain Fields added. Therefore, a custom configuration via /resources/domains/additionalfields.php is no longer required for the cnic registrar module. It follows the HEXONET Brand in that regard with few improvements. The Integration itself in direction of additional domain fields is by this step fully API-driven and with no support effort (missing or wrong additional domain fields configuration) and it makes a custom configuration entirely superfluous. In addition, we have made auto-prefilling available for tax id, language, country related input fields and we made the fields 100% translatable via Language Override Files. 885 | If you're interested in adding your custom translation, add domains with TLDs of interests to your Shopping Cart and switch to the Shopping Cart Item's Configuration. There, add "&showtranslationkeys=1" to the URL and press enter. Instead of the texts, you'll now see the Translation Keys which can be used in the Language Override files for adding your custom translations. If you remove that URL parameter again, texts will be displayed as usual. The fallback will always be our default english texts in case a translation is not present. It allows for translating step by step. 886 | 887 | ## [18.0.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v18.0.2...v18.0.3) (2023-07-07) 888 | 889 | ### Bug Fixes 890 | 891 | - **cnic domain search engine addon:** fixed DB query issue preventing addon upgrade ([153c94c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/153c94c4203fbf9fa2ca6e5077ca7cfa117fb66e)) 892 | 893 | ## [18.0.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v18.0.1...v18.0.2) (2023-07-05) 894 | 895 | ### Bug Fixes 896 | 897 | - **cnic domain search addon:** updated broken url in spotlight tlds section ([d98e3b9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d98e3b91eceb00ad0308f93ac1bd908adefc3f5c)) 898 | 899 | ## [18.0.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v18.0.0...v18.0.1) (2023-07-05) 900 | 901 | ### Bug Fixes 902 | 903 | - **cnic ssl addon:** patch issue with missing dependency utopia/domains ([8912a2a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8912a2a8cf52ee70424e2f8860fbdcf81facbbc9)) 904 | 905 | # [18.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.26...v18.0.0) (2023-07-03) 906 | 907 | ### Features 908 | 909 | - **cnic domain search addon:** Deprecating domain search v2 and introducing domain search v3 ([7ada120](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7ada120d5a862e1e9190bb7d10d2cf562536722b)) 910 | 911 | ### BREAKING CHANGES 912 | 913 | - **cnic domain search addon:** In this release, we have deprecated Version 2 of our ISPAPI Domain Search addon. As a result, it is no longer accessible. We kindly ask you to remove the older version of our domain search addon and start with the Version 3. To take advantage of the new and improved Domain Search with exciting features, we recommend reading and following our updated public documentation. 914 | 915 | ## [17.2.26](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.25...v17.2.26) (2023-07-03) 916 | 917 | ### Bug Fixes 918 | 919 | - **cnic registrar module:** fix private nameservers page in client area not working ([c12da8d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c12da8dcb9a6ecc45d6ae4606e52b1fcce3569cc)) 920 | 921 | ## [17.2.25](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.24...v17.2.25) (2023-06-28) 922 | 923 | ### Bug Fixes 924 | 925 | - **ispapi registrar module:** improve additional fields injection theme compatibility (lagom) ([36e3144](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/36e3144d6e30351f102e935c0da2c32dd894dbb8)) 926 | 927 | ## [17.2.24](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.23...v17.2.24) (2023-06-23) 928 | 929 | ### Bug Fixes 930 | 931 | - **cnic registrar module:** remove additional fields for .SWISS Domain Transfers ([172aa6c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/172aa6cac3ceba8211b96898cd3a25b261b6f94f)) 932 | 933 | ## [17.2.23](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.22...v17.2.23) (2023-06-22) 934 | 935 | ### Bug Fixes 936 | 937 | - **cnic registrar module:** patch .swiss transfers (consider lower-case parameter name) ([3c08b98](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/3c08b98a577ece169f6a391547442df86da21272)) 938 | 939 | ## [17.2.22](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.21...v17.2.22) (2023-06-22) 940 | 941 | ### Bug Fixes 942 | 943 | - **migrator addon:** abort migration if non-premium domain is premium on target registrar ([d98dacc](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d98dacca9df5d32dd2eeb9b4f487a447f1dc64d9)) 944 | 945 | ## [17.2.21](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.20...v17.2.21) (2023-06-22) 946 | 947 | ### Bug Fixes 948 | 949 | - **cnic registrar module:** missing .ES additional fields (Admin, Tech, Billing) for registrations ([1294556](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/129455632e4143ad3a6004a691369224f38baee7)) 950 | - **cnic registrar module:** patch .SWISS Transfer (removing parameter CLASS = SWISS-GOLIVE) ([fe43e2e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fe43e2e52d2b7d654db85b905ad842471f0ac3ec)) 951 | - **ispapi registrar module:** patch dns management activation via sync to rely on dnszone status ([6efd3c9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/6efd3c9c75fc9a484f6417c130b8c9d3b3a5f4ef)) 952 | 953 | ## [17.2.20](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.19...v17.2.20) (2023-06-16) 954 | 955 | ### Performance Improvements 956 | 957 | - **cnic registrar module:** remove check for last version in registrar module overview ([eb39a4b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/eb39a4bfcee20a6adb5e4e1958e13971d8b2adbe)) 958 | 959 | ## [17.2.19](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.18...v17.2.19) (2023-06-16) 960 | 961 | ### Bug Fixes 962 | 963 | - **cnic registrar module:** premium domain transfer support ([4ac293d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4ac293db7c463fff825f971cb09d805a4702c9d4)) 964 | 965 | ## [17.2.18](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.17...v17.2.18) (2023-06-14) 966 | 967 | ### Bug Fixes 968 | 969 | - **ispapi registrar module:** migrate connectivity check to \_config_validate ([526e8c1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/526e8c1cbd716a415a8d3dbfff457839848cffd2)) 970 | 971 | ## [17.2.17](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.16...v17.2.17) (2023-06-14) 972 | 973 | ### Bug Fixes 974 | 975 | - **cnic registrar module:** move connection validation to \_config_validate ([5245555](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/5245555d5c1e2983ef66d6aa06fc80a72324ae2e)) 976 | 977 | ## [17.2.16](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.15...v17.2.16) (2023-06-13) 978 | 979 | ### Bug Fixes 980 | 981 | - **cnic registrar module:** use configured data for admin/tech/billing if not "Use Clients Details" ([6e015c4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/6e015c4518780d2d1ef42d00de452f17f26719fb)) 982 | 983 | ## [17.2.15](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.14...v17.2.15) (2023-06-12) 984 | 985 | ### Bug Fixes 986 | 987 | - **cnic registrar module:** fix expirydate detection (consider api property renewaldate) ([175493d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/175493ddf5b9a38cb7d1b8d8d2b2d81b4b754a26)) 988 | 989 | ## [17.2.14](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.13...v17.2.14) (2023-06-09) 990 | 991 | ### Bug Fixes 992 | 993 | - **cnic registrar module:** patched PHP Error in SaveContactDetails ([fcd6ff4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fcd6ff4674632b4a1a0f7457db0874c38db17a23)) 994 | 995 | ## [17.2.13](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.12...v17.2.13) (2023-06-09) 996 | 997 | ### Bug Fixes 998 | 999 | - **ispapi registrar module:** dNS Management ([4d48b28](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4d48b28e91582723c3d6657876c3009cc2147584)) 1000 | 1001 | ## [17.2.12](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.11...v17.2.12) (2023-06-07) 1002 | 1003 | ### Bug Fixes 1004 | 1005 | - **ispapi registrar module:** restrict output of "Cancel Transfer", "Resend Transfer Approval Email" ([b98b924](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b98b9242a90ba254838ccf0b4fc734fac6199e11)) 1006 | 1007 | ## [17.2.11](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.10...v17.2.11) (2023-06-07) 1008 | 1009 | ### Bug Fixes 1010 | 1011 | - **cnic + ispapi registrar module:** patch getConfigArray to consider custom admin folder name ([a38be33](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a38be331b58471b7c2310071d4fce0d609f4aaaf)) 1012 | 1013 | ## [17.2.10](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.9...v17.2.10) (2023-06-06) 1014 | 1015 | ### Bug Fixes 1016 | 1017 | - **ispapi registrar module:** update .HK registration policies url ([b876688](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b876688bdb650fb99657bfb6321841e01a88c5cb)) 1018 | 1019 | ## [17.2.9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.8...v17.2.9) (2023-06-05) 1020 | 1021 | ### Bug Fixes 1022 | 1023 | - **ispapi registrar module:** generic field solution for google TLDs (X-ACCEPT-SSL-REQUIREMENT) ([fa13d83](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fa13d8385e6e60990d1b6a503475ddf3dc21a686)) 1024 | 1025 | ## [17.2.8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.7...v17.2.8) (2023-06-02) 1026 | 1027 | ### Bug Fixes 1028 | 1029 | - **cnic registrar module:** patch wrong output of eppcode with special chars ([8d35785](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8d3578550f7e3d4c7fa4c6c90eaa9d822e8a584f)) 1030 | 1031 | ## [17.2.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.6...v17.2.7) (2023-06-02) 1032 | 1033 | ### Bug Fixes 1034 | 1035 | - **ispapi registrar module:** patched expirydate for new regs (finalization-, failuredate n/a yet) ([8c83d1b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8c83d1b2694405fc328d43b0462990a3beb266be)) 1036 | 1037 | ## [17.2.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.5...v17.2.6) (2023-05-31) 1038 | 1039 | ### Bug Fixes 1040 | 1041 | - **cnic registrar module:** fix .SWISS additional domain fields binding to default WHMCS' fields ([1fdf47b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/1fdf47bc8c6b6937dcc7542746d43374bd0697ee)) 1042 | 1043 | ## [17.2.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.4...v17.2.5) (2023-05-31) 1044 | 1045 | ### Bug Fixes 1046 | 1047 | - **ispapi registrar module:** contact information form & reviewed additional domain fields injection ([74af371](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/74af37178c49f74b6343c315c3bd9d9438b4968d)) 1048 | 1049 | ## [17.2.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.3...v17.2.4) (2023-05-30) 1050 | 1051 | ### Bug Fixes 1052 | 1053 | - **ispapi registrar module:** remove X-SE-ACCEPT-REGISTRATION-TAC from Contact Update ([c5aff1a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c5aff1aa8acca5fdd92547a8983b34d713abef77)) 1054 | 1055 | ## [17.2.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.2...v17.2.3) (2023-05-24) 1056 | 1057 | ### Bug Fixes 1058 | 1059 | - **cnic registrar module:** include contact data in .SI Transfer Request ([65a3293](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/65a3293d1aec80c56e9fb4e9318e908c6f8797cd)) 1060 | 1061 | ## [17.2.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.1...v17.2.2) (2023-05-22) 1062 | 1063 | ### Bug Fixes 1064 | 1065 | - **ispapi registrar module:** add missing namespace to class Carbon ([9558489](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/9558489af965ca0a202436cc892cdfb0420ac46c)) 1066 | 1067 | ## [17.2.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.2.0...v17.2.1) (2023-05-22) 1068 | 1069 | ### Bug Fixes 1070 | 1071 | - **cnic registrar module:** add additional domain fields for .EUS ([d057177](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d0571776f999e0fcb014a26372ce41cb00d42497)) 1072 | 1073 | # [17.2.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.1.7...v17.2.0) (2023-05-22) 1074 | 1075 | ### Bug Fixes 1076 | 1077 | - **ispapi registrar module:** patch pending contact verification output ([6848c84](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/6848c849a8cba258412d1792a12487ff0ba6f9d0)) 1078 | - **ispapi registrar module:** review `setPendingSuspension` integration for Registrant Verification ([f8435fb](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f8435fbb54ecf8b7cfe1d7a390111fe0492309f6)) 1079 | - **ispapi registrar module:** review IRTP for 60d lock display and lock opt-out ([d7ce839](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d7ce8399fab999db6286c195b6db85fadef62fcf)) 1080 | 1081 | ### Features 1082 | 1083 | - **cnic registrar module:** add initial IRTP integration ([608b0d5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/608b0d5a79000b027aaf9e18e69ddecfe27476d9)) 1084 | 1085 | ## [17.1.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.1.6...v17.1.7) (2023-05-16) 1086 | 1087 | ### Bug Fixes 1088 | 1089 | - **cnic registrar module:** trimming of contact data before use in api commands ([7bbec00](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7bbec00e772193d3bdb96cf4812f28abedc41200)) 1090 | 1091 | ## [17.1.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.1.5...v17.1.6) (2023-05-16) 1092 | 1093 | ### Performance Improvements 1094 | 1095 | - **all registrar modules:** improve performance for Domain Registrations page in Admin Area ([fcf062d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fcf062d3bd503562e458ec9c41b89087322abdde)) 1096 | 1097 | ## [17.1.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.1.4...v17.1.5) (2023-05-16) 1098 | 1099 | ### Bug Fixes 1100 | 1101 | - **ispapi registrar module:** fix for Creating DNS Zone as non-hidden internal ([9a3c32e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/9a3c32e20422a4e7bc3822867d85030f62d4a751)) 1102 | 1103 | ## [17.1.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.1.3...v17.1.4) (2023-05-10) 1104 | 1105 | ### Bug Fixes 1106 | 1107 | - **cnic registrar module:** PHP Error fix in Domain Availability Check ([9fe930b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/9fe930be8d7c8c863de0449652d2221cfe00e1a1)) 1108 | 1109 | ## [17.1.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.1.2...v17.1.3) (2023-05-09) 1110 | 1111 | ### Bug Fixes 1112 | 1113 | - **cnic registrar module:** support for .CAT domains in WHMCS ([2efdc22](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2efdc22609f760d1e0e854df3624c6913d948b83)) 1114 | 1115 | ## [17.1.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.1.1...v17.1.2) (2023-05-05) 1116 | 1117 | ### Bug Fixes 1118 | 1119 | - **cnic domain importer addon:** import: show original msg if no translation available ([3a712b1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/3a712b1fe5832fdc7c942fd2ac9fe32cf1e19a97)) 1120 | 1121 | ## [17.1.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.1.0...v17.1.1) (2023-05-05) 1122 | 1123 | ### Bug Fixes 1124 | 1125 | - **cnic registrar module:** fix PHP Error in Aavailability Check ([b83ed76](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b83ed761d4670f673ecbf2eebe34889af7859c15)), closes [#249](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/issues/249) 1126 | 1127 | # [17.1.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.17...v17.1.0) (2023-05-03) 1128 | 1129 | ### Bug Fixes 1130 | 1131 | - **cnic registrar module:** fix .app additional domain fields ([ebf998c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ebf998c4882bfe83e580c3d7999d69bc1fb732a9)) 1132 | - **cnic registrar module:** fix not skipping contacts on transfer when using migrator ([b354297](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b3542972e0d1ef1f24ed396b983e5a3053ac13a1)) 1133 | 1134 | ### Features 1135 | 1136 | - **cnic registrar:** show warning in DNS Management page if nameservers do not point to KeyDNS ([d64d656](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d64d656ebbfdb46f29aacff4dec172da3d983d48)) 1137 | - **templates:** include child templates for improving DNS management ([9c97cec](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/9c97cece9b5d83d53d2931301f942d6126eaafff)) 1138 | 1139 | ## [17.0.17](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.16...v17.0.17) (2023-05-02) 1140 | 1141 | ### Bug Fixes 1142 | 1143 | - **ispapi registrar module:** DomainTransferSync > getContactDetailsWHMCS error fix ([afe63d9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/afe63d96ef650aeba3d1e4a89324ae2250abe3ae)) 1144 | - **ispapi registrar module:** function hook_transliterate conflict fix ([0b592e3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0b592e388b44a0bd09c516f9c53b6aa4b40c02c6)) 1145 | 1146 | ## [17.0.16](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.15...v17.0.16) (2023-04-28) 1147 | 1148 | ### Bug Fixes 1149 | 1150 | - **ispapi registrar module:** fix IRTP Lock output ([27d954d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/27d954d792a6e25f0475d497c5d550f0c2dd82d2)) 1151 | 1152 | ## [17.0.15](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.14...v17.0.15) (2023-04-28) 1153 | 1154 | ### Bug Fixes 1155 | 1156 | - **ispapi registrar module:** review .eu fields (country of citizenship dropped for companies) ([16551fc](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/16551fcf0f53c41465eff5b1407e07a9d1d67fbf)) 1157 | 1158 | ## [17.0.14](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.13...v17.0.14) (2023-04-27) 1159 | 1160 | ### Bug Fixes 1161 | 1162 | - **ispapi registrar module:** patch GetEPPCode implementation for .eu ([82858bc](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/82858bcf25e98bdd277bd782eccb7bc50a5b11c5)) 1163 | 1164 | ## [17.0.13](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.12...v17.0.13) (2023-04-26) 1165 | 1166 | ### Bug Fixes 1167 | 1168 | - **ispapi registrar module:** final patch for Transfer-related Buttons in Admin Area ([5f7484d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/5f7484d27cb0e8bb24cd844d3b0d956fd96734ed)) 1169 | 1170 | ## [17.0.12](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.11...v17.0.12) (2023-04-26) 1171 | 1172 | ### Bug Fixes 1173 | 1174 | - **ispapi registrar module:** buttons related to Pending Transfer not showing ([fe70482](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fe70482b1d1780ab9133cb9745a0aa0e50073ab5)) 1175 | 1176 | ## [17.0.11](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.10...v17.0.11) (2023-04-24) 1177 | 1178 | ### Bug Fixes 1179 | 1180 | - **ispapi registrar module:** patch Domain Sync for WHMCS7 (laravel query builder) ([0bb3e18](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0bb3e1891e6a44bb8f8812cbe1ab549338935fec)) 1181 | 1182 | ## [17.0.10](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.9...v17.0.10) (2023-04-24) 1183 | 1184 | ### Bug Fixes 1185 | 1186 | - **ispapi registrar module:** patch system-internal transfer (USERTRANSFER) ([06c89a4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/06c89a45268f30bcf6f05872a3a39bcbf9d44c74)) 1187 | 1188 | ## [17.0.9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.8...v17.0.9) (2023-04-21) 1189 | 1190 | ### Bug Fixes 1191 | 1192 | - **cnr + ispapi registrar module:** patch grace & redemption fees ([8ae6fae](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8ae6faedf2ed53971e9f609817e7b49f78f2605e)), closes [#248](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/issues/248) 1193 | 1194 | ## [17.0.8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.7...v17.0.8) (2023-04-19) 1195 | 1196 | ### Bug Fixes 1197 | 1198 | - **cleanup:** assets cleanup ([1fa0564](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/1fa05645b2ad4c213750ff55e3461b076351418e)) 1199 | 1200 | ## [17.0.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.6...v17.0.7) (2023-04-18) 1201 | 1202 | ### Bug Fixes 1203 | 1204 | - **cnic registrar module:** keep additional fields related files unencrypted ([f245232](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f2452324b8b8e13147b829e00d732fb095ee3667)) 1205 | 1206 | ## [17.0.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.5...v17.0.6) (2023-04-17) 1207 | 1208 | ### Bug Fixes 1209 | 1210 | - **ispapi registrar module:** .dk sync: status cancelled requires active as true ([96d4abf](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/96d4abf3f40f25b810efc7e8ba76d31a9e74e09f)) 1211 | 1212 | ## [17.0.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.4...v17.0.5) (2023-04-17) 1213 | 1214 | ### Bug Fixes 1215 | 1216 | - **ispapi registrar module:** .dk domain sync: switch to cancelled in case of status PENDINGDELETE ([7c3b94d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7c3b94d167fc5b640fde20b063a5fb0aeb5383c2)) 1217 | 1218 | ## [17.0.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.3...v17.0.4) (2023-04-17) 1219 | 1220 | ### Bug Fixes 1221 | 1222 | - **ispapi+cnic registrar module:** review output of Transfers (GetDomainInformation) ([104784d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/104784dcb5b8bc66299224c01d2f9d27c6bbd309)) 1223 | 1224 | ## [17.0.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.2...v17.0.3) (2023-04-14) 1225 | 1226 | ### Bug Fixes 1227 | 1228 | - **cnic registrar:** revamped additional fields for \*.au tld ([23b44b2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/23b44b2f55e51054fffd3c68ed3a14fb19b465d2)) 1229 | 1230 | ## [17.0.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.1...v17.0.2) (2023-04-14) 1231 | 1232 | ### Bug Fixes 1233 | 1234 | - **cnic registrar module:** fix for Resend transfer email and cancel domain transfer buttons ([8c55d86](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8c55d86cc41df18bb1c4ada6ef56acc9cce4be4e)) 1235 | - **cnic registrar:** add required additional field for .app tld ([b4e96de](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b4e96de984bc09a3dd85a79c0de2274a573f6df2)) 1236 | 1237 | ## [17.0.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v17.0.0...v17.0.1) (2023-04-05) 1238 | 1239 | ### Bug Fixes 1240 | 1241 | - **cnic registrar module:** avoid changing nameservers when activating dns zone ([f8666de](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f8666de5e3685703a9e6457de22f1aa9e140fce4)) 1242 | 1243 | # [17.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.23...v17.0.0) (2023-04-05) 1244 | 1245 | ### Bug Fixes 1246 | 1247 | - **cnic domain importer:** support CentralNic Reseller Module as Registrar in Dropdown List ([b88a067](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/b88a06735c06f448ef6c3c3a7bee041854b4b6d2)) 1248 | - **cnr registrar module:** patch integration of special admin area buttons ([371d35f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/371d35f34916668fb960c4db8af8b5ff55fbd42f)) 1249 | - **cnr/ispapi registrar modules:** upgrade to v8.0.5 of connector library (curlopt settings patch) ([57895fc](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/57895fc7d564c6a98616afe17c7a22cca2815068)) 1250 | 1251 | ### Code Refactoring 1252 | 1253 | - **hx reg mod:** replaced querydomainrepositoryinfo with querydomainoptions (categories) ([e18f58f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e18f58fbd1f06669036634e4c0987045ee38d38a)) 1254 | 1255 | ### Features 1256 | 1257 | - **cnic registrar module:** show connectivity result in registrar module settings overview ([90fff84](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/90fff848be69a7da0f42e6f3e75c28ad1e1c668a)) 1258 | - **cnic registrar module:** support of domain restores ([bbf201b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/bbf201b18ad9ff72a6d45722185c2f229115a8ba)) 1259 | - **cnic+ispapi registrar module:** add/review transfer precheck on shopping cart level ([fdbc119](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fdbc119e156ceca6e40a846d271b004322b80866)) 1260 | - **cnic+ispapi registrar module:** added/reviewed injection of private nameservers listing ([c4032a0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c4032a06312e5240af1501a7ef250cea3adf6707)) 1261 | - **cnic+ispapi registrar module:** added/reviewed injection of private nameservers listing ([61bd983](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/61bd983444b332864f105f9f8e3d5a6a4b9d9a71)) 1262 | - **cnr registrar module:** add "Cancel Domain Transfer" / "Resend Transfer Approval Email" buttons ([de757ef](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/de757ef8aef6a60130fbd027b8eff685adb1b7f2)) 1263 | - **cnr registrar module:** added automatic/manual supension/unsuspension feature ([d5063e2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d5063e2f8b160ef008a926ccff798fa2e084ebea)) 1264 | - **ispapi registrar module:** add explicit system activity logs for NS and DNSZone RRs updates ([74a47f2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/74a47f2305f0dd990eb2c581dcf00e1ca85884cd)) 1265 | - **ispapi registrar module:** auto post-transfer contact & nameserver update extended to all TLDs ([ecb966d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ecb966d2f50d92a81a57aee6d6d03b1b6a40ec3c)) 1266 | 1267 | ### BREAKING CHANGES 1268 | 1269 | - **hx reg mod:** The internal data structure of TLD Settings got extended. Please execute the following SQL Query to avoid PHP issues: ``DELETE FROM `tbltransientdata` WHERE name LIKE "ispapiZoneInfo%"`` 1270 | - **ispapi registrar module:** Post-Transfer Update is no longer only covering .com/.net/.cc/.tv, but all TLDs. In addition, it first updates contact data and then doing the nameserver update. Nameserver Data is now taken out of the order in WHMCS which is faster than looking this up from transfer request. The post processing got in addition moved into a hook and isn't any longer part of the TransferSync (Separation of Concerns). 1271 | 1272 | ## [16.15.23](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.22...v16.15.23) (2023-03-31) 1273 | 1274 | ### Bug Fixes 1275 | 1276 | - **ispapi registrar module:** dropped email check in contact data update mechanism after transfer ([e77a689](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/e77a68973e2322b98980c7fc56fdefc42bbe1435)) 1277 | 1278 | ## [16.15.22](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.21...v16.15.22) (2023-03-31) 1279 | 1280 | ### Bug Fixes 1281 | 1282 | - **cnic migrator addon:** drop whois data lookup; problematic in case of active id protection ([19a7b44](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/19a7b442dd2560a9d200b7bb9563f8c49e9eac58)) 1283 | 1284 | ## [16.15.21](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.20...v16.15.21) (2023-03-29) 1285 | 1286 | ### Bug Fixes 1287 | 1288 | - **ispapi:** fix for requesting authcode for .de domains via whmcs ([66657b4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/66657b4984863c9fb354c2f5df5eaf08e88aff01)) 1289 | 1290 | ## [16.15.20](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.19...v16.15.20) (2023-03-27) 1291 | 1292 | ### Bug Fixes 1293 | 1294 | - **cnic:** fallback to expiration date if paid date is not returned from API ([6f2c6c2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/6f2c6c21551d395f27450eb26882ae01566bd9a4)) 1295 | 1296 | ## [16.15.19](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.18...v16.15.19) (2023-03-24) 1297 | 1298 | ### Bug Fixes 1299 | 1300 | - **cnic:** set cancelled domains to default renewal mode in pre cron check ([cd108a3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cd108a3bc0c528c8562f8d92c0346fff7b1980c8)) 1301 | 1302 | ## [16.15.18](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.17...v16.15.18) (2023-03-24) 1303 | 1304 | ### Bug Fixes 1305 | 1306 | - **cnic:** use correct expiration date in daily cron ([93a6ca8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/93a6ca8e2508a4528e43de67cd7b98e2fd8a7b31)) 1307 | 1308 | ## [16.15.17](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.16...v16.15.17) (2023-03-17) 1309 | 1310 | ### Bug Fixes 1311 | 1312 | - **cnic migrator addon:** fix fieldnames consumed from GetClientsDetails ([cc4e5aa](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cc4e5aa561286c7738cb405958874e78edcce358)) 1313 | 1314 | ## [16.15.16](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.15...v16.15.16) (2023-03-17) 1315 | 1316 | ### Bug Fixes 1317 | 1318 | - **cnic migrator addon:** auto-retry transfer without contact data to improve success rate ([4d64549](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4d64549e774dd3120bf71e905b5249a5bd4bb9e1)) 1319 | 1320 | ## [16.15.15](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.14...v16.15.15) (2023-03-16) 1321 | 1322 | ### Bug Fixes 1323 | 1324 | - **cnic migrator addon:** patched whois data lookup for registrant & admin ([ae5287a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ae5287ab5b532d1ea2d80c053e847dd3446db0e0)) 1325 | 1326 | ## [16.15.14](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.13...v16.15.14) (2023-03-14) 1327 | 1328 | ### Bug Fixes 1329 | 1330 | - **cnic migration addon:** added fallback to whmcs data in case Whois Data lookup fails ([59d26af](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/59d26af016ce8c7e6df9774a02a730bec27ca4c7)) 1331 | 1332 | ## [16.15.13](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.12...v16.15.13) (2023-03-06) 1333 | 1334 | ### Bug Fixes 1335 | 1336 | - **ispapi registrar module:** migrate .AT whois disclose to hardcoded solution (non-ui solution) ([45c2fc4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/45c2fc4001cda49ed37aa7b94250c2ab8a928f14)) 1337 | 1338 | ## [16.15.12](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.11...v16.15.12) (2023-03-06) 1339 | 1340 | ### Bug Fixes 1341 | 1342 | - **ispapi registrar module:** reviewed expirydate sync of domains in redemption ([ddbbb12](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ddbbb12d694334bde2486716beab5ce581a922f1)) 1343 | 1344 | ## [16.15.11](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.10...v16.15.11) (2023-03-03) 1345 | 1346 | ### Bug Fixes 1347 | 1348 | - **ispapi registrar module:** in case of a restorable domain do only return "expired" in sync ([3a6490b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/3a6490bbfddeb53e39c6648eae1bb545f1c2799e)), closes [#XAT-159107](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/issues/XAT-159107) 1349 | 1350 | ## [16.15.10](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.9...v16.15.10) (2023-03-03) 1351 | 1352 | ### Bug Fixes 1353 | 1354 | - **migrator addon:** doing whois data lookup via localAPI; cnic: AddContact made optional ([86982cd](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/86982cd55b50321968727b92b223f1d9d6a96777)) 1355 | 1356 | ## [16.15.9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.8...v16.15.9) (2023-03-03) 1357 | 1358 | ### Bug Fixes 1359 | 1360 | - **cnr registrar module:** exclude transfer precheck in TransferDomain integration ([c47185c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c47185cc944761dbe9e0c2866f47adcd317b2b1b)) 1361 | - **cnr registrar module:** fix ClientAreaHeadOutput to only invoke function if present ([ba7cf9e](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ba7cf9e476f65c9d7148cb877cfce1c5f1e9f826)) 1362 | 1363 | ## [16.15.8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.7...v16.15.8) (2023-03-03) 1364 | 1365 | ### Bug Fixes 1366 | 1367 | - **cnic migrator addon:** .uk: do a push via losing registrar after initiating the transfer ([319a3c3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/319a3c33e43d331fb36405e82787f9e187ca14c3)) 1368 | - **cnr registrar module:** review .uk transfer (action=request); requires Push at losing Registrar ([98329f7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/98329f771f872a487620ab41c0210866772e433c)) 1369 | - **ispapi registrar module:** .uk transfers using action=request (waiting for Domain Release / Push) ([92ce879](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/92ce879f3dd3b9c2f6870ce029473fd5c969a5fd)) 1370 | 1371 | ## [16.15.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.6...v16.15.7) (2023-02-22) 1372 | 1373 | ### Bug Fixes 1374 | 1375 | - **ispapi registrar module:** added missing additional domain fields for .boo ([c6d6095](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c6d6095f112d0327d97f1f6fe149d350c2011d57)) 1376 | 1377 | ## [16.15.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.5...v16.15.6) (2023-02-15) 1378 | 1379 | ### Bug Fixes 1380 | 1381 | - **ispapi registrar module:** extend messaging of .dk additional fields regarding email confirmation ([40a9d0c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/40a9d0cd4be9765ae1c0fa6179d02fc6e1698b5a)) 1382 | 1383 | ## [16.15.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.4...v16.15.5) (2023-02-14) 1384 | 1385 | ### Bug Fixes 1386 | 1387 | - **cnic registrar module:** fix transferlock handling ([d6ffa99](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d6ffa996bf55092904f4da9ace4f32dd6d6c2b99)) 1388 | 1389 | ## [16.15.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.3...v16.15.4) (2023-02-14) 1390 | 1391 | ### Bug Fixes 1392 | 1393 | - **dashboard widget:** show right versioning information after upgrade ([179ce37](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/179ce37e8fe607b26f1beaf854dd478ae928a4b0)) 1394 | 1395 | ## [16.15.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.2...v16.15.3) (2023-02-10) 1396 | 1397 | ### Bug Fixes 1398 | 1399 | - **migration:** fix pagination issue in upcoming migrations table ([2416fe7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2416fe7dafa50e0203ecc84d7da3a26f107ec1f0)) 1400 | 1401 | ## [16.15.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.1...v16.15.2) (2023-02-09) 1402 | 1403 | ### Bug Fixes 1404 | 1405 | - **cnic registrar module:** fix .se additional fields for transfer ([564e503](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/564e50305c34421bba4668fd9b80de00d4ebb4ba)) 1406 | 1407 | ## [16.15.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.15.0...v16.15.1) (2023-02-09) 1408 | 1409 | ### Bug Fixes 1410 | 1411 | - **cnic dns addon:** pHP error when loading hooks, added missing composer autoloader ([23c0050](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/23c0050285d5bcaf6502b84ee6f387c07165d436)) 1412 | 1413 | # [16.15.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.14.3...v16.15.0) (2023-02-06) 1414 | 1415 | ### Features 1416 | 1417 | - **cnr registrar module:** support premium domain names ([d821ed9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d821ed9d0b9b2b3227d70a4996e685d7456fe3ef)) 1418 | 1419 | ## [16.14.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.14.2...v16.14.3) (2023-02-06) 1420 | 1421 | ### Bug Fixes 1422 | 1423 | - **download links:** to latest software bundle archive patched ([15a414b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/15a414b5e32000f9482eac0f42e86e9b09ddb871)) 1424 | 1425 | ## [16.14.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.14.1...v16.14.2) (2023-02-03) 1426 | 1427 | ### Bug Fixes 1428 | 1429 | - **registrars:** cleanup accidental inclusion of tpp wholesale. registrar module to be reviewed 1st ([cac5e91](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cac5e91cfb9a2767dd722a97ac88a07c9681a155)) 1430 | 1431 | ## [16.14.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.14.0...v16.14.1) (2023-02-03) 1432 | 1433 | ### Bug Fixes 1434 | 1435 | - **ispapi registrar module:** added .coop additional fields for contact update ([45a819b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/45a819b6c8320ec59128d1e0e62c16f79af88aa6)) 1436 | 1437 | # [16.14.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.13.1...v16.14.0) (2023-01-30) 1438 | 1439 | ### Features 1440 | 1441 | - **reg hx mod:** additionalfield ID Protection support for .AT TLD ([71f2f07](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/71f2f0785722703e5c1283410d5455bbdf99f2eb)) 1442 | 1443 | ## [16.13.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.13.0...v16.13.1) (2023-01-27) 1444 | 1445 | ### Bug Fixes 1446 | 1447 | - **cnic pricing import:** clean code refactoring & patching & performance review ([8215d0f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8215d0fc9853562808479958dab1a129db76cd6b)) 1448 | 1449 | # [16.13.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.12.2...v16.13.0) (2023-01-26) 1450 | 1451 | ### Features 1452 | 1453 | - **hx mod reg:** auto-unsuspension for renewed domains ([497d03b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/497d03b2701a171327be9738992496010d25c87c)) 1454 | 1455 | ## [16.12.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.12.1...v16.12.2) (2023-01-26) 1456 | 1457 | ### Performance Improvements 1458 | 1459 | - **hx reg mod:** Dynamic TLD configuration, tldmap.json file deprecated ([ddd5044](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ddd50444aeb45e1e16446887db4942b5c7008b66)) 1460 | 1461 | ## [16.12.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.12.0...v16.12.1) (2023-01-25) 1462 | 1463 | ### Bug Fixes 1464 | 1465 | - **cnr:** fix smarty error in renewal protection notification email ([0cb0bb3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0cb0bb35ac7b1946de9136fbbd110080edeb3283)) 1466 | 1467 | # [16.12.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.11.0...v16.12.0) (2023-01-23) 1468 | 1469 | ### Bug Fixes 1470 | 1471 | - **hx registrar:** additional fields for .giving ([0a6add5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0a6add5403edb593ace70caabfb413dce12761e2)) 1472 | - **registration:** fix registration failing for some tlds not supporting transfer lock ([503b2f0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/503b2f0ff1e8e2eedf2507637d9750fb70e99016)) 1473 | 1474 | ### Features 1475 | 1476 | - **cnic:** hide transfer lock from Client Area if TLD does not support it ([988fd06](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/988fd06526450e37598e3a072dad59cb63151f07)) 1477 | 1478 | # [16.11.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.10.2...v16.11.0) (2023-01-20) 1479 | 1480 | ### Features 1481 | 1482 | - **domain checker:** add possibility for subscribing to availability checks ([8a2f63b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8a2f63b2be898c6c20213d440d8c721e0e2eeb49)) 1483 | 1484 | ## [16.10.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.10.1...v16.10.2) (2023-01-19) 1485 | 1486 | ### Bug Fixes 1487 | 1488 | - **cnic:** add support for old WHMCS v7 ([0946a86](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0946a867fdb92c3ba6b698cd4eaf97b2685e0eaa)) 1489 | 1490 | ## [16.10.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.10.0...v16.10.1) (2023-01-19) 1491 | 1492 | ### Bug Fixes 1493 | 1494 | - **hx domainchecker:** add missing markup to renewal price for premium domains ([ba93e12](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ba93e12525cd7e4091c76ce86a94caf6ae5c9daf)) 1495 | - **hx domainchecker:** update number of items in shopping cart ([db30f82](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/db30f8240d297d74e18b7bc2278a13d1ce81b96c)) 1496 | 1497 | # [16.10.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.9.1...v16.10.0) (2023-01-10) 1498 | 1499 | ### Features 1500 | 1501 | - **hooks:** support customs hooks by file /your/path/to/whmcs/resources/hooks_ispapi_custom.php ([25f99d8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/25f99d8f3527954d76626807b72361e23c575dfa)) 1502 | 1503 | ## [16.9.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.9.0...v16.9.1) (2023-01-06) 1504 | 1505 | ### Bug Fixes 1506 | 1507 | - **ispapi registrar module:** identify and use right locale for additional domain fields translation ([c78f9ce](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c78f9cef8fc29e2a71cfb6d1523bb20369cf4234)) 1508 | 1509 | # [16.9.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.8.5...v16.9.0) (2023-01-04) 1510 | 1511 | ### Bug Fixes 1512 | 1513 | - **tweak:** front-end and error messages improvements ([c65a7c6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c65a7c6b71708d2cb6b1eeceb84f5edd00ce51bb)) 1514 | 1515 | ### Features 1516 | 1517 | - **epp-csv:** bulk Import EPP Codes via CSV file ([2b9d5eb](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2b9d5ebf4a3e3b99d1174b0988ad0464e43b646f)) 1518 | 1519 | ## [16.8.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.8.4...v16.8.5) (2023-01-03) 1520 | 1521 | ### Bug Fixes 1522 | 1523 | - **assets:** review mechanism for browser cache update ([2e38f67](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2e38f675b3c9b1c8c768bd3774604e9a9bd1c50e)) 1524 | 1525 | ## [16.8.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.8.3...v16.8.4) (2022-12-08) 1526 | 1527 | ### Bug Fixes 1528 | 1529 | - **release process test:** automated publishing to WHMCS Marketplace ([2364cb4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2364cb4990ab6d665c0160c81b9769a86f125520)) 1530 | 1531 | ## [16.8.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.8.2...v16.8.3) (2022-12-08) 1532 | 1533 | ### Bug Fixes 1534 | 1535 | - **release process test:** automated publishing on WHMCS Marketplace ([0ff21bc](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0ff21bc7715eb4eb805e0ef19099b2495cf26fb4)) 1536 | 1537 | ## [16.8.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.8.1...v16.8.2) (2022-12-08) 1538 | 1539 | ### Bug Fixes 1540 | 1541 | - **ispapi registrar module:** patch bug with connected web apps ([da464a8](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/da464a8a198388ac85c8ebdf498153f995eec230)) 1542 | 1543 | ## [16.8.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.8.0...v16.8.1) (2022-12-06) 1544 | 1545 | ### Bug Fixes 1546 | 1547 | - **statistics data:** only submit cnic/ispapi addons in use (for customer support improvements) ([59901a4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/59901a4609aa73e77b65707da6e7230037c32ab4)) 1548 | 1549 | # [16.8.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.7.0...v16.8.0) (2022-12-01) 1550 | 1551 | ### Bug Fixes 1552 | 1553 | - **domain search:** fadeIn/-Out transfer button in search field based on input value ([afe9348](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/afe9348d3b3f209a1b33491bb11a470d3db599fc)) 1554 | - **domain search:** patch CSS of toggles (for mobile devices) ([7fb30f9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7fb30f9669b0bbd596ce3b8ae45d7d5a8f445543)) 1555 | - **ispapi registrar module:** patch output of connectivity result in module settings (WHMCS 8.6) ([3411751](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/3411751b4e633c88d1ea4e8bb14a73cc11d5dc6a)) 1556 | - **ispapi registrar module:** web apps cfg (file-based solution not working in corner cases) ([d559c6d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/d559c6db9af2ac406c77b8ad52e86c46737e4b56)) 1557 | 1558 | ### Features 1559 | 1560 | - **domain search:** configurable transfer button in search field ([0aad3a6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0aad3a6586ceb6fa8c6ac2f202d8a3f4fdd446fb)) 1561 | 1562 | # [16.7.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.6.5...v16.7.0) (2022-11-30) 1563 | 1564 | ### Bug Fixes 1565 | 1566 | - **aftermarket domains:** consider registrar module setting in ISPAPI Domain Checker ([7b067d9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7b067d90d9b65774d5c03ffc53a9af92391d231b)) 1567 | - **aftermarket domains:** review aftermarket premium domains to display with label "AFTERMARKET" ([7b32b04](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7b32b047ca7ae2403e7a0bce7ec8f6fec28cd9f3)) 1568 | 1569 | ### Features 1570 | 1571 | - **aftermarket domains:** configuration option added to registrar module (by default: off) ([af487fe](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/af487fe8c6a8122e0fd166ce70203fd6889af4c1)) 1572 | 1573 | ## [16.6.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.6.4...v16.6.5) (2022-11-30) 1574 | 1575 | ### Bug Fixes 1576 | 1577 | - **domain search:** fixed issue with aftermarket pricing detection (non-premium class) ([bb54200](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/bb5420019e80c694e3d64a74b8629f29a108ab76)) 1578 | - **domain search:** fixed issue with currency detection and upgrade function ([95baa1c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/95baa1ceb8f128507843166102a114cb8fec71fc)) 1579 | - **domain search:** update item count of shopping cart button ([8f836ea](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8f836ea48b2e9c7873c9f344d49f00fe709847d9)) 1580 | - **helper library:** patched db communication wrapper ([7867ebe](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/7867ebe573f072b6cf6c2d071cfed08b0ed74e5f)) 1581 | 1582 | ## [16.6.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.6.3...v16.6.4) (2022-11-29) 1583 | 1584 | ### Bug Fixes 1585 | 1586 | - **php8 support:** replacing mktime() with time() ([481c178](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/481c17855879fc066444bcf49224d4e7cae639da)) 1587 | 1588 | ## [16.6.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.6.2...v16.6.3) (2022-11-29) 1589 | 1590 | ### Bug Fixes 1591 | 1592 | - **php8 support:** patched compatibility of DB Interactivity + Transactions ([3bd576c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/3bd576cc04c8a4b4061482f4054ee96c7a6db3a0)) 1593 | 1594 | ## [16.6.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.6.1...v16.6.2) (2022-11-23) 1595 | 1596 | ### Bug Fixes 1597 | 1598 | - **domain-import:** premium domains import pricing fix ([97c5449](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/97c54495c2ca328103cc68359515b1ffe17ce008)) 1599 | - **premium price detection:** for corner cases (probably just affecting the OT&E) patched ([19808af](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/19808af5f57ee42b527094c116dbd8809b2e0c76)) 1600 | 1601 | ## [16.6.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.6.0...v16.6.1) (2022-11-21) 1602 | 1603 | ### Bug Fixes 1604 | 1605 | - **widget:** quota usage Infinity (INF) percentage fix ([c4d14cb](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/c4d14cbf958a94b6d4d36e9a665858f911ccd214)) 1606 | - **widget:** quota usage Infinity (INF) percentage fix ([4e5a158](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4e5a158f978d24b843da91f2d41beb10d13eaf4e)) 1607 | 1608 | # [16.6.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.5.0...v16.6.0) (2022-11-18) 1609 | 1610 | ### Features 1611 | 1612 | - **statistics:** extended statistics data functionality ([cac452d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cac452d993b4feaec8822ee5aa60f24daa19ff37)) 1613 | 1614 | # [16.5.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.4.1...v16.5.0) (2022-11-15) 1615 | 1616 | ### Features 1617 | 1618 | - **domain checker:** support language overrides ([720d026](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/720d026c8c96accfbc719fe81974fe560db934fa)) 1619 | 1620 | ## [16.4.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.4.0...v16.4.1) (2022-11-14) 1621 | 1622 | ### Bug Fixes 1623 | 1624 | - **cnicmigration:** fix email template paths ([cf9d4dc](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/cf9d4dcf70596c5c925f12c4fcea90e7b92ff9dd)) 1625 | 1626 | # [16.4.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.3.7...v16.4.0) (2022-11-14) 1627 | 1628 | ### Features 1629 | 1630 | - **dashboard widget:** total request/query limit quota shown on Hexonet (Ispapi) widget ([bb1be6f](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/bb1be6f0ec9285b92f4c340c999579dec172bbc4)) 1631 | 1632 | ## [16.3.7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.3.6...v16.3.7) (2022-11-14) 1633 | 1634 | ### Bug Fixes 1635 | 1636 | - **license:** changes to our LICENSE and COPYRIGHTS ([6a14a19](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/6a14a1907ba6aa0b6784962312b3436d6870a943)) 1637 | 1638 | ## [16.3.6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.3.5...v16.3.6) (2022-11-13) 1639 | 1640 | ### Bug Fixes 1641 | 1642 | - **migration:** failure message is now displayed correctly ([a780a1a](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a780a1a49de3e31baca0f3c1069fd3a4f5a66307)) 1643 | 1644 | ## [16.3.5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.3.4...v16.3.5) (2022-11-11) 1645 | 1646 | ### Bug Fixes 1647 | 1648 | - **widget:** widget styling fixes for Windows OS users ([55b35e4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/55b35e4a8d3ab2ebeccc515f08ccd84398ac572c)) 1649 | 1650 | ## [16.3.4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.3.3...v16.3.4) (2022-11-10) 1651 | 1652 | ### Bug Fixes 1653 | 1654 | - **ioncube:** php version encoding bundling - fixes corrupt files ([38c80e4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/38c80e49961352bb5a2ac88fd518862bac3b7e74)) 1655 | - **widgets:** widget error fixed, index.tpl not found ([1e00b77](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/1e00b770da34e3e079ff611e792619bbf4d7dad9)) 1656 | 1657 | ## [16.3.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.3.2...v16.3.3) (2022-11-10) 1658 | 1659 | ### Bug Fixes 1660 | 1661 | - **translations:** patching additional fields translation (different lang used that we don't ship) ([34ceaa2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/34ceaa2b7eb61aa062631c35d4ff76ad731fa258)) 1662 | 1663 | ## [16.3.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.3.1...v16.3.2) (2022-11-09) 1664 | 1665 | ### Bug Fixes 1666 | 1667 | - **ioncube:** fixed corrupt files issue by separating archives for php versions ([bd1c861](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/bd1c86181ca43b2c376052ebdfc72e75847e6397)) 1668 | 1669 | ## [16.3.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.3.0...v16.3.1) (2022-11-09) 1670 | 1671 | ### Bug Fixes 1672 | 1673 | - **ioncube:** encoding order fix higher to lower ([a75d8ac](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/a75d8ac422dcc98cb914440b6ef2a386cb8342fb)) 1674 | 1675 | # [16.3.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.2.3...v16.3.0) (2022-11-08) 1676 | 1677 | ### Bug Fixes 1678 | 1679 | - **ioncube:** support for php 8.1 and 7.4 ([792fba2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/792fba25170ab5fca3b203f467e9682acbf38c92)) 1680 | 1681 | ### Features 1682 | 1683 | - **hexonet registrar module:** post-transfer activation of DNS Management added ([df0b81b](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/df0b81bf363a3194e323f39a949b3eda021462d8)) 1684 | 1685 | ## [16.2.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.2.2...v16.2.3) (2022-11-07) 1686 | 1687 | ### Bug Fixes 1688 | 1689 | - **tld-eu:** remove unnecessary parameter that prevented .eu transfers ([0ef425d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/0ef425d2bb5fcfe7eeac8e83796af5a1f19863f3)) 1690 | 1691 | ## [16.2.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.2.1...v16.2.2) (2022-11-07) 1692 | 1693 | ### Bug Fixes 1694 | 1695 | - **autoloading:** autoloading fixes when modules are deactivated ([3cb4273](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/3cb4273cdb9d1862bc0a0f418111a87fbce71cd5)) 1696 | 1697 | ## [16.2.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.2.0...v16.2.1) (2022-11-07) 1698 | 1699 | ### Bug Fixes 1700 | 1701 | - **migrator:** Fix for migrator when fetching domain status ([f6f8f15](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/f6f8f15a020505778749901ebd48e18f9c9e08b2)) 1702 | 1703 | # [16.2.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.1.3...v16.2.0) (2022-11-07) 1704 | 1705 | ### Bug Fixes 1706 | 1707 | - **cnicmigration:** fix link to documentation ([5cca1e7](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/5cca1e7e49623c3f969b83257f07752f9ce9e506)) 1708 | - **ispapi registrar module:** extend TLD Mapping (.edu.mx <-> EDUMX) ([4ba43b5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/4ba43b58b3e0d85be11be57c9e6c70c65846f5b7)) 1709 | 1710 | ### Features 1711 | 1712 | - **cnicmigration:** show warning if email templates have not been configured ([9e3712c](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/9e3712c9127a1cabf69ce138090dbe142bd05965)) 1713 | - **cnicssl:** add ability to download certificates ([8d438d4](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/8d438d415e57b22abb14e1e76f5f475da0795662)) 1714 | 1715 | ## [16.1.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.1.2...v16.1.3) (2022-10-20) 1716 | 1717 | ### Bug Fixes 1718 | 1719 | - **cnr registrar module:** patch autoloading of function in hooks.php ([44fc4d5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/44fc4d5ead6e8c202d862c5da722e7595d899ad6)) 1720 | 1721 | ## [16.1.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.1.1...v16.1.2) (2022-10-20) 1722 | 1723 | ### Bug Fixes 1724 | 1725 | - **hx registrar module:** patch autoloading of function in hooks.php ([247411d](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/247411d60b2840c5975a6bd1a0e056f46a29381b)) 1726 | 1727 | ## [16.1.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.1.0...v16.1.1) (2022-10-20) 1728 | 1729 | ### Bug Fixes 1730 | 1731 | - **ispapi registrar module:** nameserver update patched ([da45fc5](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/da45fc5f721429f6f5a34018491c8a6086c66d84)) 1732 | 1733 | # [16.1.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.0.3...v16.1.0) (2022-10-20) 1734 | 1735 | ### Bug Fixes 1736 | 1737 | - **cnic-ssl:** fix several issues and add PHP 8.1 compatibility ([65b76e9](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/65b76e9126a5f71f3528a0436151c2f24d89d370)) 1738 | 1739 | ### Features 1740 | 1741 | - **precheck addons:** automatically precheck addons on cart level page, feature added ([fdbba09](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/fdbba091533b78eeb081d32e9bcf6eec418429b6)) 1742 | 1743 | ## [16.0.3](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.0.2...v16.0.3) (2022-10-19) 1744 | 1745 | ### Bug Fixes 1746 | 1747 | - **gulp:** updated encryption files list ([150e603](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/150e603df47a2257b550be21144ebc665fb64451)) 1748 | 1749 | ## [16.0.2](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.0.1...v16.0.2) (2022-10-19) 1750 | 1751 | ### Bug Fixes 1752 | 1753 | - **domainchecker:** default categories import fix, build-release workflow fix, gulp config updated ([ff4b211](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ff4b211d11e8fb34b897b984cad96b2043d39ca8)) 1754 | - **ispapi domain search:** fix multi-year terms dropdown order (10Y now after 9Y) ([1918b72](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/1918b72d4f9936f53ab22b250e9b85bbb2318fda)) 1755 | 1756 | ## [16.0.1](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v16.0.0...v16.0.1) (2022-10-19) 1757 | 1758 | ### Bug Fixes 1759 | 1760 | - **tld-import:** skip tlds with no pricing ([2a58dbe](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/2a58dbe304fa69b8f6651b57d1a1ad5a6d3d0041)) 1761 | 1762 | # [16.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v15.9.9...v16.0.0) (2022-10-18) 1763 | 1764 | ### chore 1765 | 1766 | - **restructuring:** in direction of a software bundle ([ac88ed6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ac88ed674da7c947d5874cd263337c52d70cb1a8)) 1767 | 1768 | ### BREAKING CHANGES 1769 | 1770 | - **restructuring:** Restructuring of all repositories into a single repository. Offering several benefits to us and our resellers. 1771 | 1772 | # [16.0.0](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/compare/v15.9.9...v16.0.0) (2022-10-18) 1773 | 1774 | ### chore 1775 | 1776 | - **restructuring:** in direction of a software bundle ([ac88ed6](https://github.com/centralnicgroup/rtldev-middleware-whmcs-src/commit/ac88ed674da7c947d5874cd263337c52d70cb1a8)) 1777 | 1778 | ### BREAKING CHANGES 1779 | 1780 | - **restructuring:** Restructuring of all repositories into a single repository. Offering several benefits to us and our resellers. 1781 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | PERMISSION IS HEREBY GRANTED, TO ANYONE OBTAINING A COPY OF THIS SOFTWARE AND ASSOCIATED DOCUMENTATION FILES (THE "SOFTWARE"), TO WORK WITH AND USE THE SOFTWARE WITHOUT RESTRICTION. 2 | 3 | USE OF THE SOFTWARE AND ALL ITS MODULES IS EXPRESSLY PERMITTED ONLY WITHIN THE SCOPE OF THE LICENSE AGREEMENT. 4 | 5 | ANY ACTION THAT IS INTENDED TO VIOLATE THE RIGHTS OF THE OWNER IS PROHIBITED AND ONLY PERMITTED IN CONSULTATION WITH THE RIGHTS HOLDER. EXCEPT AS AND ONLY TO THE EXTENT EXPRESSLY PERMITTED IN THIS LICENSE OR BY APPLICABLE LAW, YOU MAY NOT COPY, DECOMPILE, REVERSE ENGINEER, DISASSEMBLE, MERGE, PUBLISH, DISTRIBUTE, SUBLICENSE, ATTEMPT TO DERIVE THE SOURCE CODE OF, MODIFY, OR CREATE DERIVATIVE WORKS OF THE SOFTWARE OR ANY PART THEREOF. ANY ATTEMPT TO DO SO IS A VIOLATION OF THE RIGHTS OF TEAM INTERNET GROUP PLC AND ITS LICENSORS OF THE SOFTWARE. IF YOU BREACH THIS RESTRICTION, YOU MAY BE SUBJECT TO PROSECUTION AND DAMAGES. 6 | 7 | THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WHMCS "CNIC" Software Bundle 2 | 3 | [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) 4 | [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) 5 | 6 | This codebase addresses the WHMCS Software Bundle provided by Team Internet Group PLC. To access the ZIP archive with the latest release version, click [here](https://github.com/centralnicgroup-opensource/rtldev-middleware-whmcs/raw/main/whmcs-cnic-bundle.zip). 7 | 8 | Within this bundle, we've included: 9 | 10 | - The ISPAPI Registrar Module (our widgets integrated) 11 | - The CNR (fka. RRPproxy) Registrar Module 12 | - The CNIC Domain Search 13 | - The CNIC DNS Templating Addon 14 | - The CNIC SSL Cert Addon 15 | - The CNIC Domain Importer Addon 16 | - The CNIC Domain Migrator Addon 17 | - The CNIC Domain Monitoring Addon 18 | 19 | ## Resources 20 | 21 | - Documentation: 22 | - [HEXONET](https://www.hexonet.support/hc/en-gb/sections/13647993846813-WHMCS) 23 | - [CentralNic Reseller](https://support.centralnicreseller.com/hc/en-gb/sections/13438422570781-WHMCS) 24 | - [Release Notes](https://github.com/centralnicgroup-opensource/rtldev-middleware-whmcs/releases) 25 | 26 | ## Authors 27 | 28 | - **Kai Schwarz** - _Team Lead_ - [KaiSchwarz-cnic](https://github.com/KaiSchwarz-cnic) 29 | - **Asif Nawaz** - _developer_ - [AsifNawaz-cnic](https://github.com/AsifNawaz-cnic) 30 | - **Sebastian Vassiliou** - _developer_ - [SebastianVassiliou-cnic](https://github.com/SebastianVassiliou-cnic) 31 | 32 | Former Developers: 33 | 34 | - **Zoltan Egresi** [RRPproxy] - [ZoltanEgresi-cnic](https://github.com/ZoltanEgresi-cnic) 35 | - **Pavel Ciocan** [IBS] - [PavelCiocan-cnic](https://github.com/PavelCiocan-cnic) 36 | - **Anthony Schneider** [HEXONET] - [AnthonySchneider-cnic](https://github.com/AnthonySchneider-cnic) 37 | - **Tulasi Seelamkurthi** [HEXONET] - [Tulsi91](https://github.com/tulsi91) 38 | 39 | ## License 40 | 41 | Except the IBS Registrar Module and the TPP Wholesale Registrar module, all our code is closed source. 42 | Using these encrypted Addons is allowed. Any actions in direction of unencrypting / reverse engineering et al to gain knowledge of how these encrypted modules work are disallowed. 43 | 44 | Means for IBS and TPPW, the modules are released under the MIT License - see the [LICENSE](https://github.com/centralnicgroup-opensource/rtldev-middleware-whmcs/blob/master/LICENSE) file for details. 45 | 46 | [Team Internet Group PLC](https://teaminternet.com) 47 | -------------------------------------------------------------------------------- /release.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "27.3.0", 3 | "date": "2025-05-28" 4 | } -------------------------------------------------------------------------------- /whmcs-cnic-bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centralnicgroup-opensource/rtldev-middleware-whmcs/527696925957521391cb2fed0026afb266bc9db7/whmcs-cnic-bundle.zip -------------------------------------------------------------------------------- /whmcs-ibs-registrar-latest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centralnicgroup-opensource/rtldev-middleware-whmcs/527696925957521391cb2fed0026afb266bc9db7/whmcs-ibs-registrar-latest.zip -------------------------------------------------------------------------------- /whmcs-ispapi-pricingimporter-latest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centralnicgroup-opensource/rtldev-middleware-whmcs/527696925957521391cb2fed0026afb266bc9db7/whmcs-ispapi-pricingimporter-latest.zip -------------------------------------------------------------------------------- /whmcs-moniker-registrar-latest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centralnicgroup-opensource/rtldev-middleware-whmcs/527696925957521391cb2fed0026afb266bc9db7/whmcs-moniker-registrar-latest.zip -------------------------------------------------------------------------------- /whmcs-tpp-registrar-latest.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/centralnicgroup-opensource/rtldev-middleware-whmcs/527696925957521391cb2fed0026afb266bc9db7/whmcs-tpp-registrar-latest.zip --------------------------------------------------------------------------------