Skip to content

Commit b55974e

Browse files
authored
Minor clean-up items for v0.6.1 release (#363)
1 parent d64e27d commit b55974e

File tree

7 files changed

+1323
-1033
lines changed

7 files changed

+1323
-1033
lines changed

.github/workflows/pr-gated.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ jobs:
1616
node-version: "20"
1717
- run: node -v
1818
- run: npm ci
19-
- run: npm run audit
2019
- run: npm run test:unit-test
2120
- run: npm run vsix
2221
- name: retry 5 times e2e test cases

package-lock.json

Lines changed: 459 additions & 293 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-powerquery-sdk",
33
"displayName": "Power Query SDK",
44
"description": "Power Query Connector SDK",
5-
"version": "0.6.0",
5+
"version": "0.6.1",
66
"author": "Microsoft Corporation",
77
"license": "MIT",
88
"homepage": "https://github.com/microsoft/vscode-powerquery-sdk#readme",
@@ -412,13 +412,13 @@
412412
"sinon": "^14.0.2",
413413
"ts-loader": "^9.5.1",
414414
"ts-node": "^10.9.2",
415-
"tsconfig-paths-webpack-plugin": "^3.5.2",
415+
"tsconfig-paths-webpack-plugin": "^4.2.0",
416416
"typescript": "^4.9.5",
417417
"vinyl-fs": "^4.0.0",
418418
"vscode-extension-tester": "5.10.0",
419419
"vscode-nls-dev": "^4.0.4",
420-
"webpack": "^5.90.3",
421-
"webpack-cli": "^4.10.0"
420+
"webpack": "^5.99.9",
421+
"webpack-cli": "^6.0.1"
422422
},
423423
"lint-staged": {
424424
"!(src)/**/*.{ts}": [
@@ -430,4 +430,4 @@
430430
"pre-commit": "lint-staged"
431431
}
432432
}
433-
}
433+
}

src/test/suite/schema.test.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -208,15 +208,6 @@ suite("Schema Management Tests", () => {
208208
});
209209
});
210210

211-
test("removeUserSettingsSchema handles missing file gracefully", async () => {
212-
await TestUtils.CreateAsyncTestResult(() => {
213-
// This should not throw an error even if the file doesn't exist
214-
assert.doesNotThrow(() => {
215-
schemaManagementService.removeUserSettingsSchema();
216-
}, "removeUserSettingsSchema should handle missing files gracefully");
217-
});
218-
});
219-
220211
test("VS Code JSON language service recognizes testsettings files", async () => {
221212
await TestUtils.CreateAsyncTestResult(async () => {
222213
const testFileName = "vscode-test.testsettings.json";

0 commit comments

Comments
 (0)