diff --git a/CHANGELOG.md b/CHANGELOG.md index b3a43ebc3..9b6c7aebc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ # Change Log -## NEXT +## 7.0.0 -> Month DD YYYY +> December 20, 2023 + +- [🚫 Bug] Wrong indentation of warning/error messages in console logs +- [🚫 Bug] Failed to write a test for a user webview +- [🚀 Request] Remove deprecated content from Wiki pages +- [🚀 Request] Rename package to comply with VS Code policy +- [🚀 Request] Support VS Code 1.85.x ## 6.0.0 diff --git a/README.md b/README.md index ccb1557da..91707ac1c 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Simply install our package into your extension `devDependencies` to get started: npm install --save-dev vscode-extension-tester@latest ``` -Make sure to check out the [Documentation](#documentation) for detailed instructions. +Make sure to check out the 🔗 [Documentation](#documentation) for detailed instructions. - 📄 [How to set up the tests](../../wiki/Test-Setup) - 📄 [Configuring Mocha](../../wiki/Mocha-Configuration) diff --git a/package-lock.json b/package-lock.json index bb12f7f0d..445d139e6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-extension-tester", - "version": "6.0.0", + "version": "7.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-extension-tester", - "version": "6.0.0", + "version": "7.0.0", "license": "Apache-2.0", "workspaces": [ "page-objects", @@ -22,12 +22,12 @@ "got": "^13.0.0", "hpagent": "^1.2.0", "js-yaml": "^4.1.0", - "monaco-page-objects": "^3.11.0", + "monaco-page-objects": "^3.12.0", "sanitize-filename": "^1.6.3", "selenium-webdriver": "^4.16.0", "targz": "^1.0.1", "unzipper": "^0.10.14", - "vscode-extension-tester-locators": "^3.9.0" + "vscode-extension-tester-locators": "^3.10.0" }, "bin": { "extest": "out/cli.js" diff --git a/package.json b/package.json index 8fcfef22d..11eea1f97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-extension-tester", - "version": "6.0.0", + "version": "7.0.0", "description": "ExTester is a package that is designed to help you run UI tests for your Visual Studio Code extensions using selenium-webdriver.", "icon": "icons/logo.png", "main": "out/extester.js", @@ -63,12 +63,12 @@ "got": "^13.0.0", "hpagent": "^1.2.0", "js-yaml": "^4.1.0", - "monaco-page-objects": "^3.11.0", + "monaco-page-objects": "^3.12.0", "sanitize-filename": "^1.6.3", "selenium-webdriver": "^4.16.0", "targz": "^1.0.1", "unzipper": "^0.10.14", - "vscode-extension-tester-locators": "^3.9.0" + "vscode-extension-tester-locators": "^3.10.0" }, "peerDependencies": { "mocha": ">=5.2.0",