diff --git a/CHANGELOG.md b/CHANGELOG.md index 27b44c80..59beb1ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [1.4.5] + +* Fix treeview stuck with only 'select tenant' node. +* Add Draft Dockerfile, Deployment and Workflow commands. +* Fix bump vscode 1.89 update. +* Dependabot updates and bumps. + +Thank you so much to @peterbom, @qpetraroia, @hsubramanianaks for Draft work, testing this and for review comments. + ## [1.4.4] * Azure Account Sign-In Changes. diff --git a/docs/book/src/README.md b/docs/book/src/README.md index b52bc112..fe5c814f 100644 --- a/docs/book/src/README.md +++ b/docs/book/src/README.md @@ -23,6 +23,7 @@ Azure Kubernetes Service (AKS) Extension for Visual Studio Code helps enable AKS * [Compare AKS Cluster](./features/aks-compare-cluster.md) * [Run Image Cleaner Eraser Tool](./features/image-cleaner-eraser-tool.md) * [Run Retina Capture](./features/retina-capture.md) +* [Run Draft Command](./features/draft-integration.md) ## Development and Release diff --git a/docs/book/src/SUMMARY.md b/docs/book/src/SUMMARY.md index 98516fcd..40640175 100644 --- a/docs/book/src/SUMMARY.md +++ b/docs/book/src/SUMMARY.md @@ -24,6 +24,7 @@ - [Compare AKS Cluster](./features/aks-compare-cluster.md) - [Run Image Cleaner Eraser Tool](./features/image-cleaner-eraser-tool.md) - [Run Retina Capture](./features/retina-capture.md) + - [Run Draft Command](./features/draft-integration.md) - [Release](./release.md) - [Releasing Information](./release/releasing.md) - [Contributing](./contributing.md) diff --git a/docs/book/src/features/draft-integration.md b/docs/book/src/features/draft-integration.md new file mode 100644 index 00000000..572c180f --- /dev/null +++ b/docs/book/src/features/draft-integration.md @@ -0,0 +1,23 @@ +# Draft Tool Integration + +This work adds commands for Draft tool integartion with this extension: + +- Draft Dockerfile +- Draft Deployment +- Draft Workflow + +These can be launched from either: + +- The command palette. (To open: Hold `Ctrl` (`⌘ Cmd` on macOS) + `shift` + `p` ) + +This will allow user to have access to a complete power of Draft tool and allow users to take advantage for scaffolding geenration for their projects. + +![Step 1: Command Palette](../resources/draft-command.png) + +![Step 2: Draft Dockerfile](../resources/draft-dockerfile.png) + +![Step 3: Draft Dockerfile first](../resources/draft-dockerfile1.png) + +![Step 4: Draftr Deployment](../resources/draft-deployment.png) + +![Step 5: Draft GitHub Workflow](../resources/draft-gh-workflow.png) diff --git a/docs/book/src/resources/draft-command.png b/docs/book/src/resources/draft-command.png new file mode 100644 index 00000000..f47feb70 Binary files /dev/null and b/docs/book/src/resources/draft-command.png differ diff --git a/docs/book/src/resources/draft-deployment.png b/docs/book/src/resources/draft-deployment.png new file mode 100644 index 00000000..f9fbb26f Binary files /dev/null and b/docs/book/src/resources/draft-deployment.png differ diff --git a/docs/book/src/resources/draft-dockerfile.png b/docs/book/src/resources/draft-dockerfile.png new file mode 100644 index 00000000..601d5d10 Binary files /dev/null and b/docs/book/src/resources/draft-dockerfile.png differ diff --git a/docs/book/src/resources/draft-dockerfile1.png b/docs/book/src/resources/draft-dockerfile1.png new file mode 100644 index 00000000..d14a0dc9 Binary files /dev/null and b/docs/book/src/resources/draft-dockerfile1.png differ diff --git a/docs/book/src/resources/draft-gh-workflow.png b/docs/book/src/resources/draft-gh-workflow.png new file mode 100644 index 00000000..e8626a3b Binary files /dev/null and b/docs/book/src/resources/draft-gh-workflow.png differ diff --git a/package-lock.json b/package-lock.json index 21f6ce5e..e835a8c9 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-aks-tools", - "version": "1.4.4", + "version": "1.4.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-aks-tools", - "version": "1.4.4", + "version": "1.4.5", "license": "MIT", "dependencies": { "@azure/arm-authorization": "^9.0.0", diff --git a/package.json b/package.json index 67dd3393..8283dbe9 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "vscode-aks-tools", "displayName": "Azure Kubernetes Service", "description": "Display Azure Kubernetes Services within VS Code", - "version": "1.4.4", + "version": "1.4.5", "aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255", "publisher": "ms-kubernetes-tools", "icon": "resources/aks-tools.png",