File tree 6 files changed +27
-1
lines changed
6 files changed +27
-1
lines changed Original file line number Diff line number Diff line change @@ -271,6 +271,8 @@ UPGRADE FROM 2.x to 3.0
271
271
<?php echo $view['form']->end($form) ?>
272
272
```
273
273
274
+ * The ` RouterApacheDumperCommand ` was removed.
275
+
274
276
### HttpKernel
275
277
276
278
* The ` Symfony\Component\HttpKernel\Log\LoggerInterface ` has been removed in
@@ -381,6 +383,10 @@ UPGRADE FROM 2.x to 3.0
381
383
$route->setSchemes('https');
382
384
```
383
385
386
+ * The ` ApacheMatcherDumper ` and ` ApacheUrlMatcher ` were removed since
387
+ the performance gains were minimal and it's hard to replicate the behaviour
388
+ of PHP implementation.
389
+
384
390
### Security
385
391
386
392
* The ` Resources/ ` directory was moved to ` Core/Resources/ `
Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ CHANGELOG
4
4
2.5.0
5
5
-----
6
6
7
- * Added ` yaml:lint ` command
7
+ * Added ` yaml:lint ` command
8
+ * Deprecated the ` RouterApacheDumperCommand ` which will be removed in Symfony 3.0.
8
9
9
10
2.4.0
10
11
-----
Original file line number Diff line number Diff line change 21
21
/**
22
22
* RouterApacheDumperCommand.
23
23
*
24
+ * @deprecated Deprecated since version 2.5, to be removed in 3.0.
25
+ * The performance gains are minimal and it's very hard to replicate
26
+ * the behavior of PHP implementation.
27
+ *
24
28
* @author Fabien Potencier <fabien@symfony.com>
25
29
*/
26
30
class RouterApacheDumperCommand extends ContainerAwareCommand
Original file line number Diff line number Diff line change 1
1
CHANGELOG
2
2
=========
3
3
4
+ 2.5.0
5
+ -----
6
+
7
+ * [ DEPRECATION] The ` ApacheMatcherDumper ` and ` ApacheUrlMatcher ` were deprecated and
8
+ will be removed in Symfony 3.0, since the performance gains were minimal and
9
+ it's hard to replicate the behaviour of PHP implementation.
10
+
4
11
2.3.0
5
12
-----
6
13
Original file line number Diff line number Diff line change 16
16
/**
17
17
* ApacheUrlMatcher matches URL based on Apache mod_rewrite matching (see ApacheMatcherDumper).
18
18
*
19
+ * @deprecated Deprecated since version 2.5, to be removed in 3.0.
20
+ * The performance gains are minimal and it's very hard to replicate
21
+ * the behavior of PHP implementation.
22
+ *
19
23
* @author Fabien Potencier <fabien@symfony.com>
20
24
* @author Arnaud Le Blanc <arnaud.lb@gmail.com>
21
25
*/
Original file line number Diff line number Diff line change 16
16
/**
17
17
* Dumps a set of Apache mod_rewrite rules.
18
18
*
19
+ * @deprecated Deprecated since version 2.5, to be removed in 3.0.
20
+ * The performance gains are minimal and it's very hard to replicate
21
+ * the behavior of PHP implementation.
22
+ *
19
23
* @author Fabien Potencier <fabien@symfony.com>
20
24
* @author Kris Wallsmith <kris@symfony.com>
21
25
*/
You can’t perform that action at this time.
0 commit comments