Skip to content

Commit 58c2384

Browse files
committed
Merge branch 'hotfix/v5.31.X'
2 parents 3561d62 + ff10a0f commit 58c2384

11 files changed

Lines changed: 27 additions & 215 deletions

File tree

CHANGELOG.md

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

33
# Changelog
44

5+
## 5.31.2 (2025-10-09)
6+
7+
_Commits from: v5.31.1..HEAD_
8+
9+
### 📂 Unscoped changes
10+
11+
#### Bug Fixes
12+
13+
- 🐛 file naming ([6e8fbc4](https://github.com/tomgrv/devcontainer-features/commit/6e8fbc4629a5fd577f3ac5455ab2ee3cdef7bdde))
14+
- 🐛 reorder flow branch checks for clarity ([277938b](https://github.com/tomgrv/devcontainer-features/commit/277938bb0e9d785f5ad132d955b1671f8f79c137))
15+
516
## 5.31.1 (2025-10-09)
617

718
_Commits from: v5.30.2..HEAD_

package-lock.json

Lines changed: 4 additions & 4 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.31.1",
3+
"version": "5.31.2",
44
"description": "Configure dev environment with devcontainer, gitflow, gitversion, git aliases & hooks. Can be used a devcontainer features",
55
"keywords": [
66
"dev",

src/gitutils/_git-release-prod.sh

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,17 @@ if [ -n "$(git branch --list hotfix/*)" ]; then
1414
flow=hotfix
1515
name=$(git branch --list hotfix/* | sed 's/.*hotfix\///'| head -n1 )
1616
zz_log i "Hotfix branch found: {Yellow $name}"
17-
fi
1817

19-
# Check if on a release branch and extract branch name
20-
if [ -n "$(git branch --list release/*)" ]; then
18+
# Check for .git/RELEASE file if no flow branch found
19+
elif [ -z "$flow" ] && [ -f .git/RELEASE ]; then
2120
flow=release
22-
name=$(git branch --list release/* | sed 's/.*release\///' | head -n1 )
21+
name=$(cat .git/RELEASE)
2322
zz_log i "Release branch found: {Blue $name}"
24-
fi
2523

26-
# Check if a flow branch is found from .git/RELEASE file
27-
if [ -z "$flow" ] && [ -f .git/RELEASE ]; then
24+
# Check if on a release branch and extract branch name
25+
elif [ -n "$(git branch --list release/*)" ]; then
2826
flow=release
29-
name=$(cat .git/RELEASE)
27+
name=$(git branch --list release/* | sed 's/.*release\///' | head -n1 )
3028
zz_log i "Release branch found: {Blue $name}"
3129
fi
3230

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.31.1",
5+
"version": "5.31.2",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tomgrv/gitutils",
3-
"version": "5.31.1",
3+
"version": "5.31.2",
44
"description": "Git utilities and aliases for development workflow",
55
"files": [
66
"_*.sh",
File renamed without changes.

src/larasets/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "larasets",
33
"name": "Laravel settings",
44
"description": "A feature to add useful laravel settings to your shell.",
5-
"version": "5.31.1",
5+
"version": "5.31.2",
66
"dependsOn": {
77
"ghcr.io/devcontainers/features/docker-in-docker": "",
88
"ghcr.io/devcontainers/features/node:1": "lts",

src/larasets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tomgrv/larasets",
3-
"version": "5.31.1",
3+
"version": "5.31.2",
44
"description": "Laravel development settings and utilities",
55
"files": [
66
"_*.sh",

src/larasets/stubs/.github/workflows/validate-pr-php.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
NODE_ENV: test
1515

1616
jobs:
17-
validate-code:
17+
validate-php-code:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:

0 commit comments

Comments
 (0)