Skip to content

Commit 5f4202a

Browse files
committed
[RELEASE] v5.1.0
1 parent 0f33ca0 commit 5f4202a

8 files changed

Lines changed: 80 additions & 3 deletions

File tree

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: phpmyadmin
2+
repository: ddev/ddev-phpmyadmin
3+
version: v0.3.9
4+
install_date: "2025-02-20T08:29:29+01:00"
5+
project_files:
6+
- docker-compose.phpmyadmin.yaml
7+
- docker-compose.phpmyadmin_norouter.yaml
8+
- commands/host/phpmyadmin
9+
global_files: []
10+
removal_actions: []

.ddev/commands/host/phpmyadmin

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
## #ddev-generated: If you want to edit and own this file, remove this line.
4+
## Description: Launch a browser with PhpMyAdmin
5+
## Usage: phpmyadmin
6+
## Example: "ddev phpmyadmin"
7+
8+
DDEV_PHPMYADMIN_PORT=8036
9+
DDEV_PHPMYADMIN_HTTPS_PORT=8037
10+
if [ ${DDEV_PRIMARY_URL%://*} = "http" ] || [ -n "${GITPOD_WORKSPACE_ID:-}" ] || [ "${CODESPACES:-}" = "true" ]; then
11+
# Gitpod: "gp preview" opens a blank page for PhpMyAdmin, use "xdg-open" instead
12+
if [ "${OSTYPE:-}" = "linux-gnu" ] && [ -n "${GITPOD_WORKSPACE_ID:-}" ] && [ -z "${DDEV_DEBUG:-}" ]; then
13+
xdg-open "$(DDEV_DEBUG=true ddev launch :$DDEV_PHPMYADMIN_PORT | grep "FULLURL" | awk '{print $2}')"
14+
else
15+
ddev launch :$DDEV_PHPMYADMIN_PORT
16+
fi
17+
else
18+
ddev launch :$DDEV_PHPMYADMIN_HTTPS_PORT
19+
fi
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
#ddev-generated
2+
services:
3+
phpmyadmin:
4+
container_name: ddev-${DDEV_SITENAME}-phpmyadmin
5+
image: phpmyadmin:5.2.0
6+
working_dir: "/root"
7+
restart: "no"
8+
labels:
9+
com.ddev.site-name: ${DDEV_SITENAME}
10+
com.ddev.approot: $DDEV_APPROOT
11+
volumes:
12+
- ".:/mnt/ddev_config"
13+
- "ddev-global-cache:/mnt/ddev-global-cache"
14+
expose:
15+
- "80"
16+
environment:
17+
- PMA_USER=root
18+
- PMA_PASSWORD=root
19+
- PMA_HOST=db
20+
- PMA_PORT=3306
21+
- VIRTUAL_HOST=$DDEV_HOSTNAME
22+
- UPLOAD_LIMIT=4000M
23+
- HTTP_EXPOSE=8036:80
24+
- HTTPS_EXPOSE=8037:80
25+
healthcheck:
26+
interval: 120s
27+
timeout: 2s
28+
retries: 1
29+
depends_on:
30+
- db
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#ddev-generated
2+
# If omit_containers[ddev-router] then this file will be replaced
3+
# with another with a `ports` statement to directly expose port 80 to 8036
4+
services: {}

Build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"email": "typo3@evoweb.de"
88
},
99
"license": "GPL-2.0+",
10-
"version": "5.1.0-dev",
10+
"version": "5.1.0",
1111
"devDependencies": {
1212
"@babel/cli": "^7.22.5",
1313
"@babel/core": "^7.22.5",

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 5.1.0
2+
3+
## FEATURE
4+
5+
- d19df59 [FEATURE] Suggest tag for session
6+
7+
## MISC
8+
9+
- 9f7bd9f Load tags only if field is enabled
10+
11+
## Contributors
12+
13+
- Marvin Buchmann
14+
115
# 5.0.0
216

317
## FEATURE

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"web-dir": ".build/public"
5858
},
5959
"branch-alias": {
60-
"dev-develop": "5.1.x-dev"
60+
"dev-master": "5.1.x-dev"
6161
}
6262
},
6363
"prefer-stable": true,

ext_emconf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
'author_company' => '',
1717
'state' => 'stable',
1818
'clearCacheOnLoad' => 1,
19-
'version' => '5.1.0-dev',
19+
'version' => '5.1.0',
2020
'constraints' => [
2121
'depends' => [
2222
'typo3' => '11.0.0-12.4.99',

0 commit comments

Comments
 (0)