Skip to content

Commit fa4c644

Browse files
committed
Merge branch 'hotfix/v5.34.X'
2 parents c34099b + 11e39b2 commit fa4c644

7 files changed

Lines changed: 28 additions & 11 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.34.1 (2026-02-02)
6+
7+
_Commits from: v5.34.0..HEAD_
8+
9+
### 📂 Unscoped changes
10+
11+
#### Bug Fixes
12+
13+
- 🐛 enhance Docker wrapper setup ([f3b7c4d](https://github.com/tomgrv/devcontainer-features/commit/f3b7c4d1158fe8ab3aae678c79cdce94f50f25bd))
14+
515
## 5.34.0 (2026-02-01)
616

717
_Commits from: v5.33.0..HEAD_
@@ -371,4 +381,4 @@ _Commits from: v5.25.0..HEAD_
371381

372382
---
373383

374-
_Generated on 2026-02-01 by [tomgrv/devcontainer-features](https://github.com/tomgrv/devcontainer-features)_
384+
_Generated on 2026-02-02 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.34.0",
3+
"version": "5.34.1",
44
"description": "Configure dev environment with devcontainer, gitflow, gitversion, git aliases & hooks. Can be used a devcontainer features",
55
"keywords": [
66
"dev",

src/gitversion/_gv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22

33
# Call the GitVersion tool with the specified configuration
4-
/usr/local/bin/dotnet-gitversion $(git rev-parse --show-toplevel) -config ".gitversion" "$@"
4+
#/usr/local/bin/dotnet-gitversion $(git rev-parse --show-toplevel) -config ".gitversion" "$@"
55
/usr/local/bin/docker-gitversion $(git rev-parse --show-toplevel) -config ".gitversion" "$@"
66

src/gitversion/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "gitversion",
33
"name": "GitVersion feature",
44
"description": "Add gitversion to your devcontainer",
5-
"version": "5.34.0",
5+
"version": "5.34.1",
66
"dependsOn": {
77
"ghcr.io/tomgrv/devcontainer-features/common-utils:5": ""
88
},

src/gitversion/install-tools.sh

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ set -e
44
### Install GitVersion
55
zz_log i "Install Gitversion..."
66
#dotnet tool install GitVersion.Tool --version ${VERSION:-5.*} --tool-path /usr/local/bin
7+
8+
### Get Docker GitVersion image
9+
zz_log i "Pull Gitversion Docker image..."
10+
docker pull gittools/gitversion:${VERSION:-6.5.1}
11+
12+
### Create Docker GitVersion wrapper
13+
zz_log i "Create Docker Gitversion wrapper..."
714
(
8-
echo "#!/bin/sh"
9-
echo "repo=\${1:-\$(pwd)}; shift;"
10-
echo "docker run --rm -v \"\$repo:/repo\" gittools/gitversion:${VERSION:-6.5.1} /repo \"$@\""
15+
echo "#!/bin/sh"
16+
echo "repo=\${1:-\$(pwd)}; shift;"
17+
echo "docker run --rm -v \"\$repo:/repo\" gittools/gitversion:${VERSION:-6.5.1} /repo \"$@\""
1118
) > /usr/local/bin/docker-gitversion && chmod ugo+x /usr/local/bin/docker-gitversion
1219

1320

src/gitversion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tomgrv/gitversion",
3-
"version": "5.34.0",
3+
"version": "5.34.1",
44
"description": "GitVersion integration and version management scripts",
55
"files": [
66
"_*.sh",

0 commit comments

Comments
 (0)