@extrahorizon/exh-cli 1.8.0 → 1.8.1

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Extra Horizon CLI changelog
2
2
 
3
+ ### v1.8.1
4
+ * Updated the supported Task Service runtime options
5
+
3
6
  ### v1.8.0
4
7
  * Schemas:
5
8
  * `createMode`, `readMode`, `updateMode` and `deleteMode` have been updated to accept multiple granular options, matching the revamped access mode changes in Data Service `1.4.0`
@@ -6,24 +6,29 @@ const path = require("path");
6
6
  exports.EXH_CONFIG_FILE_DIR = path.join((0, os_1.homedir)(), '/.exh');
7
7
  exports.EXH_CONFIG_FILE = `${exports.EXH_CONFIG_FILE_DIR}/credentials`;
8
8
  exports.runtimeChoices = [
9
+ 'nodejs22.x',
9
10
  'nodejs16.x',
10
- 'nodejs18.x',
11
11
  'nodejs20.x',
12
- 'python3.8',
13
- 'python3.9',
14
- 'python3.10',
15
- 'python3.11',
12
+ 'nodejs18.x',
13
+ 'python3.13',
16
14
  'python3.12',
17
- 'java8.al2',
18
- 'java11',
19
- 'java17',
15
+ 'python3.11',
16
+ 'python3.10',
17
+ 'python3.9',
18
+ 'python3.8',
20
19
  'java21',
21
- 'dotnet6',
22
- 'dotnet7',
20
+ 'java17',
21
+ 'java11',
22
+ 'java8.al2',
23
+ 'dotnet9',
23
24
  'dotnet8',
25
+ 'dotnet7',
26
+ 'dotnet6',
27
+ 'ruby3.4',
28
+ 'ruby3.3',
24
29
  'ruby3.2',
25
- 'provided.al2',
26
30
  'provided.al2023',
31
+ 'provided.al2',
27
32
  ];
28
33
  exports.limits = {
29
34
  time: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extrahorizon/exh-cli",
3
- "version": "1.8.0",
3
+ "version": "1.8.1",
4
4
  "main": "build/index.js",
5
5
  "exports": "./build/index.js",
6
6
  "license": "MIT",