Skip to content

Commit 58ce23c

Browse files
committed
Merge branch 'hotfix/v5.40.X'
2 parents 0f95796 + b94e434 commit 58ce23c

6 files changed

Lines changed: 18 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
# Changelog
44

5+
## 5.40.2 (2026-03-28)
6+
7+
_Commits from: v5.40.1..HEAD_
8+
9+
### 📦 common-utils changes
10+
11+
#### Bug Fixes
12+
13+
- 🐛 correct invocation of validate-json function in normalization script ([db4d7c2](https://github.com/tomgrv/devcontainer-features/commit/db4d7c2bf18589bcb8638f7bc1cdeefb66d1d8ed))
14+
515
## 5.40.1 (2026-03-27)
616

717
_Commits from: v5.40.0..HEAD_
@@ -694,4 +704,4 @@ _Commits from: v5.25.0..HEAD_
694704

695705
---
696706

697-
_Generated on 2026-03-27 by [tomgrv/devcontainer-features](https://github.com/tomgrv/devcontainer-features)_
707+
_Generated on 2026-03-28 by [tomgrv/devcontainer-features](https://github.com/tomgrv/devcontainer-features)_

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.40.1",
3+
"version": "5.40.2",
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/_normalize-json.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ for file in $files; do
3131

3232
# Validate JSON
3333
zz_log i "Normalizing {U $file}..."
34-
list=$(./src/common-utils/_validate-json.sh ${allow:+-a} ${cache:+-c} ${debug:+-d} ${fallback:+-f "$fallback"} ${local:+-l "$local"} ${import:+-i} ${schema:+-s"$schema"} $file)
34+
list=$(validate-json ${allow:+-a} ${cache:+-c} ${debug:+-d} ${fallback:+-f "$fallback"} ${local:+-l "$local"} ${import:+-i} ${schema:+-s"$schema"} $file)
3535

3636
if test -z "$list"; then
3737
zz_log e "JSON {U $file} not valid, cannot normalize" && exit 1

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.40.1",
5+
"version": "5.40.2",
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.40.1",
3+
"version": "5.40.2",
44
"description": "Common utilities and helper scripts for devcontainer features",
55
"files": [
66
"_*.sh",

0 commit comments

Comments
 (0)