diff --git a/CHANGELOG.md b/CHANGELOG.md index b29245443b..7f8b39df87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.24.0 - 22 February 2023 +### Added +* Support has been added for deploying a container image from an image registry (Azure Container Registry, Docker Hub, etc.) to Azure Container Apps. This feature also requires the [Azure Container Apps extension](https://marketplace.visualstudio.com/items?itemName=ms-azuretools.vscode-azurecontainerapps). [#3535](https://github.com/microsoft/vscode-docker/issues/3535) +* Some more advanced diagnostic logging is available in the Output window, by using the command "Developer: Set Log Level...", choosing Docker, and changing the log level to "Debug" or "Trace". [#3809](https://github.com/microsoft/vscode-docker/pull/3809) + +### Fixed +* Fixed a longstanding issue with debugging some Python apps when workspaces were used (as opposed to workspace folders). [#3641](https://github.com/microsoft/vscode-docker/issues/3641) +* By default, Python apps will now be scaffolded with Python 3.10 base images (up from Python 3.8). [#3736](https://github.com/microsoft/vscode-docker/issues/3736) + ## 1.23.3 - 14 December 2022 ### Fixed * Old versions of Docker Engine should no longer show "Invalid JSON" errors in the container view. [#3724](https://github.com/microsoft/vscode-docker/issues/3724) diff --git a/package-lock.json b/package-lock.json index a0d538ba91..cb6bf5648a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-docker", - "version": "1.23.5-alpha", + "version": "1.24.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-docker", - "version": "1.23.5-alpha", + "version": "1.24.0", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { "@azure/arm-authorization": "^8.3.3", diff --git a/package.json b/package.json index be09c0ce92..69a6d56144 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-docker", - "version": "1.23.5-alpha", + "version": "1.24.0", "publisher": "ms-azuretools", "displayName": "Docker", "description": "Makes it easy to create, manage, and debug containerized applications.",