1
- CHANGELOG for 2.1.x
1
+ CHANGELOG for 2.1.x
2
2
===================
3
3
4
- This changelog references the relevant changes (bug and security fixes) done
4
+ This changelog references the relevant changes (bug and security fixes) made
5
5
in 2.1 minor versions.
6
6
7
7
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
@@ -72,7 +72,7 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
72
72
by the end-user (you need to remove the 'factories' keys in your security
73
73
configuration).
74
74
75
- * [ BC BREAK] The Firewall listener is now registered after the Router one. It
75
+ * [ BC BREAK] The Firewall listener is now registered after the Router one. This
76
76
means that specific Firewall URLs (like /login_check and /logout must now
77
77
have proper route defined in your routing configuration)
78
78
@@ -193,7 +193,7 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
193
193
194
194
# ## DomCrawler
195
195
196
- * refactor the Form class internals to support multi-dimensional fields (the public API is backward compatible)
196
+ * refactored the Form class internals to support multi-dimensional fields (the public API is backward compatible)
197
197
* added a way to get parsing errors for Crawler::addHtmlContent() and Crawler::addXmlContent() via libxml functions
198
198
* added support for submitting a form without a submit button
199
199
@@ -301,7 +301,7 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
301
301
` ArraySessionStorage` , and replaced with `MockArraySessionStorage` for unit
302
302
tests; removed `FilesystemSessionStorage`, and replaced with`MockFileSessionStorage`
303
303
for functional tests. These do not interact with global session ini
304
- configuration values, session functions or `$_SESSION` supreglobal . This means
304
+ configuration values, session functions or `$_SESSION` superglobal . This means
305
305
they can be configured directly allowing multiple instances to work without
306
306
conflicting in the same PHP process.
307
307
* [BC BREAK] Removed the `close()` method from the `Session` class, as this is
@@ -311,7 +311,7 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
311
311
which returns a `FlashBagInterface`.
312
312
* `Session->clear()` now only clears session attributes as before it cleared
313
313
flash messages and attributes. `Session->getFlashBag()->all()` clears flashes now.
314
- * Session data is now managed by `SessionBagInterface` which to better encapsulate
314
+ * Session data is now managed by `SessionBagInterface` to better encapsulate
315
315
session data.
316
316
* Refactored session attribute and flash messages system to their own
317
317
` SessionBagInterface` implementations.
@@ -326,7 +326,7 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
326
326
namespace session attributes.
327
327
* Flash API can stores messages in an array so there may be multiple messages
328
328
per flash type. The old `Session` class API remains without BC break as it
329
- will single messages as before.
329
+ will allow single messages as before.
330
330
* Added basic session meta-data to the session to record session create time,
331
331
last updated time, and the lifetime of the session cookie that was provided
332
332
to the client.
0 commit comments