Skip to content

Commit

Permalink
chore: update doctrine/orm for hotfix (#418)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincentchalamon authored Jun 26, 2024
1 parent c7f9975 commit a813436
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
16 changes: 8 additions & 8 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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
api_platform:
title: API Platform's demo
version: 3.3.6
version: 3.3.6-1
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 api/src/Security/Http/Protection/ResourceResourceHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function create(object $resource, UserInterface $owner, array $context =
operationName: $context['operation_name'] ?? null,
httpOperation: true,
);
$shortName = strtolower(preg_replace('~(?<=\\w)([A-Z])~', '-$1', $operation->getShortName()));
$shortName = strtolower(preg_replace('~(?<=\w)([A-Z])~', '-$1', $operation->getShortName()));
$resourceIri = $this->iriConverter->getIriFromResource(
resource: $resource,
referenceType: UrlGeneratorInterface::ABS_PATH,
Expand All @@ -56,7 +56,7 @@ public function delete(object $resource, UserInterface $owner, array $context =
operationName: $context['operation_name'] ?? null,
httpOperation: true,
);
$shortName = strtolower(preg_replace('~(?<=\\w)([A-Z])~', '-$1', $operation->getShortName()));
$shortName = strtolower(preg_replace('~(?<=\w)([A-Z])~', '-$1', $operation->getShortName()));
$resourceIri = $this->iriConverter->getIriFromResource(
resource: $resource,
referenceType: UrlGeneratorInterface::ABS_PATH,
Expand Down
4 changes: 2 additions & 2 deletions helm/api-platform/Chart.yaml
Original file line number Diff line number Diff line change
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.3.6
version: 3.3.6-1

# 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.3.6
appVersion: 3.3.6-1

dependencies:
- name: postgresql
Expand Down

0 comments on commit a813436

Please sign in to comment.