Update to VS Code 1.59.0

This commit is contained in:
shati-patel
2022-01-25 18:58:49 +00:00
committed by Shati Patel
parent 19e0058e61
commit b0410ec5de
3 changed files with 14 additions and 11 deletions

View File

@@ -6,7 +6,7 @@
"packages": { "packages": {
"": { "": {
"name": "vscode-codeql", "name": "vscode-codeql",
"version": "1.5.10", "version": "1.5.11",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@octokit/rest": "^18.5.6", "@octokit/rest": "^18.5.6",
@@ -64,7 +64,7 @@
"@types/through2": "^2.0.36", "@types/through2": "^2.0.36",
"@types/tmp": "^0.1.0", "@types/tmp": "^0.1.0",
"@types/unzipper": "~0.10.1", "@types/unzipper": "~0.10.1",
"@types/vscode": "^1.57.0", "@types/vscode": "^1.59.0",
"@types/webpack": "^4.32.1", "@types/webpack": "^4.32.1",
"@types/xml2js": "~0.4.4", "@types/xml2js": "~0.4.4",
"@typescript-eslint/eslint-plugin": "^4.26.0", "@typescript-eslint/eslint-plugin": "^4.26.0",
@@ -105,7 +105,7 @@
"webpack-cli": "^4.6.0" "webpack-cli": "^4.6.0"
}, },
"engines": { "engines": {
"vscode": "^1.57.0" "vscode": "^1.59.0"
} }
}, },
"node_modules/@babel/code-frame": { "node_modules/@babel/code-frame": {
@@ -975,9 +975,9 @@
} }
}, },
"node_modules/@types/vscode": { "node_modules/@types/vscode": {
"version": "1.57.0", "version": "1.59.0",
"resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.57.0.tgz", "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.59.0.tgz",
"integrity": "sha512-FeznBFtIDCWRluojTsi9c3LLcCHOXP5etQfBK42+ixo1CoEAchkw39tuui9zomjZuKfUVL33KZUDIwHZ/xvOkQ==", "integrity": "sha512-Zg38rusx2nU6gy6QdF7v4iqgxNfxzlBlDhrRCjOiPQp+sfaNrp3f9J6OHIhpGNN1oOAca4+9Hq0+8u3jwzPMlQ==",
"dev": true "dev": true
}, },
"node_modules/@types/webpack": { "node_modules/@types/webpack": {
@@ -12788,9 +12788,9 @@
} }
}, },
"@types/vscode": { "@types/vscode": {
"version": "1.57.0", "version": "1.59.0",
"resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.57.0.tgz", "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.59.0.tgz",
"integrity": "sha512-FeznBFtIDCWRluojTsi9c3LLcCHOXP5etQfBK42+ixo1CoEAchkw39tuui9zomjZuKfUVL33KZUDIwHZ/xvOkQ==", "integrity": "sha512-Zg38rusx2nU6gy6QdF7v4iqgxNfxzlBlDhrRCjOiPQp+sfaNrp3f9J6OHIhpGNN1oOAca4+9Hq0+8u3jwzPMlQ==",
"dev": true "dev": true
}, },
"@types/webpack": { "@types/webpack": {

View File

@@ -13,7 +13,7 @@
"url": "https://github.com/github/vscode-codeql" "url": "https://github.com/github/vscode-codeql"
}, },
"engines": { "engines": {
"vscode": "^1.57.0" "vscode": "^1.59.0"
}, },
"categories": [ "categories": [
"Programming Languages" "Programming Languages"
@@ -1057,7 +1057,7 @@
"@types/through2": "^2.0.36", "@types/through2": "^2.0.36",
"@types/tmp": "^0.1.0", "@types/tmp": "^0.1.0",
"@types/unzipper": "~0.10.1", "@types/unzipper": "~0.10.1",
"@types/vscode": "^1.57.0", "@types/vscode": "^1.59.0",
"@types/webpack": "^4.32.1", "@types/webpack": "^4.32.1",
"@types/xml2js": "~0.4.4", "@types/xml2js": "~0.4.4",
"@typescript-eslint/eslint-plugin": "^4.26.0", "@typescript-eslint/eslint-plugin": "^4.26.0",

View File

@@ -192,6 +192,9 @@ describe('helpers', () => {
} }
class MockMemento implements Memento { class MockMemento implements Memento {
keys(): readonly string[] {
throw new Error('Method not implemented.');
}
map = new Map<any, any>(); map = new Map<any, any>();
/** /**