Skip to content
This repository was archived by the owner on Mar 28, 2025. It is now read-only.

Commit de33395

Browse files
committed
Bump version & add manual fixes
1 parent 79e0d85 commit de33395

File tree

96 files changed

+107
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+107
-107
lines changed

Diff for: Api/ApiServer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Api/AuthenticationApiInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Api/MediaLibraryApiInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Api/NotificationsApiInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Api/ProjectsApiInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Api/SearchApiInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Api/UserApiInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Api/UtilityApiInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Controller/AuthenticationController.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/
@@ -227,7 +227,7 @@ public function authenticationOauthPostAction(Request $request)
227227

228228
// Deserialize the input values that needs it
229229
try {
230-
$inputFormat = $request->getMimeType($request->getRequestFormat());
230+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
231231
$o_auth_login_request = $this->deserialize($o_auth_login_request, 'OpenAPI\Server\Model\OAuthLoginRequest', $inputFormat);
232232
} catch (SerializerRuntimeException $exception) {
233233
return $this->createBadRequestResponse($exception->getMessage());
@@ -330,7 +330,7 @@ public function authenticationPostAction(Request $request)
330330

331331
// Deserialize the input values that needs it
332332
try {
333-
$inputFormat = $request->getMimeType($request->getRequestFormat());
333+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
334334
$login_request = $this->deserialize($login_request, 'OpenAPI\Server\Model\LoginRequest', $inputFormat);
335335
} catch (SerializerRuntimeException $exception) {
336336
return $this->createBadRequestResponse($exception->getMessage());
@@ -433,7 +433,7 @@ public function authenticationRefreshPostAction(Request $request)
433433

434434
// Deserialize the input values that needs it
435435
try {
436-
$inputFormat = $request->getMimeType($request->getRequestFormat());
436+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
437437
$refresh_request = $this->deserialize($refresh_request, 'OpenAPI\Server\Model\RefreshRequest', $inputFormat);
438438
} catch (SerializerRuntimeException $exception) {
439439
return $this->createBadRequestResponse($exception->getMessage());
@@ -535,7 +535,7 @@ public function authenticationUpgradePostAction(Request $request)
535535

536536
// Deserialize the input values that needs it
537537
try {
538-
$inputFormat = $request->getMimeType($request->getRequestFormat());
538+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
539539
$upgrade_token_request = $this->deserialize($upgrade_token_request, 'OpenAPI\Server\Model\UpgradeTokenRequest', $inputFormat);
540540
} catch (SerializerRuntimeException $exception) {
541541
return $this->createBadRequestResponse($exception->getMessage());

Diff for: Controller/Controller.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/
@@ -214,7 +214,7 @@ protected function getOutputFormat(string $accept, array $produced): ?string
214214
public static function isContentTypeAllowed(Request $request, array $consumes = []): bool
215215
{
216216
if (!empty($consumes) && '*/*' !== $consumes[0]) {
217-
$currentFormat = $request->getRequestFormat();
217+
$currentFormat = $request->getContentTypeFormat();
218218
foreach ($consumes as $mimeType) {
219219
// canonize mime type
220220
if (is_string($mimeType) && false !== $pos = strpos($mimeType, ';')) {
@@ -225,7 +225,7 @@ public static function isContentTypeAllowed(Request $request, array $consumes =
225225
// add custom format to request
226226
$format = $mimeType;
227227
$request->setFormat($format, $format);
228-
$currentFormat = $request->getRequestFormat();
228+
$currentFormat = $request->getContentTypeFormat();
229229
}
230230

231231
if ($format === $currentFormat) {

Diff for: Controller/MediaLibraryController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Controller/NotificationsController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Controller/ProjectsController.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/
@@ -344,7 +344,7 @@ public function projectIdPutAction(Request $request, $id)
344344
// Deserialize the input values that needs it
345345
try {
346346
$id = $this->deserialize($id, 'string', 'string');
347-
$inputFormat = $request->getMimeType($request->getRequestFormat());
347+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
348348
$update_project_request = $this->deserialize($update_project_request, 'OpenAPI\Server\Model\UpdateProjectRequest', $inputFormat);
349349
$accept_language = $this->deserialize($accept_language, 'string', 'string');
350350
} catch (SerializerRuntimeException $exception) {
@@ -605,7 +605,7 @@ public function projectIdReportPostAction(Request $request, $id)
605605
// Deserialize the input values that needs it
606606
try {
607607
$id = $this->deserialize($id, 'string', 'string');
608-
$inputFormat = $request->getMimeType($request->getRequestFormat());
608+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
609609
$project_report_request = $this->deserialize($project_report_request, 'OpenAPI\Server\Model\ProjectReportRequest', $inputFormat);
610610
} catch (SerializerRuntimeException $exception) {
611611
return $this->createBadRequestResponse($exception->getMessage());

Diff for: Controller/SearchController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Controller/UserController.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/
@@ -304,7 +304,7 @@ public function userPostAction(Request $request)
304304

305305
// Deserialize the input values that needs it
306306
try {
307-
$inputFormat = $request->getMimeType($request->getRequestFormat());
307+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
308308
$register_request = $this->deserialize($register_request, 'OpenAPI\Server\Model\RegisterRequest', $inputFormat);
309309
$accept_language = $this->deserialize($accept_language, 'string', 'string');
310310
} catch (SerializerRuntimeException $exception) {
@@ -415,7 +415,7 @@ public function userPutAction(Request $request)
415415

416416
// Deserialize the input values that needs it
417417
try {
418-
$inputFormat = $request->getMimeType($request->getRequestFormat());
418+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
419419
$update_user_request = $this->deserialize($update_user_request, 'OpenAPI\Server\Model\UpdateUserRequest', $inputFormat);
420420
$accept_language = $this->deserialize($accept_language, 'string', 'string');
421421
} catch (SerializerRuntimeException $exception) {
@@ -522,7 +522,7 @@ public function userResetPasswordPostAction(Request $request)
522522

523523
// Deserialize the input values that needs it
524524
try {
525-
$inputFormat = $request->getMimeType($request->getRequestFormat());
525+
$inputFormat = $request->getMimeType($request->getContentTypeFormat());
526526
$reset_password_request = $this->deserialize($reset_password_request, 'OpenAPI\Server\Model\ResetPasswordRequest', $inputFormat);
527527
$accept_language = $this->deserialize($accept_language, 'string', 'string');
528528
} catch (SerializerRuntimeException $exception) {

Diff for: Controller/UtilityController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: DependencyInjection/Compiler/OpenAPIServerApiPass.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: DependencyInjection/OpenAPIServerExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/BaseUser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/BasicUserDataResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/DryRun.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/ExtendedUserDataResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/ExtensionResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/FeaturedProjectResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/JWTResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/LoginRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/MediaCategoryResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/MediaFileResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/MediaPackageResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/NotificationContent.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/NotificationResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/NotificationsCountResponse.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

Diff for: Model/OAuthLoginRequest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* API for the Catrobat Share Platform
1818
*
19-
* The version of the OpenAPI document: v1.4.1
19+
* The version of the OpenAPI document: v1.4.2
2020
* Contact: [email protected]
2121
* Generated by: https://github.com/openapitools/openapi-generator.git
2222
*/

0 commit comments

Comments
 (0)