Skip to content

Commit

Permalink
chore: update api-platform/core to 3.2.17 (#389)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchalamon committed Mar 15, 2024
1 parent 89eb4f7 commit 86ff43b
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 20 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -107,8 +107,6 @@ jobs:
POSTGRES_PASSWORD: aae5bf316ef5fe87ad806c6a9240fff68bcfdaf7
KEYCLOAK_POSTGRES_PASSWORD: 26d7f630f1524eb210bbf496443f2038a9316e9e
KEYCLOAK_ADMIN_PASSWORD: 2f31e2fad93941b818449fd8d57fd019b6ce7fa5
KEYCLOAK_HTTPS_CERTIFICATE_FILE: ./helm/api-platform/keycloak/certs/tls.crt
KEYCLOAK_HTTPS_CERTIFICATE_KEY_FILE: ./helm/api-platform/keycloak/certs/tls.pem
# https://docs.docker.com/compose/environment-variables/envvars/#compose_file
COMPOSE_FILE: compose.yaml:compose.prod.yaml:compose.e2e.yaml
steps:
Expand Down
5 changes: 2 additions & 3 deletions api/composer.json
Expand Up @@ -33,8 +33,7 @@
"symfony/uid": "7.0.*",
"symfony/validator": "7.0.*",
"symfony/yaml": "7.0.*",
"web-token/jwt-checker": "^3.2",
"web-token/jwt-signature-algorithm-ecdsa": "^3.2",
"web-token/jwt-library": "^3.3",
"webonyx/graphql-php": "^15.8",
"zenstruck/foundry": "^1.36"
},
Expand All @@ -47,7 +46,7 @@
"phpstan/phpstan-doctrine": "^1.3",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.5",
"phpunit/phpunit": "^11.0",
"symfony/browser-kit": "7.0.*",
"symfony/css-selector": "7.0.*",
"symfony/debug-bundle": "7.0.*",
Expand Down
14 changes: 7 additions & 7 deletions api/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion api/config/packages/api_platform.yaml
@@ -1,6 +1,6 @@
api_platform:
title: API Platform's demo
version: 3.2.16
version: 3.2.17
description: |
This is a demo application of the [API Platform](https://api-platform.com) framework.
[Its source code](https://github.com/api-platform/demo) includes various examples, check it out!
Expand Down
4 changes: 2 additions & 2 deletions compose.e2e.yaml
Expand Up @@ -8,8 +8,8 @@ services:
KEYCLOAK_HTTPS_CERTIFICATE_FILE: /opt/bitnami/keycloak/certs/tls.crt
KEYCLOAK_HTTPS_CERTIFICATE_KEY_FILE: /opt/bitnami/keycloak/certs/tls.key
volumes:
- ${KEYCLOAK_HTTPS_CERTIFICATE_FILE}:/opt/bitnami/keycloak/certs/tls.crt:ro
- ${KEYCLOAK_HTTPS_CERTIFICATE_KEY_FILE}:/opt/bitnami/keycloak/certs/tls.key:ro
- ./helm/api-platform/keycloak/certs/tls.crt:/opt/bitnami/keycloak/certs/tls.crt:ro
- ./helm/api-platform/keycloak/certs/tls.pem:/opt/bitnami/keycloak/certs/tls.key:ro

keycloak-config-cli:
extends:
Expand Down
2 changes: 0 additions & 2 deletions compose.override.yaml
Expand Up @@ -64,7 +64,5 @@ services:
KEYCLOAK_AVAILABILITYCHECK_ENABLED: "true"
KEYCLOAK_AVAILABILITYCHECK_TIMEOUT: 120s
IMPORT_FILES_LOCATIONS: "/config/*"
depends_on:
- keycloak
volumes:
- ./helm/api-platform/keycloak/config:/config
4 changes: 2 additions & 2 deletions helm/api-platform/Chart.yaml
Expand Up @@ -17,12 +17,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 3.2.16
version: 3.2.17

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 3.2.16
appVersion: 3.2.17

dependencies:
- name: postgresql
Expand Down
2 changes: 1 addition & 1 deletion pwa/tests/admin/pages/BookPage.ts
Expand Up @@ -35,7 +35,7 @@ export class BookPage extends AbstractPage {
await this.page.getByLabel("Add filter").click();
await this.page.getByRole("menu").getByText("Title").waitFor({ state: "visible" });
await this.page.getByRole("menu").getByText("Title").click();
await this.page.getByLabel("Title").fill(filters.title);
await this.page.getByRole("textbox", { name: "Title" }).fill(filters.title);
await this.page.waitForResponse(/\/books/);
}

Expand Down

0 comments on commit 86ff43b

Please sign in to comment.