cloudron 5.11.9 → 5.11.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,6 @@ program.command('build', { isDefault: true })
31
31
 
32
32
  program.command('login')
33
33
  .description('Login to the build service')
34
- .option('-t, --token <token>', 'Build service token')
35
34
  .action(buildActions.login);
36
35
 
37
36
  program.command('logs')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudron",
3
- "version": "5.11.9",
3
+ "version": "5.11.11",
4
4
  "license": "MIT",
5
5
  "description": "Cloudron Commandline Tool",
6
6
  "main": "main.js",
@@ -17,31 +17,29 @@
17
17
  },
18
18
  "author": "Cloudron Developers <support@cloudron.io>",
19
19
  "dependencies": {
20
- "async": "^3.2.5",
20
+ "async": "^3.2.6",
21
21
  "cloudron-manifestformat": "^5.26.2",
22
22
  "commander": "^12.1.0",
23
- "debug": "^4.3.5",
23
+ "debug": "^4.3.7",
24
24
  "easy-table": "^1.2.0",
25
25
  "ejs": "^3.1.10",
26
26
  "eventsource": "^2.0.2",
27
- "micromatch": "^4.0.7",
28
- "open": "^8.4.0",
27
+ "micromatch": "^4.0.8",
28
+ "open": "^10.1.0",
29
29
  "progress": "^2.0.3",
30
30
  "progress-stream": "^2.0.0",
31
31
  "readline-sync": "^1.4.10",
32
32
  "safetydance": "^2.4.0",
33
33
  "split2": "^4.2.0",
34
- "superagent": "^9.0.2",
34
+ "superagent": "^10.1.1",
35
35
  "tar-fs": "https://registry.npmjs.org/tar-fs/-/tar-fs-1.12.0.tgz",
36
- "underscore": "^1.13.6"
36
+ "underscore": "^1.13.7"
37
37
  },
38
38
  "engines": {
39
39
  "node": ">= 18.x.x"
40
40
  },
41
41
  "devDependencies": {
42
42
  "expect.js": "^0.3.1",
43
- "memorystream": "^0.3.1",
44
- "mocha": "^10.4.0",
45
- "rimraf": "^5.0.7"
43
+ "mocha": "^10.8.2"
46
44
  }
47
45
  }
package/src/actions.js CHANGED
@@ -8,7 +8,6 @@ const assert = require('assert'),
8
8
  fs = require('fs'),
9
9
  https = require('https'),
10
10
  manifestFormat = require('cloudron-manifestformat'),
11
- opn = require('open'),
12
11
  os = require('os'),
13
12
  path = require('path'),
14
13
  ProgressBar = require('progress'),
@@ -427,7 +426,8 @@ async function open(localOptions, cmd) {
427
426
 
428
427
  if (!app) return exit(NO_APP_FOUND_ERROR_STRING);
429
428
 
430
- opn(`https://${app.fqdn}`);
429
+ // pure esm module
430
+ (await import('open')).default(`https://${app.fqdn}`);
431
431
  }
432
432
 
433
433
  async function list(localOptions, cmd) {
@@ -370,15 +370,19 @@ async function approve(localOptions, cmd) {
370
370
  // Git repo pre-flight checks: checking if latest tag matches latest commit
371
371
  defaultBranch = safe.child_process.execSync(`git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@'`, { encoding: 'utf8' });
372
372
  if (safe.error) return exit(`Failed to get default branch: ${safe.error.message}`);
373
+ defaultBranch = defaultBranch.trim();
373
374
 
374
- const defaultBranchSha = safe.child_process.execSync(`git rev-parse ${defaultBranch}`, { encoding: 'utf8' });
375
+ let defaultBranchSha = safe.child_process.execSync(`git rev-parse ${defaultBranch}`, { encoding: 'utf8' });
375
376
  if (safe.error) return exit(`Failed to get head of ${defaultBranch}: ${safe.error.message}`);
377
+ defaultBranchSha = defaultBranchSha.trim();
376
378
 
377
379
  latestTag = safe.child_process.execSync('git describe --tags --abbrev=0', { encoding: 'utf8' });
378
380
  if (safe.error) return exit(`Failed to get latest tag: ${safe.error.message}`);
381
+ latestTag = latestTag.trim();
379
382
 
380
- const latestTagSha = safe.child_process.execSync(`git rev-list -n 1 ${latestTag}`, { encoding: 'utf8' });
383
+ let latestTagSha = safe.child_process.execSync(`git rev-list -n 1 ${latestTag}`, { encoding: 'utf8' });
381
384
  if (safe.error) return exit(`Failed to get head of ${defaultBranch}: ${safe.error.message}`);
385
+ latestTagSha = latestTagSha.trim();
382
386
 
383
387
  if (defaultBranchSha !== latestTagSha) return exit(`Latest tag ${latestTag} does not match HEAD of ${defaultBranch}`);
384
388
  }
@@ -63,8 +63,8 @@ function getBuildServiceConfig(options) {
63
63
  return buildService;
64
64
  }
65
65
 
66
- async function login(options) {
67
- assert.strictEqual(typeof options, 'object');
66
+ async function login(localOptions, cmd) {
67
+ const options = cmd.optsWithGlobals();
68
68
 
69
69
  const buildServiceConfig = getBuildServiceConfig(options);
70
70
 
package/test/test.js CHANGED
@@ -12,7 +12,6 @@ var child_process = require('child_process'),
12
12
  expect = require('expect.js'),
13
13
  fs = require('fs'),
14
14
  path = require('path'),
15
- rimraf = require('rimraf'),
16
15
  safe = require('safetydance'),
17
16
  util = require('util');
18
17
 
@@ -203,7 +202,7 @@ describe('Pull', function () {
203
202
  });
204
203
 
205
204
  it('can pull a directory', function () {
206
- rimraf.sync('/tmp/pulldir');
205
+ fs.rmSync('/tmp/pulldir', { recursive: true, force: true });
207
206
  safe.fs.mkdirSync('/tmp/pulldir');
208
207
  cli(util.format('pull --app %s /app/code/ /tmp/pulldir', app.id));
209
208
  expect(fs.existsSync('/tmp/pulldir/README.md')).to.be.ok();
@@ -213,7 +212,7 @@ describe('Pull', function () {
213
212
  var result = cli(util.format('exec --app %s md5sum /app/code/node_modules/uglify-js/bin/uglifyjs', app.id));
214
213
  expect(result.output[1]).to.contain(md5('/tmp/pulldir/node_modules/uglify-js/bin/uglifyjs'));
215
214
 
216
- rimraf.sync('/tmp/pulldir');
215
+ fs.rmSync('/tmp/pulldir', { recursive: true, force: true });
217
216
  });
218
217
 
219
218
  it('can pull to directory', function () {