File tree 3 files changed +4
-0
lines changed
src/Symfony/Bundle/SecurityBundle
DependencyInjection/Security/UserProvider
3 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,8 @@ SecurityBundle
113
113
* ` UserPasswordEncoderCommand::getContainer() ` is deprecated, and this class won't
114
114
extend ` ContainerAwareCommand ` nor implement ` ContainerAwareInterface ` anymore in 4.0.
115
115
116
+ * [ BC BREAK] Keys of the ` users ` node for ` in_memory ` user provider are no longer normalized.
117
+
116
118
Serializer
117
119
----------
118
120
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ CHANGELOG
9
9
* Deprecated ` UserPasswordEncoderCommand::getContainer() ` and relying on the
10
10
` ContainerAwareInterface ` interface for this command.
11
11
* Deprecated the ` FirewallMap::$map ` and ` $container ` properties.
12
+ * [ BC BREAK] Keys of the ` users ` node for ` in_memory ` user provider are no longer normalized.
12
13
13
14
3.2.0
14
15
-----
Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ public function addConfiguration(NodeDefinition $node)
52
52
->children ()
53
53
->arrayNode ('users ' )
54
54
->useAttributeAsKey ('name ' )
55
+ ->normalizeKeys (false )
55
56
->prototype ('array ' )
56
57
->children ()
57
58
->scalarNode ('password ' )->defaultValue (uniqid ('' , true ))->end ()
You can’t perform that action at this time.
0 commit comments