File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed
Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 11Changelog
22=========
33
4+ ### 1.3.5 (2014-09-04)
5+
6+ This release fixes a security issue. You are encouraged to update
7+ as soon as possible.
8+
9+ BC break: The characters used in generated tokens have changed. They
10+ now include dashes and underscores as well. Any routing requirement
11+ matching them should be updated to `` [\w\-]+ `` .
12+
13+ * Fixed the TokenGenerator to preserve entropy.
14+
415### 1.3.4 (2014-06-13)
516
617* Fixed the compatibility with FrameworkBundle 2.5
Original file line number Diff line number Diff line change @@ -4,6 +4,30 @@ Upgrade instruction
44This document describes the changes needed when upgrading because of a BC
55break. For the full list of changes, please look at the Changelog file.
66
7+ ## 1.3.4 to 1.3.5
8+
9+ The characters used in generated tokens have changed. They now include dashes
10+ and underscores as well. Any routing requirement matching them should be
11+ updated to `` [\w\-]+ `` .
12+
13+ Before:
14+
15+ ``` yaml
16+ my_route :
17+ path : /{token}
18+ requirement :
19+ token : \w+
20+ ` ` `
21+
22+ After:
23+
24+ ` ` ` yaml
25+ my_route :
26+ path : /{token}
27+ requirement :
28+ token : ' [\w\-]+'
29+ ` ` `
30+
731## 1.2 to 1.3
832
933### Forms
You can’t perform that action at this time.
0 commit comments