diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f8b39df87..17ed0925dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.25.0 - 10 April 2023 + +### Added +* Support has been added for removing image / container group(s). [#3492](https://github.com/microsoft/vscode-docker/issues/3492) +* Support has been added for `--platform` flag in docker-build task. [#3870](https://github.com/microsoft/vscode-docker/issues/3870) +* Support has been added for grouping containers by custom label. [#3837](https://github.com/microsoft/vscode-docker/issues/3837) + +### Fixed +* Compose start / stop options no longer show when Docker is not in compose group mode. [#3495](https://github.com/microsoft/vscode-docker/issues/3495) +* Terminal output is improved when debugging .NET projects. [#3691](https://github.com/microsoft/vscode-docker/issues/3691) +* Log streaming is improved by resembling actual streaming. [#3616](https://github.com/microsoft/vscode-docker/issues/3616) +* The slower loading time for containers has been improved by adding the `--size=false` flag. [#3865](https://github.com/microsoft/vscode-docker/pull/3865) + ## 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) diff --git a/NOTICE.html b/NOTICE.html index 6c9281013d..bf348d98fd 100644 --- a/NOTICE.html +++ b/NOTICE.html @@ -2156,7 +2156,8 @@

NOTICES AND INFORMATION

@azure/core-tracing 1.0.0-preview.13 - MIT

https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/core/core-tracing/README.md

- +
         The MIT License (MIT)
 
@@ -2257,7 +2258,8 @@ 

NOTICES AND INFORMATION

@azure/logger 1.0.3 - MIT

https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/logger/README.md

- +
         The MIT License (MIT)
 
@@ -5551,6 +5553,26 @@ 

NOTICES AND INFORMATION

+
  • +
    + + simple-git 3.16.0 - MIT + +

    https://github.com/steveukx/git-js#readme

    + +
    +        MIT License
    +
    +Copyright (c) <year> <copyright holders>
    +
    +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
    +
    +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
    +
    +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
    +        
    +
    +
  • diff --git a/package-lock.json b/package-lock.json index 040589b0e1..20aca5b4a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-docker", - "version": "1.24.1-alpha", + "version": "1.25.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "vscode-docker", - "version": "1.24.1-alpha", + "version": "1.25.0", "license": "SEE LICENSE IN LICENSE.md", "dependencies": { "@azure/arm-authorization": "^8.3.3", diff --git a/package.json b/package.json index 9d15d3df83..a33734e476 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vscode-docker", - "version": "1.24.1-alpha", + "version": "1.25.0", "publisher": "ms-azuretools", "displayName": "Docker", "description": "Makes it easy to create, manage, and debug containerized applications.",