Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.15 #4749

Merged
merged 27 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
fcca63a
bump version
kevinpapst Apr 6, 2024
fdf62ec
install phpstan-deprecations package
kevinpapst Apr 6, 2024
d291c0d
fix deprecations
kevinpapst Apr 6, 2024
4b0c0bb
fix deprecations
kevinpapst Apr 6, 2024
4bfa496
code style
kevinpapst Apr 6, 2024
783fd04
visual cleanup
kevinpapst Apr 6, 2024
9867804
added number to hydrator
kevinpapst Apr 9, 2024
1f3301d
added date for formatting
kevinpapst Apr 9, 2024
24e0ac3
fix tests
kevinpapst Apr 9, 2024
0fc74d4
only test default directory
kevinpapst Apr 9, 2024
5e1eefd
phpstan
kevinpapst Apr 9, 2024
ed79d87
fix "cannot redirect to empty url" issue
kevinpapst Apr 9, 2024
fad4716
added missing invoice_text variables for activity and project
kevinpapst Apr 10, 2024
19e421f
clarify expected datetime format
kevinpapst Apr 10, 2024
afa152b
simplify 2fa deactivation form
kevinpapst Apr 11, 2024
13bb9bf
sort by activity_number
kevinpapst Apr 11, 2024
5e05bd3
sort by project_number
kevinpapst Apr 11, 2024
6fce6ba
do not write password for ldap and saml user
kevinpapst Apr 11, 2024
1360c5c
better reponsive column setup for timesheets
kevinpapst Apr 12, 2024
9b3b96c
trying to fix API token issue
kevinpapst Apr 12, 2024
6b71945
bump packages
kevinpapst Apr 12, 2024
f8ef525
sync with official symfony recipe
kevinpapst Apr 12, 2024
bcc7708
use duration as my working time in dashboard widget
kevinpapst Apr 12, 2024
b3a92ab
fix hash
kevinpapst Apr 12, 2024
65a6689
improve index usage
kevinpapst Apr 12, 2024
1dcaeaf
fix deprecation
kevinpapst Apr 12, 2024
976feba
handle Throwables
kevinpapst Apr 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
"fakerphp/faker": "^1.15",
"friendsofphp/php-cs-fixer": "^3.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
Expand Down
147 changes: 103 additions & 44 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions config/packages/doctrine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ doctrine:
types:
datetime: App\Doctrine\UTCDateTimeType
orm:
controller_resolver:
auto_mapping: true
auto_generate_proxy_classes: '%kernel.debug%'
default_entity_manager: default
enable_lazy_ghost_objects: true
Expand Down
3 changes: 2 additions & 1 deletion config/packages/security.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ security:
api:
access_token:
token_handler: App\API\Authentication\AccessTokenHandler
remember_me: false
request_matcher: App\API\Authentication\ApiRequestMatcher
user_checker: App\Security\UserChecker
stateless: true
Expand Down Expand Up @@ -92,7 +93,7 @@ security:
- { path: '^/(%app_locales%)/register', role: PUBLIC_ACCESS }
- { path: '^/(%app_locales%)/resetting', role: PUBLIC_ACCESS }
- { path: '^/(%app_locales%)/', roles: ROLE_USER }
- { path: '^/api', roles: IS_AUTHENTICATED_REMEMBERED }
- { path: '^/api', roles: IS_AUTHENTICATED }

when@test:
# this configuration simplifies testing URLs protected by the security mechanism
Expand Down