Skip to content

Commit 540fd09

Browse files
committed
Merge branch 'main' of https://github.com/jongio/azd-exec
2 parents 4ffb145 + 7807f9a commit 540fd09

3 files changed

Lines changed: 87 additions & 1 deletion

File tree

cli/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## [0.2.24] - 2026-01-08
2+
3+
- refactor: remove dashboard build steps from build scripts (4ca2e2f)
4+
- fix: handle missing dashboard directory in build scripts (07101f7)
5+
- chore: bump version to 0.2.23 (960cbdb)
6+
- feat: add dynamic title to Layout component and improve theme handling logic (a7cef66)
7+
- fix: disable auto-open of Playwright HTML report (9e0c01d)
8+
- refactor: rename src/cmd/script to src/cmd/exec across entire codebase (de4bb82)
9+
- chore: bump version to 0.2.22 (766510d)
10+
- feat: add release-test workflow and use azd-app build scripts (5782bb6)
11+
- fix: rewrite build.sh to handle azd x build environment variables like build.ps1 (182178c)
12+
113
## [0.2.23] - 2026-01-08
214

315
- feat: add dynamic title to Layout component and improve theme handling logic (a7cef66)

cli/extension.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ namespace: exec
33
displayName: Exec Extension
44
description: Execute commands and scripts with Azure Developer CLI context and environment variables
55
usage: azd exec <command> [options]
6-
version: 0.2.23
6+
version: 0.2.24
77
language: go
88
capabilities:
99
- custom-commands

registry.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,80 @@
100100
"url": "/home/runner/.azd/registry/jongio.azd.exec/0.1.18/jongio-azd-exec-windows-amd64.zip"
101101
}
102102
}
103+
},
104+
{
105+
"version": "0.2.24",
106+
"capabilities": [
107+
"custom-commands"
108+
],
109+
"usage": "azd exec \u003ccommand\u003e [options]",
110+
"examples": [
111+
{
112+
"name": "execute script",
113+
"description": "Execute a script file with azd context",
114+
"usage": "azd exec ./my-script.sh"
115+
},
116+
{
117+
"name": "with shell",
118+
"description": "Execute with specific shell",
119+
"usage": "azd exec ./deploy.ps1 --shell pwsh"
120+
},
121+
{
122+
"name": "version",
123+
"description": "Display extension version",
124+
"usage": "azd exec version"
125+
}
126+
],
127+
"artifacts": {
128+
"darwin/amd64": {
129+
"checksum": {
130+
"algorithm": "sha256",
131+
"value": "ba37f69c7e97b23ad619ed4a422fd76220eedbaa12b88c51e6b4ccf15d14405b"
132+
},
133+
"entryPoint": "jongio-azd-exec-darwin-amd64",
134+
"url": "/home/runner/.azd/registry/jongio.azd.exec/0.2.24/jongio-azd-exec-darwin-amd64.zip"
135+
},
136+
"darwin/arm64": {
137+
"checksum": {
138+
"algorithm": "sha256",
139+
"value": "687915330384960a5689078ec86f639545c512c6fdc1a205a7dfa741644ad1e6"
140+
},
141+
"entryPoint": "jongio-azd-exec-darwin-arm64",
142+
"url": "/home/runner/.azd/registry/jongio.azd.exec/0.2.24/jongio-azd-exec-darwin-arm64.zip"
143+
},
144+
"linux/amd64": {
145+
"checksum": {
146+
"algorithm": "sha256",
147+
"value": "d237e2ceeb8d91a6acc3855692d8efafc40bd426a2e76e1bc82e81b34ec36965"
148+
},
149+
"entryPoint": "jongio-azd-exec-linux-amd64",
150+
"url": "/home/runner/.azd/registry/jongio.azd.exec/0.2.24/jongio-azd-exec-linux-amd64.tar.gz"
151+
},
152+
"linux/arm64": {
153+
"checksum": {
154+
"algorithm": "sha256",
155+
"value": "acb2103b9d77a94119307aa3ac4737d85c6e194c2aacd67b76f634f5a7db8152"
156+
},
157+
"entryPoint": "jongio-azd-exec-linux-arm64",
158+
"url": "/home/runner/.azd/registry/jongio.azd.exec/0.2.24/jongio-azd-exec-linux-arm64.tar.gz"
159+
},
160+
"windows/amd64": {
161+
"checksum": {
162+
"algorithm": "sha256",
163+
"value": "2fff39fabc7f2d38be705c7b35e5c4d223de626994cbe0c635b25a2e0819a0a9"
164+
},
165+
"entryPoint": "jongio-azd-exec-windows-amd64.exe",
166+
"url": "/home/runner/.azd/registry/jongio.azd.exec/0.2.24/jongio-azd-exec-windows-amd64.zip"
167+
},
168+
"windows/arm64": {
169+
"checksum": {
170+
"algorithm": "sha256",
171+
"value": "1406fc2f420e9869f05481199d2904ea8d1cbb1a77f76d5fceb87d0050927acf"
172+
},
173+
"entryPoint": "jongio-azd-exec-windows-arm64.exe",
174+
"url": "/home/runner/.azd/registry/jongio.azd.exec/0.2.24/jongio-azd-exec-windows-arm64.zip"
175+
}
176+
}
103177
}
104178
],
105179
"tags": [

0 commit comments

Comments
 (0)