Skip to content

Commit 719ecd0

Browse files
committed
some fixes
1 parent 174048c commit 719ecd0

File tree

4 files changed

+55
-14
lines changed

4 files changed

+55
-14
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"name": "redis-for-vscode",
33
"version": "0.0.3",
44
"displayName": "Redis for VS Code",
5-
"description": "Redis for Visual Studio Code",
5+
"description": "Visually interact with data and build queries in Redi",
66
"license": "SEE LICENSE IN LICENSE",
77
"main": "dist/extension.js",
88
"l10n": "./l10n",
9-
"publisher": "redis",
9+
"publisher": "Redis",
1010
"pricing": "Free",
1111
"categories": ["Visualization", "Programming Languages"],
1212
"icon": "dist/webviews/resources/256x256.png",
@@ -206,7 +206,7 @@
206206
"@vitest/coverage-v8": "^1.3.1",
207207
"@vitest/ui": "^1.3.1",
208208
"@vscode/l10n-dev": "^0.0.35",
209-
"@vscode/vsce": "^2.32.0",
209+
"@vscode/vsce": "^3.0.0",
210210
"autoprefixer": "^10.4.16",
211211
"cross-env": "^7.0.3",
212212
"esbuild": "^0.19.5",

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export enum ViewId {
99
}
1010

1111
export const MAX_TITLE_KEY_LENGTH = 30
12-
export const EXTENSION_ID = 'redis.redis-for-vscode'
12+
export const EXTENSION_ID = 'Redis.redis-for-vscode'
1313

