Skip to content

Commit 9ad4785

Browse files
committed
chore(release): 🚀 5.30.0
1 parent 2e1d1c5 commit 9ad4785

6 files changed

Lines changed: 90 additions & 67 deletions

File tree

CHANGELOG.md

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

33
# Changelog
44

5+
## 5.30.0-beta.1 (2025-10-02)
6+
7+
_Commits from: v5.29.1..HEAD_
8+
9+
### 📂 Unscoped changes
10+
11+
#### Other changes
12+
13+
- Merge tag 'v5.28.1' into develop ([9249443](https://github.com/tomgrv/devcontainer-features/commit/924944383f11e06b79ea6632f21c6bc4cd783eff))
14+
- Merge tag 'v5.29.1' into develop ([9fb75b6](https://github.com/tomgrv/devcontainer-features/commit/9fb75b61e0ea7396099711fdba5886f488406883))
15+
16+
### 📦 gitutils changes
17+
18+
#### Bug Fixes
19+
20+
- 🐛 update version retrieval ([2e1d1c5](https://github.com/tomgrv/devcontainer-features/commit/2e1d1c56fec50d6a6d9311d6e69d4a62a50caecf))
21+
22+
### 📦 gitversion changes
23+
24+
#### Bug Fixes
25+
26+
- 🐛 correct version determination ([510e87c](https://github.com/tomgrv/devcontainer-features/commit/510e87ca1a4ed527be33fff5e58bd2b6784688b3))
27+
528
## 5.29.1-beta.1 (2025-10-02)
629

730
_Commits from: v5.29.0..HEAD_

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.29.1-beta.1",
3+
"version": "5.30.0-beta.1",
44
"description": "Configure dev environment with devcontainer, gitflow, gitversion, git aliases & hooks. Can be used a devcontainer features",
55
"keywords": [
66
"dev",

src/gitutils/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "gitutils",
33
"name": "Git Aliases",
44
"description": "A feature to add useful Git aliases to your shell.",
5-
"version": "5.29.1-beta.1",
5+
"version": "5.30.0-beta.1",
66
"dependsOn": {
77
"ghcr.io/devcontainers/features/node:1": "lts",
88
"ghcr.io/tomgrv/devcontainer-features/common-utils:5": {

src/gitutils/package.json

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
{
2-
"name": "@tomgrv/gitutils",
3-
"version": "5.29.1-beta.1",
4-
"description": "Git utilities and aliases for development workflow",
5-
"files": [
6-
"_*.sh",
7-
"install.sh",
8-
"install-config.sh",
9-
"alias.json",
10-
"config.json",
11-
"stubs/**/*"
12-
],
13-
"bin": {
14-
"deleteChildren": "./_deleteChildren.sh",
15-
"git-align": "./_git-align.sh",
16-
"git-co": "./_git-co.sh",
17-
"git-degit": "./_git-degit.sh",
18-
"git-fix": "./_git-fix.sh",
19-
"git-fix-author": "./_git-fix-author.sh",
20-
"git-fix-emoji": "./_git-fix-emoji.sh",
21-
"git-fix-last": "./_git-fix-last.sh",
22-
"git-fix-lock": "./_git-fix-lock.sh",
23-
"git-fix-mode": "./_git-fix-mode.sh",
24-
"git-fix-privacy": "./_git-fix-privacy.sh",
25-
"git-fix-up": "./_git-fix-up.sh",
26-
"git-forall": "./_git-forall.sh",
27-
"git-getcommit": "./_git-getcommit.sh",
28-
"git-integrate": "./_git-integrate.sh",
29-
"git-pick": "./_git-pick.sh",
30-
"git-release": "./_git-release.sh",
31-
"git-release-alpha": "./_git-release-alpha.sh",
32-
"git-release-beta": "./_git-release-beta.sh",
33-
"git-release-hotfix": "./_git-release-hotfix.sh",
34-
"git-release-prod": "./_git-release-prod.sh",
35-
"setrights": "./_setrights.sh",
36-
"unset": "./_unset.sh"
37-
},
38-
"scripts": {},
39-
"dependencies": {},
40-
"peerDependencies": {
41-
"@tomgrv/common-utils": "^5.0.0",
42-
"@tomgrv/gitversion": "^5.0.0"
43-
}
2+
"name": "@tomgrv/gitutils",
3+
"version": "5.30.0-beta.1",
4+
"description": "Git utilities and aliases for development workflow",
5+
"files": [
6+
"_*.sh",
7+
"install.sh",
8+
"install-config.sh",
9+
"alias.json",
10+
"config.json",
11+
"stubs/**/*"
12+
],
13+
"bin": {
14+
"deleteChildren": "./_deleteChildren.sh",
15+
"git-align": "./_git-align.sh",
16+
"git-co": "./_git-co.sh",
17+
"git-degit": "./_git-degit.sh",
18+
"git-fix": "./_git-fix.sh",
19+
"git-fix-author": "./_git-fix-author.sh",
20+
"git-fix-emoji": "./_git-fix-emoji.sh",
21+
"git-fix-last": "./_git-fix-last.sh",
22+
"git-fix-lock": "./_git-fix-lock.sh",
23+
"git-fix-mode": "./_git-fix-mode.sh",
24+
"git-fix-privacy": "./_git-fix-privacy.sh",
25+
"git-fix-up": "./_git-fix-up.sh",
26+
"git-forall": "./_git-forall.sh",
27+
"git-getcommit": "./_git-getcommit.sh",
28+
"git-integrate": "./_git-integrate.sh",
29+
"git-pick": "./_git-pick.sh",
30+
"git-release": "./_git-release.sh",
31+
"git-release-alpha": "./_git-release-alpha.sh",
32+
"git-release-beta": "./_git-release-beta.sh",
33+
"git-release-hotfix": "./_git-release-hotfix.sh",
34+
"git-release-prod": "./_git-release-prod.sh",
35+
"setrights": "./_setrights.sh",
36+
"unset": "./_unset.sh"
37+
},
38+
"scripts": {},
39+
"dependencies": {},
40+
"peerDependencies": {
41+
"@tomgrv/common-utils": "^5.0.0",
42+
"@tomgrv/gitversion": "^5.0.0"
43+
}
4444
}

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.28.1",
5+
"version": "5.30.0-beta.1",
66
"dependsOn": {
77
"ghcr.io/devcontainers/features/dotnet": "",
88
"ghcr.io/tomgrv/devcontainer-features/common-utils:5": ""

src/gitversion/package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
{
2-
"name": "@tomgrv/gitversion",
3-
"version": "5.28.1",
4-
"description": "GitVersion integration and version management scripts",
5-
"files": [
6-
"_*.sh",
7-
"install.sh",
8-
"install-tools.sh",
9-
"_scripts.package.json",
10-
"stubs/**/*"
11-
],
12-
"bin": {
13-
"bump-changelog": "./_bump-changelog.sh",
14-
"bump-tag": "./_bump-tag.sh",
15-
"bump-version": "./_bump-version.sh",
16-
"checkout-version": "./_checkout-version.sh",
17-
"gv": "./_gv.sh"
18-
},
19-
"scripts": {},
20-
"dependencies": {},
21-
"peerDependencies": {
22-
"@tomgrv/common-utils": "^5.0.0"
23-
}
2+
"name": "@tomgrv/gitversion",
3+
"version": "5.30.0-beta.1",
4+
"description": "GitVersion integration and version management scripts",
5+
"files": [
6+
"_*.sh",
7+
"install.sh",
8+
"install-tools.sh",
9+
"_scripts.package.json",
10+
"stubs/**/*"
11+
],
12+
"bin": {
13+
"bump-changelog": "./_bump-changelog.sh",
14+
"bump-tag": "./_bump-tag.sh",
15+
"bump-version": "./_bump-version.sh",
16+
"checkout-version": "./_checkout-version.sh",
17+
"gv": "./_gv.sh"
18+
},
19+
"scripts": {},
20+
"dependencies": {},
21+
"peerDependencies": {
22+
"@tomgrv/common-utils": "^5.0.0"
23+
}
2424
}

0 commit comments

Comments
 (0)