Skip to content

Commit 07c2e7c

Browse files
committed
Merge branch 'hotfix/v5.39.X'
2 parents 864aa72 + 1a7e353 commit 07c2e7c

6 files changed

Lines changed: 18 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
# Changelog
44

5+
## 5.39.1 (2026-03-24)
6+
7+
_Commits from: v5.39.0..HEAD_
8+
9+
### 📦 common-utils changes
10+
11+
#### Bug Fixes
12+
13+
- 🐛 update argument parsing in dispatch utility ([3ff3380](https://github.com/tomgrv/devcontainer-features/commit/3ff3380e6506c63860c5e5fe188a9644c06931c7))
14+
515
## 5.39.0 (2026-03-24)
616

717
_Commits from: v5.38.7..HEAD_

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tomgrv/devcontainer-features",
3-
"version": "5.39.0",
3+
"version": "5.39.1",
44
"description": "Configure dev environment with devcontainer, gitflow, gitversion, git aliases & hooks. Can be used a devcontainer features",
55
"keywords": [
66
"dev",

src/common-utils/_zz_dispatch.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -e
88

99
# Parse arguments and display help if needed
1010
eval $(
11-
./src/common-utils/_zz_args.sh "Dispatch Utility" $0 "$@" <<- help
11+
zz_args "Dispatch Utility" $0 "$@" <<- help
1212
- caller caller Caller script path
1313
- subcmd subcmd Target script to execute
1414
d debug debug Enable debug mode
@@ -27,7 +27,7 @@ usage() {
2727

2828
preserve() {
2929
echo $@ | while read -r line; do
30-
echo \"$line\"
30+
echo $line
3131
done
3232
}
3333

src/common-utils/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "common-utils",
33
"name": "Common Utils",
44
"description": "Common utils for tomgrv/devcontainer-features",
5-
"version": "5.39.0",
5+
"version": "5.39.1",
66
"dependsOn": {
77
"ghcr.io/devcontainers/features/common-utils": {}
88
},

src/common-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tomgrv/common-utils",
3-
"version": "5.39.0",
3+
"version": "5.39.1",
44
"description": "Common utilities and helper scripts for devcontainer features",
55
"files": [
66
"_*.sh",

0 commit comments

Comments
 (0)