Skip to content

Commit cd1d1dd

Browse files
committed
Merge branch 'main' of https://github.com/jongio/azd-exec
2 parents d7ac043 + 38626ec commit cd1d1dd

3 files changed

Lines changed: 85 additions & 1 deletion

File tree

cli/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
## [0.2.29] - 2026-01-08
22

3+
- refactor: update Key Vault reference commands to use 'set-secret' for environment variables (8dd9d28)
4+
- chore: update changelog to version 0.2.29 (fc2895c)
5+
- refactor: remove unnecessary blank line in executor coverage tests (749509f)
6+
- refactor: remove working directory support from azd exec and related documentation (9caec7a)
7+
- Merge branch 'main' of https://github.com/jongio/azd-exec (e2a3120)
8+
- feat: add Azure Key Vault integration examples and documentation across multiple sections (5e45a5d)
9+
- chore: update registry for v0.2.28 (1cf69ad)
10+
11+
## [0.2.29] - 2026-01-08
12+
313
### Added
414
- Initial public release of azd exec
515
- Execute scripts and commands with full access to azd environment variables

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: azd exec - Run any script with azd environment and Azure credentials. Database migrations, setup automation, CI/CD workflows - with seamless Key Vault integration.
55
usage: azd exec <command> [options]
6-
version: 0.2.28
6+
version: 0.2.29
77
language: go
88
capabilities:
99
- custom-commands

registry.json

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,80 @@
470470
"url": "https://github.com/jongio/azd-exec/releases/download/azd-ext-jongio-azd-exec_0.2.28/jongio-azd-exec-windows-arm64.zip"
471471
}
472472
}
473+
},
474+
{
475+
"version": "0.2.29",
476+
"capabilities": [
477+
"custom-commands"
478+
],
479+
"usage": "azd exec \u003ccommand\u003e [options]",
480+
"examples": [
481+
{
482+
"name": "execute script",
483+
"description": "Execute a script file with azd context",
484+
"usage": "azd exec ./my-script.sh"
485+
},
486+
{
487+
"name": "with shell",
488+
"description": "Execute with specific shell",
489+
"usage": "azd exec ./deploy.ps1 --shell pwsh"
490+
},
491+
{
492+
"name": "version",
493+
"description": "Display extension version",
494+
"usage": "azd exec version"
495+
}
496+
],
497+
"artifacts": {
498+
"darwin/amd64": {
499+
"checksum": {
500+
"algorithm": "sha256",
501+
"value": "3c33f6f3ffd4c5abd89fd1363d57ac508d0ef83cb3d906edf0a6917167eba18d"
502+
},
503+
"entryPoint": "jongio-azd-exec-darwin-amd64",
504+
"url": "https://github.com/jongio/azd-exec/releases/download/azd-ext-jongio-azd-exec_0.2.29/jongio-azd-exec-darwin-amd64.zip"
505+
},
506+
"darwin/arm64": {
507+
"checksum": {
508+
"algorithm": "sha256",
509+
"value": "63ae39f9d4e4e824795a05a9086a37a81ef37f7eb28e45fc07431cb1147813ab"
510+
},
511+
"entryPoint": "jongio-azd-exec-darwin-arm64",
512+
"url": "https://github.com/jongio/azd-exec/releases/download/azd-ext-jongio-azd-exec_0.2.29/jongio-azd-exec-darwin-arm64.zip"
513+
},
514+
"linux/amd64": {
515+
"checksum": {
516+
"algorithm": "sha256",
517+
"value": "b51ecb709840773031201bf3f60c23eb0fd2cf6477ea97fb162a083b9ed634f8"
518+
},
519+
"entryPoint": "jongio-azd-exec-linux-amd64",
520+
"url": "https://github.com/jongio/azd-exec/releases/download/azd-ext-jongio-azd-exec_0.2.29/jongio-azd-exec-linux-amd64.tar.gz"
521+
},
522+
"linux/arm64": {
523+
"checksum": {
524+
"algorithm": "sha256",
525+
"value": "b7c17ae69b720a27435b511c00af61dc634104dd4d9077809d3d16d9fda19638"
526+
},
527+
"entryPoint": "jongio-azd-exec-linux-arm64",
528+
"url": "https://github.com/jongio/azd-exec/releases/download/azd-ext-jongio-azd-exec_0.2.29/jongio-azd-exec-linux-arm64.tar.gz"
529+
},
530+
"windows/amd64": {
531+
"checksum": {
532+
"algorithm": "sha256",
533+
"value": "cac91a450870de8bd777edbd10b3eace83a7254e822f89c0d8d6cfa4b830f1be"
534+
},
535+
"entryPoint": "jongio-azd-exec-windows-amd64.exe",
536+
"url": "https://github.com/jongio/azd-exec/releases/download/azd-ext-jongio-azd-exec_0.2.29/jongio-azd-exec-windows-amd64.zip"
537+
},
538+
"windows/arm64": {
539+
"checksum": {
540+
"algorithm": "sha256",
541+
"value": "690c05e9ed06a0d74ab4e2656f5278dcf1e21868de7b4591920aa34ae618c92e"
542+
},
543+
"entryPoint": "jongio-azd-exec-windows-arm64.exe",
544+
"url": "https://github.com/jongio/azd-exec/releases/download/azd-ext-jongio-azd-exec_0.2.29/jongio-azd-exec-windows-arm64.zip"
545+
}
546+
}
473547
}
474548
],
475549
"tags": [

0 commit comments

Comments
 (0)