Skip to content

Commit 364330c

Browse files
committed
Merge branch '1.3.x'
Conflicts: Changelog.md Upgrade.md
2 parents 349b637 + d66890a commit 364330c

File tree

2 files changed

+36
-1
lines changed

2 files changed

+36
-1
lines changed

Changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ Changelog
99
* [BC break] Changed Datetime properties of default User entity that were nullable to default to null when no value supplied
1010
* [BC break] Updated schema.xml for Propel BaseUser class to allow nullable and typehint accordingly
1111

12+
### 1.3.5 (2014-09-04)
13+
14+
This release fixes a security issue. You are encouraged to update
15+
as soon as possible.
16+
17+
BC break: The characters used in generated tokens have changed. They
18+
now include dashes and underscores as well. Any routing requirement
19+
matching them should be updated to ``[\w\-]+``.
20+
21+
* Fixed the TokenGenerator to preserve entropy.
22+
1223
### 1.3.4 (2014-06-13)
1324

1425
* Fixed the compatibility with FrameworkBundle 2.5

Upgrade.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ break. For the full list of changes, please look at the Changelog file.
88

99
### User Provider
1010

11-
Using the UserManager as a user provider is no longer supported and is
11+
Using the UserManager as a user provider is no longer supported and is
1212
deprecated. Change your security.yml's provider section to look like:
1313

1414
```yml
@@ -28,6 +28,30 @@ Document namespaces are deprecated, you should update your User and Group
2828
classes to extend the classes found in `Model`.
2929
The old classes will stay until 2.0 is released stable, but throw deprecated warnings.
3030

31+
## 1.3.4 to 1.3.5
32+
33+
The characters used in generated tokens have changed. They now include dashes
34+
and underscores as well. Any routing requirement matching them should be
35+
updated to ``[\w\-]+``.
36+
37+
Before:
38+
39+
```yaml
40+
my_route:
41+
path: /{token}
42+
requirement:
43+
token: \w+
44+
```
45+
46+
After:
47+
48+
```yaml
49+
my_route:
50+
path: /{token}
51+
requirement:
52+
token: '[\w\-]+'
53+
```
54+
3155
## 1.2 to 1.3
3256

3357
### Forms

0 commit comments

Comments
 (0)