File tree Expand file tree Collapse file tree 8 files changed +15
-20
lines changed Expand file tree Collapse file tree 8 files changed +15
-20
lines changed Original file line number Diff line number Diff line change @@ -107,8 +107,6 @@ jobs:
107
107
POSTGRES_PASSWORD : aae5bf316ef5fe87ad806c6a9240fff68bcfdaf7
108
108
KEYCLOAK_POSTGRES_PASSWORD : 26d7f630f1524eb210bbf496443f2038a9316e9e
109
109
KEYCLOAK_ADMIN_PASSWORD : 2f31e2fad93941b818449fd8d57fd019b6ce7fa5
110
- KEYCLOAK_HTTPS_CERTIFICATE_FILE : ./helm/api-platform/keycloak/certs/tls.crt
111
- KEYCLOAK_HTTPS_CERTIFICATE_KEY_FILE : ./helm/api-platform/keycloak/certs/tls.pem
112
110
# https://docs.docker.com/compose/environment-variables/envvars/#compose_file
113
111
COMPOSE_FILE : compose.yaml:compose.prod.yaml:compose.e2e.yaml
114
112
steps :
Original file line number Diff line number Diff line change 33
33
"symfony/uid" : " 7.0.*" ,
34
34
"symfony/validator" : " 7.0.*" ,
35
35
"symfony/yaml" : " 7.0.*" ,
36
- "web-token/jwt-checker" : " ^3.2" ,
37
- "web-token/jwt-signature-algorithm-ecdsa" : " ^3.2" ,
36
+ "web-token/jwt-library" : " ^3.3" ,
38
37
"webonyx/graphql-php" : " ^15.8" ,
39
38
"zenstruck/foundry" : " ^1.36"
40
39
},
47
46
"phpstan/phpstan-doctrine" : " ^1.3" ,
48
47
"phpstan/phpstan-phpunit" : " ^1.3" ,
49
48
"phpstan/phpstan-symfony" : " ^1.3" ,
50
- "phpunit/phpunit" : " ^10.5 " ,
49
+ "phpunit/phpunit" : " ^11.0 " ,
51
50
"symfony/browser-kit" : " 7.0.*" ,
52
51
"symfony/css-selector" : " 7.0.*" ,
53
52
"symfony/debug-bundle" : " 7.0.*" ,
Original file line number Diff line number Diff line change 1
1
api_platform :
2
2
title : API Platform's demo
3
- version : 3.2.16
3
+ version : 3.2.17
4
4
description : |
5
5
This is a demo application of the [API Platform](https://api-platform.com) framework.
6
6
[Its source code](https://github.com/api-platform/demo) includes various examples, check it out!
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ services:
8
8
KEYCLOAK_HTTPS_CERTIFICATE_FILE : /opt/bitnami/keycloak/certs/tls.crt
9
9
KEYCLOAK_HTTPS_CERTIFICATE_KEY_FILE : /opt/bitnami/keycloak/certs/tls.key
10
10
volumes :
11
- - ${KEYCLOAK_HTTPS_CERTIFICATE_FILE} :/opt/bitnami/keycloak/certs/tls.crt:ro
12
- - ${KEYCLOAK_HTTPS_CERTIFICATE_KEY_FILE} :/opt/bitnami/keycloak/certs/tls.key:ro
11
+ - ./helm/api-platform/keycloak/certs/tls.crt :/opt/bitnami/keycloak/certs/tls.crt:ro
12
+ - ./helm/api-platform/keycloak/certs/tls.pem :/opt/bitnami/keycloak/certs/tls.key:ro
13
13
14
14
keycloak-config-cli :
15
15
extends :
Original file line number Diff line number Diff line change @@ -64,7 +64,5 @@ services:
64
64
KEYCLOAK_AVAILABILITYCHECK_ENABLED : " true"
65
65
KEYCLOAK_AVAILABILITYCHECK_TIMEOUT : 120s
66
66
IMPORT_FILES_LOCATIONS : " /config/*"
67
- depends_on :
68
- - keycloak
69
67
volumes :
70
68
- ./helm/api-platform/keycloak/config:/config
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ type: application
17
17
# This is the chart version. This version number should be incremented each time you make changes
18
18
# to the chart and its templates, including the app version.
19
19
# Versions are expected to follow Semantic Versioning (https://semver.org/)
20
- version : 3.2.16
20
+ version : 3.2.17
21
21
22
22
# This is the version number of the application being deployed. This version number should be
23
23
# incremented each time you make changes to the application. Versions are not expected to
24
24
# follow Semantic Versioning. They should reflect the version the application is using.
25
- appVersion : 3.2.16
25
+ appVersion : 3.2.17
26
26
27
27
dependencies :
28
28
- name : postgresql
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export class BookPage extends AbstractPage {
35
35
await this . page . getByLabel ( "Add filter" ) . click ( ) ;
36
36
await this . page . getByRole ( "menu" ) . getByText ( "Title" ) . waitFor ( { state : "visible" } ) ;
37
37
await this . page . getByRole ( "menu" ) . getByText ( "Title" ) . click ( ) ;
38
- await this . page . getByLabel ( " Title") . fill ( filters . title ) ;
38
+ await this . page . getByRole ( "textbox" , { name : " Title" } ) . fill ( filters . title ) ;
39
39
await this . page . waitForResponse ( / \/ b o o k s / ) ;
40
40
}
41
41
You can’t perform that action at this time.
0 commit comments