ovsx 0.8.4 → 0.9.0

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
@@ -2,7 +2,20 @@
2
2
 
3
3
  This change log covers only the command line interface (CLI) of Open VSX.
4
4
 
5
- ### v0.8.4 (Mar. 2023)
5
+ ### v0.9.0 (Mar. 2024)
6
+
7
+ #### Breaking Changes
8
+
9
+ - The minimum version of Node.js required is now `18` because of the newer `@vscode/vsce`
10
+
11
+ #### Dependencies
12
+
13
+ - Upgrade `@vscode/vsce` from `2.19.0` to `2.24.0` ([#878](https://github.com/eclipse/openvsx/pull/878))
14
+ - Upgrade `semver` from `7.5.2` to `7.6.0` ([#878](https://github.com/eclipse/openvsx/pull/878))
15
+
16
+ ---
17
+
18
+ ### v0.8.4 (Mar. 2024)
6
19
 
7
20
  #### Dependencies
8
21
 
package/lib/ovsx CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  const semver = require('semver');
4
4
 
5
- if (semver.lt(process.versions.node, '14.0.0')) {
6
- console.error('ovsx requires at least NodeJS version 14. Check your installed version with `node --version`.');
5
+ if (semver.lt(process.versions.node, '18.0.0')) {
6
+ console.error('ovsx requires at least NodeJS version 18. Check your installed version with `node --version`.');
7
7
  process.exit(1);
8
8
  }
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ovsx",
3
- "version": "0.8.4",
3
+ "version": "0.9.0",
4
4
  "description": "Command line interface for Eclipse Open VSX",
5
5
  "keywords": [
6
6
  "cli",
@@ -31,22 +31,22 @@
31
31
  "types": "lib/index",
32
32
  "bin": "lib/ovsx",
33
33
  "engines": {
34
- "node": ">= 14"
34
+ "node": ">= 18"
35
35
  },
36
36
  "dependencies": {
37
- "@vscode/vsce": "^2.19.0",
37
+ "@vscode/vsce": "^2.24.0",
38
38
  "commander": "^6.1.0",
39
39
  "follow-redirects": "^1.14.6",
40
40
  "is-ci": "^2.0.0",
41
41
  "leven": "^3.1.0",
42
- "semver": "^7.5.2",
42
+ "semver": "^7.6.0",
43
43
  "tmp": "^0.2.1"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@types/follow-redirects": "^1.13.1",
47
47
  "@types/is-ci": "^2.0.0",
48
48
  "@types/node": "^10.17.60",
49
- "@types/semver": "^7.3.9",
49
+ "@types/semver": "^7.5.8",
50
50
  "@types/tmp": "^0.1.0",
51
51
  "@typescript-eslint/eslint-plugin": "^5.44.0",
52
52
  "@typescript-eslint/parser": "^5.44.0",
package/src/ovsx CHANGED
@@ -2,8 +2,8 @@
2
2
 
3
3
  const semver = require('semver');
4
4
 
5
- if (semver.lt(process.versions.node, '14.0.0')) {
6
- console.error('ovsx requires at least NodeJS version 14. Check your installed version with `node --version`.');
5
+ if (semver.lt(process.versions.node, '18.0.0')) {
6
+ console.error('ovsx requires at least NodeJS version 18. Check your installed version with `node --version`.');
7
7
  process.exit(1);
8
8
  }
9
9