1414
export const EXTERNAL_LINKS = {
1515
releaseNotes: 'https://github.com/RedisInsight/RedisInsight/releases',

src/webviews/src/modules/eula/Eula.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,6 @@ export const Eula = ({ onSubmitted }: Props) => {
281281

282282
</form>
283283
<div className={styles.footer}>
284-
<div className="flex flex-grow">{l10n.t('Notice: To avoid automatic execution of malicious code, when adding new Workbench plugins, use files from trusted authors only.')}</div>
285284
<div className="flex">
286285
{!submitIsDisabled() && SubmitBtn}
287286
{submitIsDisabled() && (

yarn.lock

Lines changed: 51 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4711,10 +4711,10 @@
47114711
"@vscode/vsce-sign-win32-arm64" "2.0.2"
47124712
"@vscode/vsce-sign-win32-x64" "2.0.2"
47134713

4714-
"@vscode/vsce@^2.32.0":
4715-
version "2.32.0"
4716-
resolved "https://registry.yarnpkg.com/@vscode/vsce/-/vsce-2.32.0.tgz#fc90fc28dc82614a8ab537de591e084b46ad2070"
4717-
integrity sha512-3EFJfsgrSftIqt3EtdRcAygy/OJ3hstyI1cDmIgkU9CFZW5C+3djr6mfosndCUqcVYuyjmxOK1xmFp/Bq7+NIg==
4714+
"@vscode/vsce@^3.0.0":
4715+
version "3.0.0"
4716+
resolved "https://registry.yarnpkg.com/@vscode/vsce/-/vsce-3.0.0.tgz#79fa4a263eb9477d49efb2931d45204e3efbcb78"
4717+
integrity sha512-UKYcC7fcSw6AUK6nlfm8A8WSOA41H3DRAwafCMp9CQpg3K9COAQKkrgQ+dKPhwkFTP7SPZNEiulDpPLwvr5QQQ==
47184718
dependencies:
47194719
"@azure/identity" "^4.1.0"
47204720
"@vscode/vsce-sign" "^2.0.0"
@@ -4724,7 +4724,7 @@
47244724
cockatiel "^3.1.2"
47254725
commander "^6.2.1"
47264726
form-data "^4.0.0"
4727-
glob "^7.0.6"
4727+
glob "^11.0.0"
47284728
hosted-git-info "^4.0.2"
47294729
jsonc-parser "^3.2.0"
47304730
leven "^3.1.0"
@@ -4734,7 +4734,7 @@
47344734
parse-semver "^1.1.1"
47354735
read "^1.0.7"
47364736
semver "^7.5.2"
4737-
tmp "^0.2.1"
4737+
tmp "^0.2.3"
47384738
typed-rest-client "^1.8.4"
47394739
url-join "^4.0.1"
47404740
xml2js "^0.5.0"
@@ -7811,7 +7811,19 @@ glob@^10.0.0, glob@^10.3.10:
78117811
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
78127812
path-scurry "^1.10.1"
78137813

7814-
glob@^7.0.6, glob@^7.1.3, glob@^7.1.4, glob@^7.2.0:
7814+
glob@^11.0.0:
7815+
version "11.0.0"
7816+
resolved "https://registry.yarnpkg.com/glob/-/glob-11.0.0.tgz#6031df0d7b65eaa1ccb9b29b5ced16cea658e77e"
7817+
integrity sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==
7818+
dependencies:
7819+
foreground-child "^3.1.0"
7820+
jackspeak "^4.0.1"
7821+
minimatch "^10.0.0"
7822+
minipass "^7.1.2"
7823+
package-json-from-dist "^1.0.0"
7824+
path-scurry "^2.0.0"
7825+
7826+
glob@^7.1.3, glob@^7.1.4, glob@^7.2.0:
78157827
version "7.2.3"
78167828
resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
78177829
integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
@@ -8669,7 +8681,7 @@ iterator.prototype@^1.1.2:
86698681
reflect.getprototypeof "^1.0.4"
86708682
set-function-name "^2.0.1"
86718683

8672-
jackspeak@2.1.1, jackspeak@^2.3.5:
8684+
jackspeak@2.1.1, jackspeak@^2.3.5, jackspeak@^4.0.1:
86738685
version "2.1.1"
86748686
resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.1.1.tgz#2a42db4cfbb7e55433c28b6f75d8b796af9669cd"
86758687
integrity sha512-juf9stUEwUaILepraGOWIJTLwg48bUnBmRqd2ln2Os1sW987zeoj/hzhbvRB95oMuS2ZTpjULmdwHNX4rzZIZw==
@@ -9363,6 +9375,11 @@ lower-case@^2.0.2:
93639375
dependencies:
93649376
tslib "^2.0.3"
93659377

9378+
lru-cache@^11.0.0:
9379+
version "11.0.0"
9380+
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.0.0.tgz#15d93a196f189034d7166caf9fe55e7384c98a21"
9381+
integrity sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==
9382+
93669383
lru-cache@^5.1.1:
93679384
version "5.1.1"
93689385
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920"
@@ -9637,6 +9654,13 @@ minimalistic-crypto-utils@^1.0.1:
96379654
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
96389655
integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==
96399656

9657+
minimatch@^10.0.0:
9658+
version "10.0.1"
9659+
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-10.0.1.tgz#ce0521856b453c86e25f2c4c0d03e6ff7ddc440b"
9660+
integrity sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==
9661+
dependencies:
9662+
brace-expansion "^2.0.1"
9663+
96409664
minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
96419665
version "3.1.2"
96429666
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
@@ -9680,6 +9704,11 @@ minipass@^5.0.0:
96809704
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c"
96819705
integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==
96829706

9707+
minipass@^7.1.2:
9708+
version "7.1.2"
9709+
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.2.tgz#93a9626ce5e5e66bd4db86849e7515e92340a707"
9710+
integrity sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==
9711+
96839712
minizlib@^2.1.1:
96849713
version "2.1.2"
96859714
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931"
@@ -10250,6 +10279,11 @@ p-try@^2.0.0:
1025010279
resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
1025110280
integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==
1025210281

10282+
package-json-from-dist@^1.0.0:
10283+
version "1.0.0"
10284+
resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz#e501cd3094b278495eb4258d4c9f6d5ac3019f00"
10285+
integrity sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==
10286+
1025310287
pako@~0.2.0:
1025410288
version "0.2.9"
1025510289
resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75"
@@ -10379,6 +10413,14 @@ path-scurry@^1.10.1:
1037910413
lru-cache "^9.1.1 || ^10.0.0"
1038010414
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
1038110415

10416+
path-scurry@^2.0.0:
10417+
version "2.0.0"
10418+
resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.0.tgz#9f052289f23ad8bf9397a2a0425e7b8615c58580"
10419+
integrity sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==
10420+
dependencies:
10421+
lru-cache "^11.0.0"
10422+
minipass "^7.1.2"
10423+
1038210424
path-to-regexp@0.1.7:
1038310425
version "0.1.7"
1038410426
resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
@@ -12456,7 +12498,7 @@ tmp@^0.0.33:
1245612498
dependencies:
1245712499
os-tmpdir "~1.0.2"
1245812500

12459-
tmp@^0.2.1:
12501+
tmp@^0.2.3:
1246012502
version "0.2.3"
1246112503
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.3.tgz#eb783cc22bc1e8bebd0671476d46ea4eb32a79ae"
1246212504
integrity sha512-nZD7m9iCPC5g0pYmcaxogYKggSfLsdxl8of3Q/oIbqCqLLIO9IAF0GWjX1z9NZRHPiXv8Wex4yDCaZsgEw0Y8w==

0 commit comments

Comments
 (0)