vscode-docker/CHANGELOG.md

65 строки
3.4 KiB
Markdown
Исходник Обычный вид История

## 0.0.18 - 18 Sept 2017
* Add configuration option (`"docker.showExplorer": false`) to globally turn off or on the Explorer contribution
2017-09-17 00:45:57 +03:00
## 0.0.17 - 16 Sept 2017
2017-08-01 21:10:16 +03:00
* Add `docker inspect` command
2017-09-16 19:54:07 +03:00
* Gracefully handle when Docker is not running
* Add Explorer contribution, letting you view Images and Containers in the Explorer viewlet.
2017-09-15 04:34:35 +03:00
* Add `--rm` to `docker build` to remove intermediate images
* Thanks to @rcjsuen, moved to the [Dockerfile Language Server](https://github.com/rcjsuen/dockerfile-language-server-nodejs)
* Update thirdpartynotices.txt, README.md to reflect changes
2017-08-01 21:10:16 +03:00
2017-06-09 21:46:49 +03:00
## 0.0.16 - 09 June 2017
* Update snippet syntax to be in accordance with the [stricter snippet syntax](https://code.visualstudio.com/updates/v1_13#_strict-snippets)
* Moved source code to support async/await (important if you want to make PRs!)
2017-05-24 17:41:37 +03:00
## 0.0.15 - 25 May 2017
* Updated both the `Docker: Run` and `Docker: Run Interactive` commands to automatically publish the ports that the specified image exposes
* Updated the `Docker: Run` command to run the specified container in the background
* Updated the `Docker: Add docker files to workspace` command to generate a `.dockerignore` file
* Updated the `Docker: Azure CLI` command to fully support running `az acs` commands
2016-12-13 05:07:00 +03:00
2017-05-09 02:24:10 +03:00
## 0.0.14 - 08 May 2017
* Support for Docker multi stage build Dockerfiles (syntax, linting)
2017-03-28 03:54:16 +03:00
* Support different variations on naming of `dockerfile` such as `dockerfile-development`
2017-05-09 02:24:10 +03:00
* Bug fixing
2017-03-28 03:54:16 +03:00
2017-03-14 04:12:07 +03:00
## 0.0.13 - 14 March 2017
* Support for `.yaml` file extension on `docker-compose` files.
2017-03-14 04:23:57 +03:00
* Updated Azure CLI image name, map .azure folder from host file system, fix block running on Windowns containers, fix Windows path issues (this didn't make it into `0.0.12`)
* Added telemetry to understand which commands developers find useful. This will help us refine which commands we add in the future. We track whether the following commands are executed:
2017-03-02 23:50:45 +03:00
* `build image`
* `compose up`, `compose down`
* `open shell` on running container and whether or not it is a Windows or Linux based container
* `push image` (we don't track the image name or the location)
* `remove image`
* `show logs`
* `start container`, `start container interactive`
* `start Azure CLI` container
* `stop container`
* `system prune`
* `tag` (we don't track tag name)
* Configure workspace along with the type (e.g. Node or Other)
> Please note, you can turn off telemetry reporting for VS Code and all extensions through the ["telemetry.enableTelemetry": false setting](https://code.visualstudio.com/docs/supporting/faq#_how-to-disable-telemetry-reporting).
2017-02-11 15:16:42 +03:00
## 0.0.12 - 11 February 2017
* Removed `MAINTAINER` from templates and linting warnings by upgrading the `dockerfile_lint` module (Docker has deprecated `MAINTAINER` in favor of `LABEL`).
* Added command to run `docker system prune`, note we use the `-f` (force) flag to ignore the confirmation prompt.
* `Docker: Attach Shell` command now supports Windows containers [#58](https://github.com/microsoft/vscode-docker/pull/58).
2016-12-13 05:07:00 +03:00
## 0.0.10 - 12 December 2016
2017-02-11 15:16:42 +03:00
* Added context menu support to run the Docker Build command on Dockerfile files from the editor or from the explorer.
* Docker logs now uses the -f flag ([follow](https://docs.docker.com/engine/reference/commandline/logs/)) to continue streaming the logs to terminal.
2017-01-05 01:28:16 +03:00
## 0.0.11 - 4 January 2017
2017-02-11 15:16:42 +03:00
* Fixed [Issue 51](https://github.com/microsoft/vscode-docker/issues/51), a path problem on Windows.