Skip to content

Commit a813436

Browse files
chore: update doctrine/orm for hotfix (#418)
1 parent c7f9975 commit a813436

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

api/composer.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/config/packages/api_platform.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
api_platform:
22
title: API Platform's demo
3-
version: 3.3.6
3+
version: 3.3.6-1
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!

api/src/Security/Http/Protection/ResourceResourceHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function create(object $resource, UserInterface $owner, array $context =
3030
operationName: $context['operation_name'] ?? null,
3131
httpOperation: true,
3232
);
33-
$shortName = strtolower(preg_replace('~(?<=\\w)([A-Z])~', '-$1', $operation->getShortName()));
33+
$shortName = strtolower(preg_replace('~(?<=\w)([A-Z])~', '-$1', $operation->getShortName()));
3434
$resourceIri = $this->iriConverter->getIriFromResource(
3535
resource: $resource,
3636
referenceType: UrlGeneratorInterface::ABS_PATH,
@@ -56,7 +56,7 @@ public function delete(object $resource, UserInterface $owner, array $context =
5656
operationName: $context['operation_name'] ?? null,
5757
httpOperation: true,
5858
);
59-
$shortName = strtolower(preg_replace('~(?<=\\w)([A-Z])~', '-$1', $operation->getShortName()));
59+
$shortName = strtolower(preg_replace('~(?<=\w)([A-Z])~', '-$1', $operation->getShortName()));
6060
$resourceIri = $this->iriConverter->getIriFromResource(
6161
resource: $resource,
6262
referenceType: UrlGeneratorInterface::ABS_PATH,

helm/api-platform/Chart.yaml

Lines changed: 2 additions & 2 deletions
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: 3.3.6
20+
version: 3.3.6-1
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.3.6
25+
appVersion: 3.3.6-1
2626

2727
dependencies:
2828
- name: postgresql

0 commit comments

Comments
 (0)