Compare commits

...

7 Commits
v7.2.4 ... 1.9

Author SHA1 Message Date
Girish Ramakrishnan
7a63512d21 cloudflare: del returns 200 now 2018-01-31 12:04:12 +01:00
Girish Ramakrishnan
7ed18b3016 update cloudron-manifestformat (for prerelease in semver) 2018-01-30 16:37:41 -08:00
Girish Ramakrishnan
0d3d7d2b88 1.9.4 changes 2018-01-30 15:30:56 -08:00
Girish Ramakrishnan
457f76367c Fix typo that is causing LE auto-renewal to fail 2018-01-30 15:28:52 -08:00
Johannes Zellner
74b3d06cd7 Add 1.9.3 changes
From 8bb15aedbd (1.9.3 branch)
2018-01-30 15:27:23 -08:00
Johannes Zellner
d22f385402 The DNS provider property moved to the root dns config object
From 0bd6d3b9f8 (1.9.3 branch)
2018-01-30 15:27:06 -08:00
Girish Ramakrishnan
08f920afee 1.9.2 changes 2018-01-17 10:49:33 -08:00
6 changed files with 30 additions and 7 deletions

23
CHANGES
View File

@@ -1161,3 +1161,26 @@
* Set max email recepient limit (in outgoing emails) to 500
* Put terminal and app logs viewer to separate window
[1.9.2]
* Prepare Cloudron for supporting multiple domains
* Add Cloudron restore UI
* Do not put app in errored state if backup fails
* Display backup progress in CaaS
* Add Google Cloud Storage backend for backups
* Update node to 8.9.3 LTS
* Set max email recepient limit (in outgoing emails) to 500
* Put terminal and app logs viewer to separate window
[1.9.3]
* Prepare Cloudron for supporting multiple domains
* Add Cloudron restore UI
* Do not put app in errored state if backup fails
* Display backup progress in CaaS
* Add Google Cloud Storage backend for backups
* Update node to 8.9.3 LTS
* 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

6
package-lock.json generated
View File

@@ -910,9 +910,9 @@
}
},
"cloudron-manifestformat": {
"version": "2.10.0",
"resolved": "https://registry.npmjs.org/cloudron-manifestformat/-/cloudron-manifestformat-2.10.0.tgz",
"integrity": "sha1-CKq0H2nUjEkeiLPi/UfBKveWzXw=",
"version": "2.11.0",
"resolved": "https://registry.npmjs.org/cloudron-manifestformat/-/cloudron-manifestformat-2.11.0.tgz",
"integrity": "sha512-t4KR2KmK1JDtxw1n6IVNg0+xxspk/Cpb6m1WimE9hJ0KJYsIgZNnkce47uYiG9/nWrgUSV4xcdzsS91OOvWgig==",
"requires": {
"cron": "1.3.0",
"java-packagename-regex": "1.0.0",

View File

@@ -20,7 +20,7 @@
"async": "^2.6.0",
"aws-sdk": "^2.151.0",
"body-parser": "^1.18.2",
"cloudron-manifestformat": "^2.10.0",
"cloudron-manifestformat": "^2.11.0",
"connect-ensure-login": "^0.1.1",
"connect-lastmile": "^1.0.2",
"connect-timeout": "^1.9.0",

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].instrincFqdn;
var appDomain = allApps[i].altDomain || allApps[i].intrinsicFqdn;
var certFilePath = path.join(paths.APP_CERTS_DIR, appDomain + '.user.cert');
var keyFilePath = path.join(paths.APP_CERTS_DIR, appDomain + '.user.key');

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 !== 204 || result.body.success !== true) return translateRequestError(result, callback);
if (result.statusCode !== 200 || result.body.success !== true) return translateRequestError(result, callback);
debug('del: done');

View File

@@ -255,7 +255,7 @@ angular.module('Application').controller('EmailController', ['$scope', '$locatio
Client.getDomain($scope.config.fqdn, function (error, result) {
if (error) return console.error(error);
$scope.dnsConfig = result.config;
$scope.dnsConfig = result;
});
}