10000 [FrameworkBundle] Allow secrets vaults to be used directly outside Sy… · symfony/symfony@df953f0 · GitHub
[go: up one dir, main page]

Skip to content

Commit df953f0

Browse files
AndreasAnicolas-grekas
authored andcommitted
[FrameworkBundle] Allow secrets vaults to be used directly outside Symfony
1 parent e788a49 commit df953f0

File tree

4 files changed

+1
-6
lines changed

4 files changed

+1
-6
lines changed

src/Symfony/Bundle/FrameworkBundle/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ CHANGELOG
1616
tagged with `workflow.workflow`, and those with type=state_machine with
1717
`workflow.state_machine`
1818
* Add `rate_limiter` configuration option to `messenger.transport` to allow rate limited transports using the RateLimiter component
19+
* Remove `@internal` tag from secret vaults to allow them to be used directly outside the framework bundle and custom vaults to be added
1920

2021
6.1
2122
---

src/Symfony/Bundle/FrameworkBundle/Secrets/AbstractVault.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Nicolas Grekas <p@tchwork.com>
16-
*
17-
* @internal
1816
*/
1917
abstract class AbstractVault
2018
{

src/Symfony/Bundle/FrameworkBundle/Secrets/DotenvVault.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
/**
1515
* @author Nicolas Grekas <p@tchwork.com>
16-
*
17-
* @internal
1816
*/
1917
class DotenvVault extends AbstractVault
2018
{

src/Symfony/Bundle/FrameworkBundle/Secrets/SodiumVault.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
* @author Tobias Schultze <http://tobion.de>
1919
* @author Jérémy Derussé <jeremy@derusse.com>
2020
* @author Nicolas Grekas <p@tchwork.com>
21-
*
22-
* @internal
2321
*/
2422
class SodiumVault extends AbstractVault implements EnvVarLoaderInterface
2523
{

0 commit comments

Comments
 (0)
0