ovsx 0.10.6 → 0.10.8
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/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +78 -74
- package/src/ovsx +0 -0
- package/src/version.ts +1 -1
- package/CHANGELOG.md +0 -278
package/lib/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "0.10.
|
|
1
|
+
export declare const LIB_VERSION = "0.10.8";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/lib/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,75 +1,79 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
2
|
+
"name": "ovsx",
|
|
3
|
+
"version": "0.10.8",
|
|
4
|
+
"description": "Command line interface for Eclipse Open VSX",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"cli",
|
|
7
|
+
"vscode",
|
|
8
|
+
"extensions",
|
|
9
|
+
"publish"
|
|
10
|
+
],
|
|
11
|
+
"license": "EPL-2.0",
|
|
12
|
+
"homepage": "https://open-vsx.org",
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/eclipse/openvsx.git",
|
|
16
|
+
"directory": "cli"
|
|
17
|
+
},
|
|
18
|
+
"bugs": "https://github.com/eclipse/openvsx/issues",
|
|
19
|
+
"contributors": [
|
|
20
|
+
{
|
|
21
|
+
"name": "Miro Spönemann",
|
|
22
|
+
"email": "miro.spoenemann@typefox.io",
|
|
23
|
+
"url": "https://www.typefox.io"
|
|
24
|
+
}
|
|
25
|
+
],
|
|
26
|
+
"files": [
|
|
27
|
+
"lib",
|
|
28
|
+
"src"
|
|
29
|
+
],
|
|
30
|
+
"main": "lib/index",
|
|
31
|
+
"types": "lib/index",
|
|
32
|
+
"bin": "lib/ovsx",
|
|
33
|
+
"engines": {
|
|
34
|
+
"node": ">= 20"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@vscode/vsce": "^3.2.1",
|
|
38
|
+
"commander": "^6.2.1",
|
|
39
|
+
"follow-redirects": "^1.14.6",
|
|
40
|
+
"is-ci": "^2.0.0",
|
|
41
|
+
"leven": "^3.1.0",
|
|
42
|
+
"semver": "^7.6.0",
|
|
43
|
+
"tmp": "^0.2.3",
|
|
44
|
+
"yauzl-promise": "^4.0.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@eslint/eslintrc": "^3.2.0",
|
|
48
|
+
"@eslint/js": "^9.15.0",
|
|
49
|
+
"@stylistic/eslint-plugin": "^2.11.0",
|
|
50
|
+
"@types/follow-redirects": "^1.13.1",
|
|
51
|
+
"@types/is-ci": "^2.0.0",
|
|
52
|
+
"@types/node": "^20.14.8",
|
|
53
|
+
"@types/semver": "^7.5.8",
|
|
54
|
+
"@types/tmp": "^0.2.2",
|
|
55
|
+
"@types/yauzl-promise": "^4",
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
|
57
|
+
"@typescript-eslint/parser": "^8.15.0",
|
|
58
|
+
"eslint": "^9.15.0",
|
|
59
|
+
"limiter": "^2.1.0",
|
|
60
|
+
"rimraf": "^6.0.1",
|
|
61
|
+
"typescript": "^5.6.3"
|
|
62
|
+
},
|
|
63
|
+
"resolutions": {
|
|
64
|
+
"glob": "^11.1.0",
|
|
65
|
+
"jws": "^4.0.1"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"clean": "rimraf lib",
|
|
69
|
+
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
|
|
70
|
+
"build": "tsc -p ./tsconfig.json && yarn run lint && cp src/ovsx lib/ovsx",
|
|
71
|
+
"watch": "tsc -w -p ./tsconfig.json",
|
|
72
|
+
"lint": "eslint -c ./configs/eslintrc.mjs src",
|
|
73
|
+
"prepare": "yarn run clean && yarn run prebuild && yarn run build",
|
|
74
|
+
"publish:next": "yarn npm publish --tag next",
|
|
75
|
+
"publish:latest": "yarn npm publish --tag latest",
|
|
76
|
+
"load-extensions": "node scripts/load-test-extensions.js"
|
|
77
|
+
},
|
|
78
|
+
"packageManager": "yarn@4.9.1"
|
|
79
|
+
}
|
package/src/ovsx
CHANGED
|
File without changes
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const LIB_VERSION = "0.10.
|
|
1
|
+
export const LIB_VERSION = "0.10.8";
|
package/CHANGELOG.md
DELETED
|
@@ -1,278 +0,0 @@
|
|
|
1
|
-
## Eclipse Open VSX Change Log
|
|
2
|
-
|
|
3
|
-
This change log covers only the command line interface (CLI) of Open VSX.
|
|
4
|
-
|
|
5
|
-
### v0.10.6 (Seo. 2025)
|
|
6
|
-
|
|
7
|
-
#### Dependencies
|
|
8
|
-
|
|
9
|
-
- Upgrade `tar-fs` from `2.1.3` to `2.1.4` ([#1353](https://github.com/eclipse/openvsx/pull/1353))
|
|
10
|
-
- Upgrade `tmp` from `0.2.3` to `0.2.4` ([#1304](https://github.com/eclipse/openvsx/pull/1304))
|
|
11
|
-
- Upgrade `form-data` from `4.0.0` to `4.0.4` ([#1291](https://github.com/eclipse/openvsx/pull/1291))
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
### v0.10.5 (Jul. 2025)
|
|
16
|
-
|
|
17
|
-
#### Dependencies
|
|
18
|
-
|
|
19
|
-
- Upgrade `brace-expansion` from `2.0.1` to `2.0.2` ([#1273](https://github.com/eclipse/openvsx/pull/1273))
|
|
20
|
-
- Upgrade `brace-expansion` from `1.1.11` to `1.1.12` ([#1261](https://github.com/eclipse/openvsx/pull/1261))
|
|
21
|
-
|
|
22
|
-
---
|
|
23
|
-
|
|
24
|
-
### v0.10.4 (Jun. 2025)
|
|
25
|
-
|
|
26
|
-
#### Dependencies
|
|
27
|
-
|
|
28
|
-
- Upgrade `tar-fs` from `2.1.2` to `2.1.3` ([#1252](https://github.com/eclipse/openvsx/pull/1252))
|
|
29
|
-
|
|
30
|
-
---
|
|
31
|
-
|
|
32
|
-
### v0.10.3 (Jun. 2025)
|
|
33
|
-
|
|
34
|
-
#### Bug Fixes
|
|
35
|
-
|
|
36
|
-
- Use nullish coalescing ([#1233](https://github.com/eclipse/openvsx/pull/#1233))
|
|
37
|
-
- Move personal access token functionality to `pat.ts` ([#1225](https://github.com/eclipse/openvsx/pull/#1225))
|
|
38
|
-
- Reduce nested functions in `zip.ts` ([#1223](https://github.com/eclipse/openvsx/pull/#1223))
|
|
39
|
-
- Split command and options ([#1222](https://github.com/eclipse/openvsx/pull/#1222))
|
|
40
|
-
- Move PAT functionality from `util.ts` to `login.ts` ([#1220](https://github.com/eclipse/openvsx/pull/#1220))
|
|
41
|
-
- Expected the Promise rejection reason to be an Error ([#1197](https://github.com/eclipse/openvsx/pull/1197))
|
|
42
|
-
|
|
43
|
-
#### Dependencies
|
|
44
|
-
|
|
45
|
-
- Replace `yauzl` with `yauzl-promise` ([#1226](https://github.com/eclipse/openvsx/pull/1226))
|
|
46
|
-
- Upgrade `yarn` from `4.5.1` to `4.9.1` ([#1190](https://github.com/eclipse/openvsx/pull/1190))
|
|
47
|
-
|
|
48
|
-
---
|
|
49
|
-
|
|
50
|
-
### v0.10.2 (Apr. 2025)
|
|
51
|
-
|
|
52
|
-
#### Dependencies
|
|
53
|
-
|
|
54
|
-
- Upgrade `tar-fs` from `2.1.1` to `2.1.2` ([#1163](https://github.com/eclipse/openvsx/pull/1163))
|
|
55
|
-
|
|
56
|
-
---
|
|
57
|
-
|
|
58
|
-
### v0.10.1 (Nov. 2024)
|
|
59
|
-
|
|
60
|
-
#### Dependencies
|
|
61
|
-
|
|
62
|
-
- Upgrade `@vscode/vsce` from `3.1.0` to `3.2.1` ([#1047](https://github.com/eclipse/openvsx/pull/1047))
|
|
63
|
-
|
|
64
|
-
---
|
|
65
|
-
|
|
66
|
-
### v0.10.0 (Oct. 2024)
|
|
67
|
-
|
|
68
|
-
#### New Features
|
|
69
|
-
|
|
70
|
-
- Added `login` command to add a namespace to the list of known namespaces ([#1012](https://github.com/eclipse/openvsx/pull/1012))
|
|
71
|
-
- Added `logout` command to remove a namespace from the list of known namespaces ([#1012](https://github.com/eclipse/openvsx/pull/1012))
|
|
72
|
-
- Added CLI parameter `--packageVersion` to set the version of the provided VSIX packages ([#1013](https://github.com/eclipse/openvsx/pull/1013))
|
|
73
|
-
|
|
74
|
-
#### Dependencies
|
|
75
|
-
|
|
76
|
-
- Added dependency to `yauzl` ([#1012](https://github.com/eclipse/openvsx/pull/1012))
|
|
77
|
-
|
|
78
|
-
---
|
|
79
|
-
|
|
80
|
-
### v0.9.5 (Sep. 2024)
|
|
81
|
-
|
|
82
|
-
#### Breaking Changes
|
|
83
|
-
|
|
84
|
-
- The minimum version of Node.js required is now `20` because of the newer `@vscode/vsce`
|
|
85
|
-
|
|
86
|
-
#### Dependencies
|
|
87
|
-
|
|
88
|
-
- Upgrade `@vscode/vsce` from `2.25.0` to `3.1.0` ([#994](https://github.com/eclipse/openvsx/pull/994))
|
|
89
|
-
- Upgrade `commander` from `6.1.0` to `6.2.1` ([#994](https://github.com/eclipse/openvsx/pull/994))
|
|
90
|
-
- Upgrade `tmp` from `0.2.1` to `0.2.3` ([#994](https://github.com/eclipse/openvsx/pull/994))
|
|
91
|
-
|
|
92
|
-
---
|
|
93
|
-
|
|
94
|
-
### v0.9.4 (Sep. 2024)
|
|
95
|
-
|
|
96
|
-
#### Dependencies
|
|
97
|
-
|
|
98
|
-
- Upgrade `micromatch` from `4.0.5` to `4.0.8` ([#978](https://github.com/eclipse/openvsx/pull/978))
|
|
99
|
-
|
|
100
|
-
---
|
|
101
|
-
|
|
102
|
-
### v0.9.2 (July 2024)
|
|
103
|
-
|
|
104
|
-
#### Bug Fixes
|
|
105
|
-
|
|
106
|
-
- Remove default universal for get operation ([#944](https://github.com/eclipse/openvsx/pull/944))
|
|
107
|
-
|
|
108
|
-
#### Dependencies
|
|
109
|
-
|
|
110
|
-
- Upgrade `braces` from `3.0.2` to `3.0.3` ([#953](https://github.com/eclipse/openvsx/pull/953))
|
|
111
|
-
|
|
112
|
-
---
|
|
113
|
-
|
|
114
|
-
### v0.9.1 (Apr. 2024)
|
|
115
|
-
|
|
116
|
-
#### Bug Fixes
|
|
117
|
-
|
|
118
|
-
- Add `BufferEncoding` type to parameter ([#896](https://github.com/eclipse/openvsx/pull/896))
|
|
119
|
-
- Lower the minimum version of Node.js required from `18` to `16` ([microsoft/vscode-vsce#944](https://github.com/microsoft/vscode-vsce/issues/944))
|
|
120
|
-
|
|
121
|
-
#### Dependencies
|
|
122
|
-
|
|
123
|
-
- Upgrade `@vscode/vsce` from `2.24.0` to `2.25.0` ([#896](https://github.com/eclipse/openvsx/pull/896))
|
|
124
|
-
- Upgrade `tar` from `6.2.0` to `6.2.1` ([#893](https://github.com/eclipse/openvsx/pull/893))
|
|
125
|
-
|
|
126
|
-
---
|
|
127
|
-
|
|
128
|
-
### v0.9.0 (Mar. 2024)
|
|
129
|
-
|
|
130
|
-
#### Breaking Changes
|
|
131
|
-
|
|
132
|
-
- The minimum version of Node.js required is now `18` because of the newer `@vscode/vsce`
|
|
133
|
-
|
|
134
|
-
#### Dependencies
|
|
135
|
-
|
|
136
|
-
- Upgrade `@vscode/vsce` from `2.19.0` to `2.24.0` ([#878](https://github.com/eclipse/openvsx/pull/878))
|
|
137
|
-
- Upgrade `semver` from `7.5.2` to `7.6.0` ([#878](https://github.com/eclipse/openvsx/pull/878))
|
|
138
|
-
|
|
139
|
-
---
|
|
140
|
-
|
|
141
|
-
### v0.8.4 (Mar. 2024)
|
|
142
|
-
|
|
143
|
-
#### Dependencies
|
|
144
|
-
|
|
145
|
-
- Upgrade `follow-redirects` from `1.14.8` to `1.15.6` ([#869](https://github.com/eclipse/openvsx/pull/869))
|
|
146
|
-
- Upgrade `ip` from `2.0.0` to `2.0.1` ([#858](https://github.com/eclipse/openvsx/pull/858))
|
|
147
|
-
|
|
148
|
-
---
|
|
149
|
-
|
|
150
|
-
### v0.8.3 (Aug. 2023)
|
|
151
|
-
|
|
152
|
-
#### Dependencies
|
|
153
|
-
|
|
154
|
-
- Upgrade `yarn` from `1.22.19` to `3.6.1` ([#793](https://github.com/eclipse/openvsx/pull/793))
|
|
155
|
-
- Upgrade `word-wrap` from `1.2.3` to `1.2.4` ([#787](https://github.com/eclipse/openvsx/pull/787))
|
|
156
|
-
|
|
157
|
-
---
|
|
158
|
-
|
|
159
|
-
### v0.8.2 (July 2023)
|
|
160
|
-
|
|
161
|
-
#### Dependencies
|
|
162
|
-
|
|
163
|
-
- Upgrade `vcse` from `2.15.0` to `2.19.0` ([#775](https://github.com/eclipse/openvsx/pull/775))
|
|
164
|
-
- Upgrade `semver` from `5.7.1` to `7.5.2` ([#763](https://github.com/eclipse/openvsx/pull/763))
|
|
165
|
-
|
|
166
|
-
---
|
|
167
|
-
|
|
168
|
-
### v0.8.1 (May. 2023)
|
|
169
|
-
|
|
170
|
-
#### Dependencies
|
|
171
|
-
|
|
172
|
-
- Added explicit dependency to `semver` ([#733](https://github.com/eclipse/openvsx/pull/733))
|
|
173
|
-
|
|
174
|
-
---
|
|
175
|
-
|
|
176
|
-
### v0.8.0 (Jan. 2023)
|
|
177
|
-
|
|
178
|
-
#### New Features
|
|
179
|
-
|
|
180
|
-
- Added CLI parameter `--skip-duplicate` to fail silently if version already exists on the marketplace ([#646](https://github.com/eclipse/openvsx/pull/646))
|
|
181
|
-
|
|
182
|
-
---
|
|
183
|
-
|
|
184
|
-
### v0.7.1 (Dec. 2022)
|
|
185
|
-
|
|
186
|
-
#### Dependencies
|
|
187
|
-
|
|
188
|
-
- Migrated from deprecated `vcse` to `@vscode/vsce` ([#637](https://github.com/eclipse/openvsx/pull/637))
|
|
189
|
-
|
|
190
|
-
---
|
|
191
|
-
|
|
192
|
-
### v0.7.0 (Dec. 2022)
|
|
193
|
-
|
|
194
|
-
#### New Features
|
|
195
|
-
|
|
196
|
-
- Added CLI parameter `--no-dependencies` to disable dependency detection ([#635](https://github.com/eclipse/openvsx/pull/635))
|
|
197
|
-
|
|
198
|
-
#### Dependencies
|
|
199
|
-
|
|
200
|
-
- Upgrade `vcse` from `2.7.0` to `2.15.0` ([#635](https://github.com/eclipse/openvsx/pull/635))
|
|
201
|
-
|
|
202
|
-
---
|
|
203
|
-
|
|
204
|
-
### v0.6.0 (Nov. 2022)
|
|
205
|
-
|
|
206
|
-
#### New Features
|
|
207
|
-
|
|
208
|
-
- Added verify-pat command ([#624](https://github.com/eclipse/openvsx/pull/624))
|
|
209
|
-
|
|
210
|
-
#### Dependencies
|
|
211
|
-
|
|
212
|
-
- Upgrade `vcse` from `2.6.3` to `2.7.0` ([#621](https://github.com/eclipse/openvsx/pull/621))
|
|
213
|
-
|
|
214
|
-
---
|
|
215
|
-
|
|
216
|
-
### v0.5.0 (Mar. 2022)
|
|
217
|
-
|
|
218
|
-
#### New Features
|
|
219
|
-
|
|
220
|
-
- Added CLI parameter `--target` to support target platforms ([#406](https://github.com/eclipse/openvsx/pull/406))
|
|
221
|
-
|
|
222
|
-
---
|
|
223
|
-
|
|
224
|
-
### v0.4.0 (Feb. 2022)
|
|
225
|
-
|
|
226
|
-
#### New Features
|
|
227
|
-
|
|
228
|
-
- Added CLI parameter `--pre-release` to support pre-releases ([#410](https://github.com/eclipse/openvsx/pull/410))
|
|
229
|
-
|
|
230
|
-
---
|
|
231
|
-
|
|
232
|
-
### v0.3.0 (Jan. 2022)
|
|
233
|
-
|
|
234
|
-
#### Breaking Changes
|
|
235
|
-
|
|
236
|
-
- The minimum version of Node.js required is now `14` because of the newer `vsce`
|
|
237
|
-
|
|
238
|
-
#### Dependencies
|
|
239
|
-
|
|
240
|
-
- Upgrade `vsce` from `1.97.0` to `2.6.3` ([#403](https://github.com/eclipse/openvsx/pull/403))
|
|
241
|
-
- Upgrade `follow-redirects`
|
|
242
|
-
- Upgrade `nth-check`
|
|
243
|
-
|
|
244
|
-
---
|
|
245
|
-
|
|
246
|
-
### v0.2.1 (Sep. 2021)
|
|
247
|
-
|
|
248
|
-
#### New Features
|
|
249
|
-
|
|
250
|
-
- Also accept `LICENCE` files (alternative spelling to `LICENSE`) ([#307](https://github.com/eclipse/openvsx/pull/307))
|
|
251
|
-
- Remove `--web` option (it will now be inferred from the `package.json` file)
|
|
252
|
-
|
|
253
|
-
#### Dependencies
|
|
254
|
-
|
|
255
|
-
- Upgrade `vsce` from `1.93.0` to `1.97.0`
|
|
256
|
-
|
|
257
|
-
---
|
|
258
|
-
|
|
259
|
-
### v0.2.0 (Jun. 2021)
|
|
260
|
-
|
|
261
|
-
#### New Features
|
|
262
|
-
|
|
263
|
-
- Added CLI parameter `--web` for web extensions ([#262](https://github.com/eclipse/openvsx/pull/262))
|
|
264
|
-
|
|
265
|
-
#### Bug Fixes
|
|
266
|
-
|
|
267
|
-
- Fixed handling of unknown commands ([#302](https://github.com/eclipse/openvsx/issues/302))
|
|
268
|
-
|
|
269
|
-
#### Dependencies
|
|
270
|
-
|
|
271
|
-
- Updated the `vsce` dependency from 1.84.0 to 1.93.0 ([#300](https://github.com/eclipse/openvsx/issues/300))
|
|
272
|
-
- Added explicit dependency to `tmp` ([#254](https://github.com/eclipse/openvsx/issues/254))
|
|
273
|
-
|
|
274
|
-
---
|
|
275
|
-
|
|
276
|
-
### v0.1.0 (Apr. 2021)
|
|
277
|
-
|
|
278
|
-
First release of Open VSX with the Eclipse Foundation.
|