Skip to content

Commit f47469e

Browse files
committed
Merge tag 'v5.35.0' into develop
5.35.0 v5.35.0
2 parents e5b9e6d + 2a02c89 commit f47469e

9 files changed

Lines changed: 84 additions & 61 deletions

File tree

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/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",
Lines changed: 49 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
{
2-
"id": "larasets",
3-
"name": "Laravel settings",
4-
"description": "A feature to add useful laravel settings to your shell.",
5-
"version": "5.32.0",
6-
"dependsOn": {
7-
"ghcr.io/devcontainers/features/docker-in-docker": "",
8-
"ghcr.io/devcontainers/features/node:1": "lts",
9-
"ghcr.io/devcontainers/features/php:1": "8.3",
10-
"ghcr.io/metcalfc/devcontainer-features/doppler:0": {},
11-
"ghcr.io/tomgrv/devcontainer-features/common-utils:5": {}
12-
},
13-
"installsAfter": [
14-
"ghcr.io/tomgrv/devcontainer-features/common-utils"
15-
],
16-
"containerEnv": {
17-
"APP_DEBUG": "true",
18-
"APP_ENV": "local",
19-
"DB_CONNECTION": "sqlite",
20-
"DOPPLER_CONFIG": "devpmt_personal",
21-
"SAIL_XDEBUG_CONFIG": "client_host=host.docker.internal idekey=vscode",
22-
"XDEBUG_CONFIG": "client_host=localhost idekey=vscode"
23-
},
24-
"customizations": {
25-
"vscode": {
26-
"extensions": [
27-
"aaron-bond.better-comments",
28-
"alexcvzz.vscode-sqlite",
29-
"bmewburn.vscode-intelephense-client",
30-
"christian-kohler.npm-intellisense",
31-
"davidanson.vscode-markdownlint",
32-
"doppler.doppler-vscode",
33-
"entexa.tall-stack",
34-
"formulahendry.auto-close-tag",
35-
"formulahendry.auto-rename-tag",
36-
"gruntfuggly.triggertaskonsave",
37-
"laravel.vscode-laravel",
38-
"marabesi.php-import-checker",
39-
"onecentlin.laravel-blade",
40-
"pcbowers.alpine-intellisense",
41-
"spmeesseman.vscode-taskexplorer",
42-
"xdebug.php-debug"
43-
]
44-
}
45-
},
46-
"legacyIds": [
47-
"larasets"
48-
],
49-
"postCreateCommand": {
50-
"config": "configure-feature larasets"
2+
"id": "larasets",
3+
"name": "Laravel settings",
4+
"description": "A feature to add useful laravel settings to your shell.",
5+
"version": "5.35.0",
6+
"dependsOn": {
7+
"ghcr.io/devcontainers/features/docker-in-docker": "",
8+
"ghcr.io/devcontainers/features/node:1": "lts",
9+
"ghcr.io/devcontainers/features/php:1": "8.3",
10+
"ghcr.io/metcalfc/devcontainer-features/doppler:0": {},
11+
"ghcr.io/tomgrv/devcontainer-features/common-utils:5": {}
12+
},
13+
"installsAfter": [
14+
"ghcr.io/tomgrv/devcontainer-features/common-utils"
15+
],
16+
"containerEnv": {
17+
"APP_DEBUG": "true",
18+
"APP_ENV": "local",
19+
"DB_CONNECTION": "sqlite",
20+
"DOPPLER_CONFIG": "devpmt_personal",
21+
"SAIL_XDEBUG_CONFIG": "client_host=host.docker.internal idekey=vscode",
22+
"XDEBUG_CONFIG": "client_host=localhost idekey=vscode"
23+
},
24+
"customizations": {
25+
"vscode": {
26+
"extensions": [
27+
"aaron-bond.better-comments",
28+
"alexcvzz.vscode-sqlite",
29+
"bmewburn.vscode-intelephense-client",
30+
"christian-kohler.npm-intellisense",
31+
"davidanson.vscode-markdownlint",
32+
"doppler.doppler-vscode",
33+
"entexa.tall-stack",
34+
"formulahendry.auto-close-tag",
35+
"formulahendry.auto-rename-tag",
36+
"gruntfuggly.triggertaskonsave",
37+
"laravel.vscode-laravel",
38+
"marabesi.php-import-checker",
39+
"onecentlin.laravel-blade",
40+
"pcbowers.alpine-intellisense",
41+
"spmeesseman.vscode-taskexplorer",
42+
"xdebug.php-debug"
43+
]
5144
}
45+
},
46+
"legacyIds": [
47+
"larasets"
48+
],
49+
"postCreateCommand": {
50+
"config": "configure-feature larasets"
51+
}
5252
}

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.32.0",
3+
"version": "5.35.0",
44
"description": "Laravel development settings and utilities",
55
"files": [
66
"_*.sh",

src/minikube/devcontainer-feature.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"id": "minikube",
33
"name": "Minikube feature",
44
"description": "Add minikube to your devcontainer",
5-
"version": "5.33.0",
5+
"version": "5.35.0",
66
"dependsOn": {
77
"ghcr.io/devcontainers/features/docker-in-docker: 2": {},
88
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {}

src/minikube/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tomgrv/minikube",
3-
"version": "5.33.0",
3+
"version": "5.35.0",
44
"description": "Minikube scripts",
55
"files": [
66
"_*.sh",

0 commit comments

Comments
 (0)