Changelog
*Sourced from [symfony/http-foundation's changelog](https://github.com/symfony/http-foundation/blob/master/CHANGELOG.md).*
> CHANGELOG
> =========
>
> 5.1.0
> -----
>
> * Deprecate `Response::create()`, `JsonResponse::create()`,
> `RedirectResponse::create()`, and `StreamedResponse::create()` methods (use
> `__construct()` instead)
>
> 5.0.0
> -----
>
> * made `Cookie` auto-secure and lax by default
> * removed classes in the `MimeType` namespace, use the Symfony Mime component instead
> * removed method `UploadedFile::getClientSize()` and the related constructor argument
> * made `Request::getSession()` throw if the session has not been set before
> * removed `Response::HTTP_RESERVED_FOR_WEBDAV_ADVANCED_COLLECTIONS_EXPIRED_PROPOSAL`
> * passing a null url when instantiating a `RedirectResponse` is not allowed
>
> 4.4.0
> -----
>
> * passing arguments to `Request::isMethodSafe()` is deprecated.
> * `ApacheRequest` is deprecated, use the `Request` class instead.
> * passing a third argument to `HeaderBag::get()` is deprecated, use method `all()` instead
> * [BC BREAK] `PdoSessionHandler` with MySQL changed the type of the lifetime column,
> make sure to run `ALTER TABLE sessions MODIFY sess_lifetime INTEGER UNSIGNED NOT NULL` to
> update your database.
> * `PdoSessionHandler` now precalculates the expiry timestamp in the lifetime column,
> make sure to run `CREATE INDEX EXPIRY ON sessions (sess_lifetime)` to update your database
> to speed up garbage collection of expired sessions.
> * added `SessionHandlerFactory` to create session handlers with a DSN
> * added `IpUtils::anonymize()` to help with GDPR compliance.
>
> 4.3.0
> -----
>
> * added PHPUnit constraints: `RequestAttributeValueSame`, `ResponseCookieValueSame`, `ResponseHasCookie`,
> `ResponseHasHeader`, `ResponseHeaderSame`, `ResponseIsRedirected`, `ResponseIsSuccessful`, and `ResponseStatusCodeSame`
> * deprecated `MimeTypeGuesserInterface` and `ExtensionGuesserInterface` in favor of `Symfony\Component\Mime\MimeTypesInterface`.
> * deprecated `MimeType` and `MimeTypeExtensionGuesser` in favor of `Symfony\Component\Mime\MimeTypes`.
> * deprecated `FileBinaryMimeTypeGuesser` in favor of `Symfony\Component\Mime\FileBinaryMimeTypeGuesser`.
> * deprecated `FileinfoMimeTypeGuesser` in favor of `Symfony\Component\Mime\FileinfoMimeTypeGuesser`.
> * added `UrlHelper` that allows to get an absolute URL and a relative path for a given path
>
> 4.2.0
> -----
>
> * the default value of the "$secure" and "$samesite" arguments of Cookie's constructor
> ... (truncated)
Commits
- [`2ae778f`](https://github.com/symfony/http-foundation/commit/2ae778ff4a1f8baba7724db1ca977ada3b796749) [HttpFoundation] fix guessing mime-types of files with leading dash
- [`3f9f40f`](https://github.com/symfony/http-foundation/commit/3f9f40ff0fc507b9994f182c5598e632d0bdaf3c) Merge branch '3.4' into 4.2
- [`c450706`](https://github.com/symfony/http-foundation/commit/c450706851050ade2e1f30d012d50bb9173f7f3d) [HttpFoundation] Fix URLs
- [`61217e4`](https://github.com/symfony/http-foundation/commit/61217e46f7fbc5cfbb22e15e50744c151e2675ad) Remove dead tests fixtures
- [`2565092`](https://github.com/symfony/http-foundation/commit/2565092dede0585ebfc63286a3ceb01c8f7d2af4) Merge branch '3.4' into 4.2
- [`8d530ef`](https://github.com/symfony/http-foundation/commit/8d530ef09f8303aba64a8400f41fff6ecf8dc924) fixed CS
- [`2227b5d`](https://github.com/symfony/http-foundation/commit/2227b5df3f1216bd49743aaaea32f4a5025332d3) bug [#32096](https://github-redirect.dependabot.com/symfony/http-foundation/issues/32096) Don't assume port 0 for X-Forwarded-Port (alexbowers, xabbuh)
- [`e135ecf`](https://github.com/symfony/http-foundation/commit/e135ecf5443500a310d29ef3df722096d39f53de) PHP 5 compat
- [`91b374c`](https://github.com/symfony/http-foundation/commit/91b374c7e43da52615e8e59232c55c13352fb141) Add test case
- [`b8d9ff2`](https://github.com/symfony/http-foundation/commit/b8d9ff2d03542485d5ec82defc28be3291f6b0e7) Merge branch '3.4' into 4.2
- Additional commits viewable in [compare view](https://github.com/symfony/http-foundation/compare/v4.1.3...v4.2.12)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/elliotttate/beatsaver-laravel/network/alerts).
Bumps symfony/http-foundation from 4.1.3 to 4.2.12.
Changelog
*Sourced from [symfony/http-foundation's changelog](https://github.com/symfony/http-foundation/blob/master/CHANGELOG.md).* > CHANGELOG > ========= > > 5.1.0 > ----- > > * Deprecate `Response::create()`, `JsonResponse::create()`, > `RedirectResponse::create()`, and `StreamedResponse::create()` methods (use > `__construct()` instead) > > 5.0.0 > ----- > > * made `Cookie` auto-secure and lax by default > * removed classes in the `MimeType` namespace, use the Symfony Mime component instead > * removed method `UploadedFile::getClientSize()` and the related constructor argument > * made `Request::getSession()` throw if the session has not been set before > * removed `Response::HTTP_RESERVED_FOR_WEBDAV_ADVANCED_COLLECTIONS_EXPIRED_PROPOSAL` > * passing a null url when instantiating a `RedirectResponse` is not allowed > > 4.4.0 > ----- > > * passing arguments to `Request::isMethodSafe()` is deprecated. > * `ApacheRequest` is deprecated, use the `Request` class instead. > * passing a third argument to `HeaderBag::get()` is deprecated, use method `all()` instead > * [BC BREAK] `PdoSessionHandler` with MySQL changed the type of the lifetime column, > make sure to run `ALTER TABLE sessions MODIFY sess_lifetime INTEGER UNSIGNED NOT NULL` to > update your database. > * `PdoSessionHandler` now precalculates the expiry timestamp in the lifetime column, > make sure to run `CREATE INDEX EXPIRY ON sessions (sess_lifetime)` to update your database > to speed up garbage collection of expired sessions. > * added `SessionHandlerFactory` to create session handlers with a DSN > * added `IpUtils::anonymize()` to help with GDPR compliance. > > 4.3.0 > ----- > > * added PHPUnit constraints: `RequestAttributeValueSame`, `ResponseCookieValueSame`, `ResponseHasCookie`, > `ResponseHasHeader`, `ResponseHeaderSame`, `ResponseIsRedirected`, `ResponseIsSuccessful`, and `ResponseStatusCodeSame` > * deprecated `MimeTypeGuesserInterface` and `ExtensionGuesserInterface` in favor of `Symfony\Component\Mime\MimeTypesInterface`. > * deprecated `MimeType` and `MimeTypeExtensionGuesser` in favor of `Symfony\Component\Mime\MimeTypes`. > * deprecated `FileBinaryMimeTypeGuesser` in favor of `Symfony\Component\Mime\FileBinaryMimeTypeGuesser`. > * deprecated `FileinfoMimeTypeGuesser` in favor of `Symfony\Component\Mime\FileinfoMimeTypeGuesser`. > * added `UrlHelper` that allows to get an absolute URL and a relative path for a given path > > 4.2.0 > ----- > > * the default value of the "$secure" and "$samesite" arguments of Cookie's constructor > ... (truncated)Commits
- [`2ae778f`](https://github.com/symfony/http-foundation/commit/2ae778ff4a1f8baba7724db1ca977ada3b796749) [HttpFoundation] fix guessing mime-types of files with leading dash - [`3f9f40f`](https://github.com/symfony/http-foundation/commit/3f9f40ff0fc507b9994f182c5598e632d0bdaf3c) Merge branch '3.4' into 4.2 - [`c450706`](https://github.com/symfony/http-foundation/commit/c450706851050ade2e1f30d012d50bb9173f7f3d) [HttpFoundation] Fix URLs - [`61217e4`](https://github.com/symfony/http-foundation/commit/61217e46f7fbc5cfbb22e15e50744c151e2675ad) Remove dead tests fixtures - [`2565092`](https://github.com/symfony/http-foundation/commit/2565092dede0585ebfc63286a3ceb01c8f7d2af4) Merge branch '3.4' into 4.2 - [`8d530ef`](https://github.com/symfony/http-foundation/commit/8d530ef09f8303aba64a8400f41fff6ecf8dc924) fixed CS - [`2227b5d`](https://github.com/symfony/http-foundation/commit/2227b5df3f1216bd49743aaaea32f4a5025332d3) bug [#32096](https://github-redirect.dependabot.com/symfony/http-foundation/issues/32096) Don't assume port 0 for X-Forwarded-Port (alexbowers, xabbuh) - [`e135ecf`](https://github.com/symfony/http-foundation/commit/e135ecf5443500a310d29ef3df722096d39f53de) PHP 5 compat - [`91b374c`](https://github.com/symfony/http-foundation/commit/91b374c7e43da52615e8e59232c55c13352fb141) Add test case - [`b8d9ff2`](https://github.com/symfony/http-foundation/commit/b8d9ff2d03542485d5ec82defc28be3291f6b0e7) Merge branch '3.4' into 4.2 - Additional commits viewable in [compare view](https://github.com/symfony/http-foundation/compare/v4.1.3...v4.2.12)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/elliotttate/beatsaver-laravel/network/alerts).