cloudron 8.2.4 → 8.2.5

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.
Files changed (2) hide show
  1. package/bin/cloudron +2 -0
  2. package/package.json +5 -5
package/bin/cloudron CHANGED
@@ -417,6 +417,7 @@ const versionsCommand = program.command('versions').description('Commands for pu
417
417
 
418
418
  versionsCommand.command('add')
419
419
  .description('Add the current build to version file')
420
+ .option('-i, --image <image>', 'Docker image')
420
421
  .option('--state <state>', 'Publish state (published or testing)')
421
422
  .action(versionsActions.addOrUpdate);
422
423
 
@@ -435,6 +436,7 @@ versionsCommand.command('revoke')
435
436
 
436
437
  versionsCommand.command('update')
437
438
  .description('Update existing version')
439
+ .option('-i, --image <image>', 'Docker image')
438
440
  .option('--version <version>', 'Version to update')
439
441
  .option('--state <state>', 'Publish state (published or testing)')
440
442
  .action(versionsActions.addOrUpdate);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cloudron",
3
- "version": "8.2.4",
3
+ "version": "8.2.5",
4
4
  "license": "MIT",
5
5
  "description": "Cloudron Commandline Tool",
6
6
  "type": "module",
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "author": "Cloudron Developers <support@cloudron.io>",
19
19
  "dependencies": {
20
- "@cloudron/manifest-format": "^6.2.0",
20
+ "@cloudron/manifest-format": "^6.2.1",
21
21
  "@cloudron/safetydance": "^3.0.1",
22
22
  "@cloudron/superagent": "^2.1.1",
23
23
  "commander": "^14.0.3",
@@ -27,7 +27,7 @@
27
27
  "eventsource": "^4.1.0",
28
28
  "micromatch": "^4.0.8",
29
29
  "open": "^11.0.0",
30
- "semver": "^7.7.4",
30
+ "semver": "^7.8.0",
31
31
  "tar-fs": "^3.1.2"
32
32
  },
33
33
  "engines": {
@@ -35,8 +35,8 @@
35
35
  },
36
36
  "devDependencies": {
37
37
  "@eslint/js": "^10.0.1",
38
- "eslint": "^10.2.1",
39
- "globals": "^17.5.0",
38
+ "eslint": "^10.3.0",
39
+ "globals": "^17.6.0",
40
40
  "mocha": "^11.7.5"
41
41
  }
42
42
  }