Skip to content

Commit 2a02c89

Browse files
committed
Merge branch 'release/5.35.0'
2 parents c897aba + 60a4b88 commit 2a02c89

21 files changed

Lines changed: 119 additions & 20 deletions

CHANGELOG.md

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

33
# Changelog
44

5+
## 5.35.0 (2026-02-24)
6+
7+
_Commits from: v5.34.2..HEAD_
8+
9+
### 📂 Unscoped changes
10+
11+
#### Bug Fixes
12+
13+
- 🐛 ensure rebase continues even on conflicts ([b2752a9](https://github.com/tomgrv/devcontainer-features/commit/b2752a9c159ae6b697f666e1a0c9a72bf8ca295e))
14+
- 🐛 remove redundant XDEBUG_MODE settings for clarity ([e5b9e6d](https://github.com/tomgrv/devcontainer-features/commit/e5b9e6d52f09ccf3ec31df875217855f8614b6c1))
15+
16+
#### Features
17+
18+
- ✨ add laravel/boost ([85a4eef](https://github.com/tomgrv/devcontainer-features/commit/85a4eef9e1c0f5c6c851dd4ed3c8a49229d786a7))
19+
- ✨ add minikube utility scripts ([4407721](https://github.com/tomgrv/devcontainer-features/commit/44077218293b0fae47401ca5f1a12c1d7614065e))
20+
- ✨ improve server script usage instructions and variable consistency ([bedacbd](https://github.com/tomgrv/devcontainer-features/commit/bedacbd58a8115598908f11dacb47778711f7396))
21+
22+
#### Other changes
23+
24+
- Merge tag 'v5.34.0' into develop ([c56339f](https://github.com/tomgrv/devcontainer-features/commit/c56339f56076f83e1a25e5751554eb98ef69f2cd))
25+
- Merge tag 'v5.34.1' into develop ([84122d4](https://github.com/tomgrv/devcontainer-features/commit/84122d45bf769a04478d34059c85add3d2262fda))
26+
- Merge tag 'v5.34.2' into develop ([d51c7e3](https://github.com/tomgrv/devcontainer-features/commit/d51c7e303a0315d06511567c734bfbc5396b5276))
27+
528
## 5.34.2 (2026-02-02)
629

730
_Commits from: v5.34.1..HEAD_
@@ -391,4 +414,4 @@ _Commits from: v5.25.0..HEAD_
391414

392415
---
393416

394-
_Generated on 2026-02-02 by [tomgrv/devcontainer-features](https://github.com/tomgrv/devcontainer-features)_
417+
_Generated on 2026-02-24 by [tomgrv/devcontainer-features](https://github.com/tomgrv/devcontainer-features)_

package-lock.json

Lines changed: 5 additions & 5 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.2",
3+
"version": "5.35.0",
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-fix-up.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ while [ $? -eq 0 ]; do
7979
fi
8080

8181
# Continue the rebase process
82-
git rebase --continue
82+
git rebase --continue || true
8383
done
8484

8585
# if rebase successful and push option is set, push force the changes

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.33.0",
5+
"version": "5.35.0",
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.33.0",
3+
"version": "5.35.0",
44
"description": "Git utilities and aliases for development workflow",
55
"files": [
66
"_*.sh",

src/larasets/_require.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
"devDependencies": [
44
"laravel/pint",
55
"pestphp/pest",
6+
"laravel/boost",
67
"pestphp/pest-plugin-laravel",
78
"nunomaduro/collision",
89
"nunomaduro/phpinsights",
910
"pestphp/pest-plugin-arch"
11+
1012
]
1113
}

src/larasets/_scripts.composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
3737
],
3838
"post-update-cmd": [
39-
"@php artisan vendor:publish --tag=laravel-assets --ansi --force"
39+
"@php artisan vendor:publish --tag=laravel-assets --ansi --force",
40+
"@php artisan boost:update --ansi"
4041
],
4142
"req": [
4243
"@base require",

src/larasets/_srv.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@ set -e
44
#### Goto repository root
55
cd "$(git rev-parse --show-toplevel)" >/dev/null
66

7+
#### If no arguments are provided, show usage
8+
eval $(zz_args "Start or restart the server" $0 "$@" <<-help
9+
- name name Server name
10+
help
11+
)
12+
713
#### Execute command
814
if [ -n "$LARAVEL_SAIL" ] && [ "$LARAVEL_SAIL" -eq 1 ] && sail ps --status running | grep --after-context=1 -q -; then
915
server='sail npx --yes pm2'
1016
else
1117
server='npx --yes pm2'
1218
fi
1319

14-
$server restart --update-env server_$1 || $server --name server_$1 start "FORCE_COLOR=1 npm -- run \"$@\""
15-
$server log --raw --out server_$1
20+
$server restart --update-env server_$name || $server --name server_$name start "FORCE_COLOR=1 npm -- run \"$@\""
21+
$server log --raw --out server_$name

src/larasets/devcontainer-feature.json

Lines changed: 2 additions & 3 deletions
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.32.0",
5+
"version": "5.35.0",
66
"dependsOn": {
77
"ghcr.io/devcontainers/features/docker-in-docker": "",
88
"ghcr.io/devcontainers/features/node:1": "lts",
@@ -19,8 +19,7 @@
1919
"DB_CONNECTION": "sqlite",
2020
"DOPPLER_CONFIG": "devpmt_personal",
2121
"SAIL_XDEBUG_CONFIG": "client_host=host.docker.internal idekey=vscode",
22-
"SAIL_XDEBUG_MODE": "develop,debug",
23-
"XDEBUG_MODE": "off"
22+
"XDEBUG_CONFIG": "client_host=localhost idekey=vscode"
2423
},
2524
"customizations": {
2625
"vscode": {

0 commit comments

Comments
 (0)