Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
dd8018d
[CS] Improved implementation of UserMetadata criterion parser (#122)
alongosz Aug 20, 2024
c468482
Merged branch '4.6'
alongosz Aug 20, 2024
c9338e4
IBX-8596: Added BaseCriterionProcessor (#116)
ciastektk Aug 20, 2024
6fa825f
Merge remote-tracking branch 'origin/4.6'
ciastektk Aug 20, 2024
4d17d61
Added missing strict types declaration to BaseCriterionProcessor (#127)
alongosz Aug 29, 2024
b2a1eb8
Merged branch '4.6'
alongosz Aug 29, 2024
878881a
IBX-8138: [Rector] Applied rules from Symfony 5 Rector set lists (#118)
alongosz Aug 29, 2024
171a913
IBX-8603: Allow deeper media-type granulation
Nattfarinn Sep 3, 2024
397d3b5
Added `strict_mode` for REST APIs (#124)
Steveb-p Sep 3, 2024
49a2bfd
Merge branch '4.6'
Steveb-p Sep 3, 2024
e2b32ed
IBX-8597: Added BaseSortClauseProcessor
ciastektk Sep 4, 2024
42df177
Merge branch '4.6'
Steveb-p Sep 4, 2024
7a8dbe8
IBX-8726: Added support for IsBookmarked criterion (#123)
ciastektk Sep 4, 2024
32983f1
Merge remote-tracking branch 'origin/4.6'
ciastektk Sep 5, 2024
c6cf637
IBX-8535: Deprecated RequestParser and it's implementations (#129)
ViniTou Sep 6, 2024
635df90
Merge remote-tracking branch 'origin/4.6'
ViniTou Sep 9, 2024
9d59dc8
[CI] Fixed Tests and codestyle (#133)
ViniTou Sep 10, 2024
0955cbf
IBX-8534: Dropped usage of deprecated contentService::loadContentDraf…
ViniTou Oct 7, 2024
eb879e0
IBX-8535: Dropped deprecated code (#131)
ViniTou Oct 7, 2024
a3f7066
Regenerated PHPStan baseline files
Steveb-p Oct 11, 2024
fd2cbf5
IBX-8784: Added `AbstractExceptionVisitor` template to allow fine-gra…
Steveb-p Oct 11, 2024
7c9ab33
Merge branch '4.6'
Steveb-p Oct 11, 2024
4fce25f
IBX-8535: Dropped deprecated loadRelations usage (#137)
ViniTou Nov 4, 2024
7f5fcc5
IBX-8534: Change deprecated path to inputUri (#139)
ViniTou Dec 10, 2024
be3ca7e
IBX-9321: Bumped GH action versions (#108)
glye Dec 11, 2024
c660ac3
Merged branch '1.3' of ezsystems/ezplatform-rest into 4.6
alongosz Dec 13, 2024
efd913b
[PHPStan] Regenerated baseline files after PHPStan release
alongosz Dec 13, 2024
1afd8a2
Merged branch '4.6'
alongosz Dec 13, 2024
a18b9be
[PHPStan] Dropped obsolete baseline files for PHP <8.3
alongosz Dec 13, 2024
3bcf127
Add missing docblock summary to NotFoundException (#142)
adriendupuis Dec 27, 2024
d229dbc
Merge branch '4.6'
adamwojs Dec 27, 2024
7be71cf
Updated copyright year to 2025
ibexa-yuna Jan 22, 2025
05e84e5
Merge branch '4.6'
ibexa-yuna Jan 22, 2025
d87f621
IBX-8470: Upgraded codebase to Symfony 6 (#138)
alongosz Feb 4, 2025
a42533f
Merge branch 'main' into IBX-8921-prepare-openapi-symfony-command-SF6
adriendupuis Feb 12, 2025
7aa627f
Update api-platform/core version
adriendupuis Feb 12, 2025
0f14dfb
UserBaseController.php: Fix $repository type hinting
adriendupuis Feb 12, 2025
48889c2
api_platform.yml: Comment out non-existing args
adriendupuis Feb 13, 2025
69f827d
SectionCreateController.php: Convert syntax from 2.7 to 3.0
adriendupuis Feb 13, 2025
1882721
SectionDeleteController.php: Convert syntax from 2.7 to 3.0
adriendupuis Feb 13, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests-callable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
coverage: none

- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: ${{ env.COMPOSER_CACHE_DIR }}
key: "${{ env.PROJECT_EDITION }}-${{ env.version }}-${{ github.sha }}"
Expand Down
1 change: 1 addition & 0 deletions .php-cs-fixer.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
$configFactory = new InternalConfigFactory();
$configFactory->withRules([
'declare_strict_types' => false,
'phpdoc_no_empty_return' => false,
]);

return $configFactory
Expand Down
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 1999-2024 Ibexa AS (formerly eZ Systems AS). All rights reserved.
Copyright (C) 1999-2025 Ibexa AS (formerly eZ Systems AS). All rights reserved.

This source code is available separately under the following licenses:

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 1999-2024 Ibexa AS (formerly eZ Systems AS). All rights reserved.
Copyright (C) 1999-2025 Ibexa AS (formerly eZ Systems AS). All rights reserved.

This source code is available separately under the following licenses:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Source. See [the official documentation](https://doc.ibexa.co/)
or [REST API Reference](https://ezsystems.github.io/ezplatform-rest-reference/) to learn more.

## COPYRIGHT
Copyright (C) 1999-2024 Ibexa AS (formerly eZ Systems AS). All rights reserved.
Copyright (C) 1999-2025 Ibexa AS (formerly eZ Systems AS). All rights reserved.

## LICENSE
This source code is available separately under the following licenses:
Expand Down
32 changes: 16 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,28 +28,28 @@
"ext-libxml": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"api-platform/core": "dev-downgraded-deps",
"api-platform/core": "^3.0",
"hautelook/templated-uri-bundle": "^3.4",
"ibexa/core": "~5.0.x-dev",
"ibexa/polyfill-php82": "^1.0",
"lexik/jwt-authentication-bundle": "^2.8",
"symfony/config": "^5.3",
"symfony/dependency-injection": "^5.3",
"symfony/event-dispatcher": "^5.3",
"symfony/expression-language": "^5.3",
"symfony/form": "^5.3",
"symfony/http-foundation": "^5.3",
"symfony/http-kernel": "^5.3",
"symfony/routing": "^5.3",
"symfony/security-bundle": "^5.3",
"symfony/security-csrf": "^5.3",
"symfony/yaml": "^5.3",
"symfony/config": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/event-dispatcher": "^6.4",
"symfony/expression-language": "^6.4",
"symfony/form": "^6.4",
"symfony/http-foundation": "^6.4",
"symfony/http-kernel": "^6.4",
"symfony/routing": "^6.4",
"symfony/security-bundle": "^6.4",
"symfony/security-csrf": "^6.4",
"symfony/yaml": "^6.4",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ibexa/ci-scripts": "^0.2@dev",
"ibexa/code-style": "~2.0.0",
"ibexa/doctrine-schema": "~5.0.x-dev",
"ibexa/test-core": "^0.1.x-dev",
"ibexa/test-core": "~5.0.x-dev",
"justinrainbow/json-schema": "^5.2",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"nyholm/psr7": "^1.1",
Expand All @@ -58,8 +58,8 @@
"phpstan/phpstan-symfony": "^1.3",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^9.6",
"symfony/browser-kit": "^5.3",
"symfony/http-client": "^5.3"
"symfony/browser-kit": "^6.4",
"symfony/http-client": "^6.4"
},
"config": {
"allow-plugins": {
Expand Down
46 changes: 0 additions & 46 deletions phpstan-baseline-7.4.neon

This file was deleted.

6 changes: 0 additions & 6 deletions phpstan-baseline-8.0-specific.neon

This file was deleted.

61 changes: 0 additions & 61 deletions phpstan-baseline-8.0.neon

This file was deleted.

Loading
Loading