Skip to content

Commit f3a9d90

Browse files
Merge branch 'hotfix/v2.3.1'
2 parents 03fa65a + e94b9d8 commit f3a9d90

9 files changed

+19
-44
lines changed

CHANGELOG.md

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

33
All notable changes to project will be documented in this file.
44

5+
## [2.3.1](https://github.com/roadiz/skeleton/compare/v2.3.0...v2.3.1) - 2024-05-16
6+
7+
### Bug Fixes
8+
9+
- Missing redis-messenger package at composer create-project. Missing JWT_PASSPHRASE default value. - ([c27aebc](https://github.com/roadiz/skeleton/commit/c27aebc8d60ef5df21e5ba0fdc16b8a520d7a1bb)) - Ambroise Maupate
10+
511
## [2.3.0](https://github.com/roadiz/skeleton/compare/v2.2.1...v2.3.0) - 2024-05-15
612

713
### Bug Fixes

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"nelmio/cors-bundle": "^2.4",
1313
"roadiz/cms-pack": "^2.0.1",
1414
"sentry/sentry-symfony": "^4.13",
15+
"symfony/redis-messenger": "6.4.*",
1516
"symfony/flex": "*",
1617
"symfony/requirements-checker": "^2.0"
1718
},

composer.json.dist

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"nelmio/cors-bundle": "^2.4",
1313
"roadiz/cms-pack": "^2.0.1",
1414
"sentry/sentry-symfony": "^4.13",
15+
"symfony/redis-messenger": "6.4.*",
1516
"symfony/flex": "*",
1617
"symfony/requirements-checker": "^2.0"
1718
},

config/packages/lexik_jwt_authentication.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
parameters:
2+
env(JWT_PASSPHRASE): '!ChangeMe!'
3+
14
lexik_jwt_authentication:
25
secret_key: '%env(resolve:JWT_SECRET_KEY)%'
36
public_key: '%env(resolve:JWT_PUBLIC_KEY)%'

docker-compose.prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Production template
22
# Replace “my-registry/roadiz_skeleton” with your own project registry URL
3-
name: skeleton
3+
#name: skeleton
44
services:
55
db:
66
image: mysql:8.0

docker-compose.restore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Restoring from a backup into development environment
22
# Separate file to avoid running the restore services when using docker-compose up
33
# docker compose -f docker-compose.restore.yml --env-file .env.local run --rm restore_files
4-
name: skeleton
4+
#name: skeleton
55
services:
66
restore_files:
77
# Keep the same hostname for all Restic services

docker-compose.symfony.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Only use this docker compose template if you prefer using symfony server:start
33
#
4-
name: skeleton
4+
#name: skeleton
55
services:
66
db:
77
build:

docker-compose.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: skeleton
1+
#name: skeleton
22
services:
33
db:
44
build:
@@ -21,8 +21,8 @@ services:
2121

2222
pma:
2323
image: phpmyadmin/phpmyadmin
24-
# ports:
25-
# - ${PUBLIC_PMA_PORT}:80/tcp
24+
ports:
25+
- ${PUBLIC_PMA_PORT}:80/tcp
2626
environment:
2727
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD}
2828
MYSQL_DATABASE: ${MYSQL_DATABASE}
@@ -77,8 +77,8 @@ services:
7777

7878
nginx:
7979
image: roadiz/nginx-alpine:latest
80-
# ports:
81-
# - ${PUBLIC_APP_PORT}:80/tcp
80+
ports:
81+
- ${PUBLIC_APP_PORT}:80/tcp
8282
depends_on:
8383
- app
8484
# Nginx does not resolve `app` hostname correctly

migrations/Version20221206171114.php

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)