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:
107107 POSTGRES_PASSWORD : aae5bf316ef5fe87ad806c6a9240fff68bcfdaf7
108108 KEYCLOAK_POSTGRES_PASSWORD : 26d7f630f1524eb210bbf496443f2038a9316e9e
109109 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
112110 # https://docs.docker.com/compose/environment-variables/envvars/#compose_file
113111 COMPOSE_FILE : compose.yaml:compose.prod.yaml:compose.e2e.yaml
114112 steps :
Original file line number Diff line number Diff line change 3333 "symfony/uid" : " 7.0.*" ,
3434 "symfony/validator" : " 7.0.*" ,
3535 "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" ,
3837 "webonyx/graphql-php" : " ^15.8" ,
3938 "zenstruck/foundry" : " ^1.36"
4039 },
4746 "phpstan/phpstan-doctrine" : " ^1.3" ,
4847 "phpstan/phpstan-phpunit" : " ^1.3" ,
4948 "phpstan/phpstan-symfony" : " ^1.3" ,
50- "phpunit/phpunit" : " ^10.5 " ,
49+ "phpunit/phpunit" : " ^11.0 " ,
5150 "symfony/browser-kit" : " 7.0.*" ,
5251 "symfony/css-selector" : " 7.0.*" ,
5352 "symfony/debug-bundle" : " 7.0.*" ,
Original file line number Diff line number Diff line change 11api_platform :
22 title : API Platform's demo
3- version : 3.2.16
3+ version : 3.2.17
44 description : |
55 This is a demo application of the [API Platform](https://api-platform.com) framework.
66 [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:
88 KEYCLOAK_HTTPS_CERTIFICATE_FILE : /opt/bitnami/keycloak/certs/tls.crt
99 KEYCLOAK_HTTPS_CERTIFICATE_KEY_FILE : /opt/bitnami/keycloak/certs/tls.key
1010 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
1313
1414 keycloak-config-cli :
1515 extends :
Original file line number Diff line number Diff line change @@ -64,7 +64,5 @@ services:
6464 KEYCLOAK_AVAILABILITYCHECK_ENABLED : " true"
6565 KEYCLOAK_AVAILABILITYCHECK_TIMEOUT : 120s
6666 IMPORT_FILES_LOCATIONS : " /config/*"
67- depends_on :
68- - keycloak
6967 volumes :
7068 - ./helm/api-platform/keycloak/config:/config
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ type: application
1717# This is the chart version. This version number should be incremented each time you make changes
1818# to the chart and its templates, including the app version.
1919# Versions are expected to follow Semantic Versioning (https://semver.org/)
20- version : 3.2.16
20+ version : 3.2.17
2121
2222# This is the version number of the application being deployed. This version number should be
2323# incremented each time you make changes to the application. Versions are not expected to
2424# follow Semantic Versioning. They should reflect the version the application is using.
25- appVersion : 3.2.16
25+ appVersion : 3.2.17
2626
2727dependencies :
2828 - name : postgresql
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export class BookPage extends AbstractPage {
3535 await this . page . getByLabel ( "Add filter" ) . click ( ) ;
3636 await this . page . getByRole ( "menu" ) . getByText ( "Title" ) . waitFor ( { state : "visible" } ) ;
3737 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 ) ;
3939 await this . page . waitForResponse ( / \/ b o o k s / ) ;
4040 }
4141
You can’t perform that action at this time.
0 commit comments