ovsx 0.8.0 → 0.8.2

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/CHANGELOG.md +18 -1
  2. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  This change log covers only the command line interface (CLI) of Open VSX.
4
4
 
5
+ ### v0.8.2 (July 2023)
6
+
7
+ #### Dependencies
8
+
9
+ - Upgrade `vcse` from `2.15.0` to `2.19.0` ([#775](https://github.com/eclipse/openvsx/pull/775))
10
+ - Upgrade `semver` from `5.7.1` to `7.5.2` ([#763](https://github.com/eclipse/openvsx/pull/763))
11
+
12
+ ---
13
+
14
+ ### v0.8.1 (May. 2023)
15
+
16
+ #### Dependencies
17
+
18
+ - Added explicit dependency to `semver` ([#733](https://github.com/eclipse/openvsx/pull/733))
19
+
20
+ ---
21
+
5
22
  ### v0.8.0 (Jan. 2023)
6
23
 
7
24
  #### New Features
@@ -9,7 +26,7 @@ This change log covers only the command line interface (CLI) of Open VSX.
9
26
  - Added CLI parameter `--skip-duplicate` to fail silently if version already exists on the marketplace ([#646](https://github.com/eclipse/openvsx/pull/646))
10
27
 
11
28
  ---
12
-
29
+
13
30
  ### v0.7.1 (Dec. 2022)
14
31
 
15
32
  #### Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ovsx",
3
- "version": "0.8.0",
3
+ "version": "0.8.2",
4
4
  "description": "Command line interface for Eclipse Open VSX",
5
5
  "keywords": [
6
6
  "cli",
@@ -36,11 +36,12 @@
36
36
  "node": ">= 14"
37
37
  },
38
38
  "dependencies": {
39
- "@vscode/vsce": "^2.15.0",
39
+ "@vscode/vsce": "^2.19.0",
40
40
  "commander": "^6.1.0",
41
41
  "follow-redirects": "^1.14.6",
42
42
  "is-ci": "^2.0.0",
43
43
  "leven": "^3.1.0",
44
+ "semver": "^7.5.2",
44
45
  "tmp": "^0.2.1"
45
46
  },
46
47
  "devDependencies": {