diff --git a/CHANGELOG.md b/CHANGELOG.md index 88654bfae5..8b825bdb4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,22 @@ +## 1.27.0 - 16 October 2023 +### Added +- Enhanced registries functionality: [#869](https://github.com/microsoft/vscode-docker/issues/869) + - Allow third party providers to contribute to the registries view. + - Added GitHub Registries support. + - GitLab support will be moved to a separate extension. We will provide a link to install once it's published. + +### Fixed +- Resolved issues with opening .NET web apps in browsers built with .NET SDK containers. [#4006](https://github.com/microsoft/vscode-docker/issues/4006) +- Fixed several Dockerfile language server issues. [#4056](https://github.com/microsoft/vscode-docker/issues/4056), [#4054](https://github.com/microsoft/vscode-docker/issues/4054), [#4051](https://github.com/microsoft/vscode-docker/issues/4051), [#4012](https://github.com/microsoft/vscode-docker/issues/4012) + ## 1.26.1 - 13 September 2023 ### Added -- Updated .NET Dockerfile scaffolding to utilize the latest .NET 8 image names. (https://github.com/microsoft/vscode-docker/issues/4015) -- Added support for multiple .dockerignore file naming conventions specific to language modes. (https://github.com/microsoft/vscode-docker/issues/4059) -- Integrated the container client package. (https://github.com/microsoft/vscode-docker/pull/3982) +- Updated .NET Dockerfile scaffolding to utilize the latest .NET 8 image names. [#4015](https://github.com/microsoft/vscode-docker/issues/4015) +- Added support for multiple .dockerignore file naming conventions specific to language modes. [#4059](https://github.com/microsoft/vscode-docker/issues/4059) +- Integrated the container client package. [#3982](https://github.com/microsoft/vscode-docker/pull/3982) ### Fixed -- Enhanced debugging experience on arm64 machines. (https://github.com/microsoft/vscode-docker/issues/4040) +- Enhanced debugging experience on arm64 machines. [#4040](https://github.com/microsoft/vscode-docker/issues/4040) ## 1.26.0 - 10 July 2023 ### Added diff --git a/package-lock.json b/package-lock.json index 1b91afb8fe..acdd49672f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-docker", - "version": "1.26.6-alpha", + "version": "1.27.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-docker", - "version": "1.26.6-alpha", + "version": "1.27.0", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { "@azure/arm-authorization": "^9.0.0", diff --git a/package.json b/package.json index 6efa19c64b..f98e14b872 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-docker", - "version": "1.26.6-alpha", + "version": "1.27.0", "publisher": "ms-azuretools", "displayName": "Docker", "description": "Makes it easy to create, manage, and debug containerized applications.",