You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Resolve conflict with `db.schema` component. App code used `db.schema`
name for `DbSchemaExtensions` component. Starting from Laravel 9 this
name is used internally because of migration to string based accessor
for Schema facade laravel/framework@8059b39.
The cure is to use `df` prefix for app `db.schema` component.
Fix single quotes encode in error message. In PHP 8 default string
escape strategy changed to escape single quotes (') as well. This commit
adds explicit use of `ENT_COMPAT` flag.
See https://www.php.net/manual/en/function.htmlentities.php
Get rid of request dynamic properties retrieving.
`request->wrap` dynamic property was leading to full request params
reload including file uploads. Uploaded file was moved and not available
that caused an error. Instead we explicitly read query param by name.
Resolve deprecated required parameter after optional one.
See https://php.watch/versions/8.0/deprecate-required-param-after-optional
Fix db migration using SQLite. Connection config must hold `name`
property since Laravel 8.83.2. See laravel/framework@03e3a807.
Use 30 sec timeout for cURL requests. Misconfigured TCP logger was
leading to system hang up because of endless waiting for response.
Now requests will fail after 30 seconds of waiting.
We could switch to v2.0 of tymon/jwt-auth package when this issue got resolved:
tymondesigns/jwt-auth#2213
Other changes:
- Update dependencies
- Upgrade CORS middleware
- Fix unit tests
0 commit comments