Thanks to visit codestin.com
Credit goes to github.com

Skip to content

[FrameworkBundle] Allow secrets vaults to be used directly outside Symfony #47445

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

Merged
merged 1 commit into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ CHANGELOG
tagged with `workflow.workflow`, and those with type=state_machine with
`workflow.state_machine`
* Add `rate_limiter` configuration option to `messenger.transport` to allow rate limited transports using the RateLimiter component
* Remove `@internal` tag from secret vaults to allow them to be used directly outside the framework bundle and custom vaults to be added

6.1
---
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Bundle/FrameworkBundle/Secrets/AbstractVault.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Nicolas Grekas <[email protected]>
*
* @internal
*/
abstract class AbstractVault
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Bundle/FrameworkBundle/Secrets/DotenvVault.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@

/**
* @author Nicolas Grekas <[email protected]>
*
* @internal
*/
class DotenvVault extends AbstractVault
{
Expand Down
2 changes: 0 additions & 2 deletions src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
* @author Tobias Schultze <http://tobion.de>
* @author Jérémy Derussé <[email protected]>
* @author Nicolas Grekas <[email protected]>
*
* @internal
*/
class SodiumVault extends AbstractVault implements EnvVarLoaderInterface
{
Expand Down