Skip to content

Commit

Permalink
Merge pull request #994 from amvanbaren/feature/issue-992
Browse files Browse the repository at this point in the history
ovsx 0.9.5
  • Loading branch information
amvanbaren committed Sep 25, 2024
2 parents 20c549e + 987ccba commit 0e3e6c6
Show file tree
Hide file tree
Showing 3 changed files with 603 additions and 59 deletions.
14 changes: 14 additions & 0 deletions cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

This change log covers only the command line interface (CLI) of Open VSX.

### v0.9.5 (Sep. 2024)

#### Breaking Changes

- The minimum version of Node.js required is now `20` because of the newer `@vscode/vsce`

#### Dependencies

- Upgrade `@vscode/vsce` from `2.25.0` to `3.1.0` ([#994](https://github.com/eclipse/openvsx/pull/994))
- Upgrade `commander` from `6.1.0` to `6.2.1` ([#994](https://github.com/eclipse/openvsx/pull/994))
- Upgrade `tmp` from `0.2.1` to `0.2.3` ([#994](https://github.com/eclipse/openvsx/pull/994))

---

### v0.9.4 (Sep. 2024)

#### Dependencies
Expand Down
14 changes: 7 additions & 7 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ovsx",
"version": "0.9.4",
"version": "0.9.5",
"description": "Command line interface for Eclipse Open VSX",
"keywords": [
"cli",
Expand Down Expand Up @@ -31,23 +31,23 @@
"types": "lib/index",
"bin": "lib/ovsx",
"engines": {
"node": ">= 16"
"node": ">= 20"
},
"dependencies": {
"@vscode/vsce": "^2.25.0",
"commander": "^6.1.0",
"@vscode/vsce": "^3.1.0",
"commander": "^6.2.1",
"follow-redirects": "^1.14.6",
"is-ci": "^2.0.0",
"leven": "^3.1.0",
"semver": "^7.6.0",
"tmp": "^0.2.1"
"tmp": "^0.2.3"
},
"devDependencies": {
"@types/follow-redirects": "^1.13.1",
"@types/is-ci": "^2.0.0",
"@types/node": "^16.11.7",
"@types/node": "^20.14.8",
"@types/semver": "^7.5.8",
"@types/tmp": "^0.1.0",
"@types/tmp": "^0.2.2",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
Expand Down
Loading

0 comments on commit 0e3e6c6

Please sign in to comment.