Compare commits

..

3 Commits

Author SHA1 Message Date
Johannes Zellner 8bb15aedbd Add 1.9.3 changes 2018-01-18 12:51:18 +01:00
Girish Ramakrishnan 00b6588972 1.9.2 changes 2018-01-18 12:50:47 +01:00
Johannes Zellner 0bd6d3b9f8 The DNS provider property moved to the root dns config object 2018-01-18 12:50:20 +01:00
5 changed files with 6 additions and 9 deletions
-3
View File
@@ -1181,6 +1181,3 @@
* Set max email recepient limit (in outgoing emails) to 500
* Put terminal and app logs viewer to separate window
[1.9.4]
* Fix typo causing LE cert renewals to fail
+3 -3
View File
@@ -910,9 +910,9 @@
}
},
"cloudron-manifestformat": {
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/cloudron-manifestformat/-/cloudron-manifestformat-2.11.0.tgz",
"integrity": "sha512-t4KR2KmK1JDtxw1n6IVNg0+xxspk/Cpb6m1WimE9hJ0KJYsIgZNnkce47uYiG9/nWrgUSV4xcdzsS91OOvWgig==",
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/cloudron-manifestformat/-/cloudron-manifestformat-2.10.0.tgz",
"integrity": "sha1-CKq0H2nUjEkeiLPi/UfBKveWzXw=",
"requires": {
"cron": "1.3.0",
"java-packagename-regex": "1.0.0",
+1 -1
View File
@@ -20,7 +20,7 @@
"async": "^2.6.0",
"aws-sdk": "^2.151.0",
"body-parser": "^1.18.2",
"cloudron-manifestformat": "^2.11.0",
"cloudron-manifestformat": "^2.10.0",
"connect-ensure-login": "^0.1.1",
"connect-lastmile": "^1.0.2",
"connect-timeout": "^1.9.0",
+1 -1
View File
@@ -178,7 +178,7 @@ function renewAll(auditSource, callback) {
var expiringApps = [ ];
for (var i = 0; i < allApps.length; i++) {
var appDomain = allApps[i].altDomain || allApps[i].intrinsicFqdn;
var appDomain = allApps[i].altDomain || allApps[i].instrincFqdn;
var certFilePath = path.join(paths.APP_CERTS_DIR, appDomain + '.user.cert');
var keyFilePath = path.join(paths.APP_CERTS_DIR, appDomain + '.user.key');
+1 -1
View File
@@ -211,7 +211,7 @@ function del(dnsConfig, zoneName, subdomain, type, values, callback) {
.timeout(30 * 1000)
.end(function (error, result) {
if (error && !error.response) return callback(error);
if (result.statusCode !== 200 || result.body.success !== true) return translateRequestError(result, callback);
if (result.statusCode !== 204 || result.body.success !== true) return translateRequestError(result, callback);
debug('del: done');