Skip to content

Commit a726e87

Browse files
chore: upgrade API Platform to 4.0.17 (#503)
* chore: upgrade API Platform to 4.0.17 * fix: fix pnpm version * chore: upgrade to node 23
1 parent d8763db commit a726e87

File tree

6 files changed

+53
-52
lines changed

6 files changed

+53
-52
lines changed

api/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"php": ">=8.3",
66
"ext-ctype": "*",
77
"ext-iconv": "*",
8-
"api-platform/doctrine-orm": "^4.0.15",
9-
"api-platform/graphql": "^4.0.15",
10-
"api-platform/symfony": "^4.0.15",
8+
"api-platform/doctrine-orm": "^4.0.17",
9+
"api-platform/graphql": "^4.0.17",
10+
"api-platform/symfony": "^4.0.17",
1111
"doctrine/common": "^3.4",
1212
"doctrine/doctrine-bundle": "^2.11",
1313
"doctrine/doctrine-fixtures-bundle": "^4.0",

api/composer.lock

+43-43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/config/packages/api_platform.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
api_platform:
22
title: API Platform's demo
3-
version: 4.0.15
3+
version: 4.0.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!

helm/api-platform/Chart.yaml

+2-2
Original file line numberDiff line numberDiff 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: 4.0.15
20+
version: 4.0.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: 4.0.15
25+
appVersion: 4.0.17
2626

2727
dependencies:
2828
- name: postgresql

pwa/Dockerfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
# Versions
5-
FROM node:21-alpine AS node_upstream
5+
FROM node:23-alpine AS node_upstream
66

77

88
# Base stage for dev and build
@@ -14,7 +14,8 @@ RUN apk add --no-cache libc6-compat
1414

1515
WORKDIR /srv/app
1616

17-
RUN corepack enable && \
17+
RUN apk upgrade && \
18+
corepack enable && \
1819
corepack prepare --activate pnpm@latest && \
1920
pnpm config -g set store-dir /.pnpm-store
2021

pwa/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
"eslint-config-next": "^15.1.5",
5252
"typescript": "^5.7.3"
5353
},
54-
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
54+
"packageManager": "pnpm@10.3.0"
5555
}

0 commit comments

Comments
 (0)