Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7183c59

Browse files
Merge branch '4.0'
* 4.0: Remove symfony/polyfill-ctype where not needed Use symfony/polyfill-ctype [Form] fixes instance variable phpdoc in FormRegistry class bumped Symfony version to 4.0.10 updated VERSION for 4.0.9 updated CHANGELOG for 4.0.9 bumped Symfony version to 3.4.10 updated VERSION for 3.4.9 updated CHANGELOG for 3.4.9
2 parents daf7ac0 + a488d55 commit 7183c59

File tree

16 files changed

+56
-7
lines changed

16 files changed

+56
-7
lines changed

CHANGELOG-4.0.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,41 @@ in 4.0 minor versions.
77
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
88
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.0.0...v4.0.1
99

10+
* 4.0.9 (2018-04-30)
11+
12+
* bug #27074 [Debug][WebProfilerBundle] Fix setting file link format (lyrixx, nicolas-grekas)
13+
* bug #27088 ResolveBindingsPass: Don't throw error for unused service, missing parent class (weaverryan)
14+
* bug #27086 [PHPUnitBridge] Add an implementation just for php 7.0 (greg0ire)
15+
* bug #26138 [HttpKernel] Catch HttpExceptions when templating is not installed (cilefen)
16+
* bug #27007 [Cache] TagAwareAdapterInterface::invalidateTags() should commit deferred items (nicolas-grekas)
17+
* bug #27067 [HttpFoundation] Fix setting session-related ini settings (e-moe)
18+
* bug #27061 [HttpKernel] Don't clean legacy containers that are still loaded (nicolas-grekas)
19+
* bug #27064 [VarDumper] Fix HtmlDumper classes match (ogizanagi)
20+
* bug #27016 [Security][Guard] GuardAuthenticationProvider::authenticate cannot return null (biomedia-thomas)
21+
* bug #26831 [Bridge/Doctrine] count(): Parameter must be an array or an object that implements Countable (gpenverne)
22+
* bug #27044 [Security] Skip user checks if not implementing UserInterface (chalasr)
23+
* bug #27025 [DI] Add check of internal type to ContainerBuilder::getReflectionClass (upyx)
24+
* bug #26994 [PhpUnitBridge] Add type hints (greg0ire)
25+
* bug #26014 [Security] Fixed being logged out on failed attempt in guard (iltar)
26+
* bug #25348 [HttpFoundation] Send cookies using header() to fix "SameSite" ones (nicolas-grekas, cvilleger)
27+
* bug #26910 Use new PHP7.2 functions in hasColorSupport (johnstevenson)
28+
* bug #26999 [VarDumper] Fix dumping of SplObjectStorage (corphi)
29+
* bug #25841 [DoctrineBridge] Fix bug when indexBy is meta key in PropertyInfo\DoctrineExtractor (insekticid)
30+
* bug #26983 [TwigBridge] [Bootstrap 4] Fix PercentType error rendering. (alexismarquis)
31+
* bug #26980 [TwigBundle] fix formatting arguments in plaintext format (xabbuh)
32+
* bug #26886 Don't assume that file binary exists on *nix OS (teohhanhui)
33+
* bug #26959 [Console] Fix PSR exception context key (scaytrase)
34+
* bug #26899 [Routing] Fix loading multiple class annotations for invokable classes (1ed)
35+
* bug #26643 Fix that ESI/SSI processing can turn a "private" response "public" (mpdude)
36+
* bug #26932 [Form] Fixed trimming choice values (HeahDude)
37+
* bug #26922 [TwigBundle] fix rendering exception stack traces (xabbuh)
38+
* bug #26773 [HttpKernel] Make ServiceValueResolver work if controller namespace starts with a backslash in routing (mathieutu)
39+
* bug #26870 Add d-block to bootstrap 4 alerts (Normunds)
40+
* bug #26857 [HttpKernel] Dont create mock cookie for new sessions in tests (nicolas-grekas)
41+
* bug #26875 [Console] Don't go past exact matches when autocompleting (nicolas-grekas)
42+
* bug #26823 [Validator] Fix LazyLoadingMetadataFactory with PSR6Cache for non classname if tested values isn't existing class (Pascal Montoya, pmontoya)
43+
* bug #26834 [Yaml] Throw parse error on unfinished inline map (nicolas-grekas)
44+
1045
* 4.0.8 (2018-04-06)
1146

1247
* bug #26802 [Security] register custom providers on ExpressionLanguage directly (dmaicher)

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
"psr/link": "^1.0",
2727
"psr/log": "~1.0",
2828
"psr/simple-cache": "^1.0",
29+
"symfony/polyfill-ctype": "~1.8",
2930
"symfony/polyfill-intl-icu": "~1.0",
3031
"symfony/polyfill-mbstring": "~1.0",
3132
"symfony/polyfill-php72": "~1.5"

src/Symfony/Bridge/Doctrine/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"require": {
1919
"php": "^7.1.3",
2020
"doctrine/common": "~2.4",
21+
"symfony/polyfill-ctype": "~1.8",
2122
"symfony/polyfill-mbstring": "~1.0"
2223
},
2324
"require-dev": {

src/Symfony/Bundle/TwigBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"symfony/twig-bridge": "^3.4.3|^4.0.3",
2222
"symfony/http-foundation": "~3.4|~4.0",
2323
"symfony/http-kernel": "~3.4|~4.0",
24+
"symfony/polyfill-ctype": "~1.8",
2425
"twig/twig": "~1.34|~2.4"
2526
},
2627
"require-dev": {

src/Symfony/Bundle/WebServerBundle/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"symfony/console": "~3.4|~4.0",
2222
"symfony/dependency-injection": "~3.4|~4.0",
2323
"symfony/http-kernel": "~3.4|~4.0",
24+
"symfony/polyfill-ctype": "~1.8",
2425
"symfony/process": "^3.4.2|^4.0.2"
2526
},
2627
"autoload": {

src/Symfony/Component/Config/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
],
1818
"require": {
1919
"php": "^7.1.3",
20-
"symfony/filesystem": "~3.4|~4.0"
20+
"symfony/filesystem": "~3.4|~4.0",
21+
"symfony/polyfill-ctype": "~1.8"
2122
},
2223
"require-dev": {
2324
"symfony/dependency-injection": "~3.4|~4.0",

src/Symfony/Component/DomCrawler/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"require": {
1919
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8",
2021
"symfony/polyfill-mbstring": "~1.0"
2122
},
2223
"require-dev": {

src/Symfony/Component/Filesystem/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"autoload": {
2223
"psr-4": { "Symfony\\Component\\Filesystem\\": "" },

src/Symfony/Component/Form/FormRegistry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class FormRegistry implements FormRegistryInterface
3131
private $extensions = array();
3232

3333
/**
34-
* @var FormTypeInterface[]
34+
* @var ResolvedFormTypeInterface[]
3535
*/
3636
private $types = array();
3737

src/Symfony/Component/Form/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"symfony/event-dispatcher": "~3.4|~4.0",
2121
"symfony/intl": "~3.4|~4.0",
2222
"symfony/options-resolver": "~3.4|~4.0",
23+
"symfony/polyfill-ctype": "~1.8",
2324
"symfony/polyfill-mbstring": "~1.0",
2425
"symfony/property-access": "~3.4|~4.0"
2526
},

src/Symfony/Component/HttpKernel/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"symfony/event-dispatcher": "~4.1",
2121
"symfony/http-foundation": "~4.1",
2222
"symfony/debug": "~3.4|~4.0",
23+
"symfony/polyfill-ctype": "~1.8",
2324
"psr/log": "~1.0"
2425
},
2526
"require-dev": {

src/Symfony/Component/Inflector/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
}
2424
],
2525
"require": {
26-
"php": "^7.1.3"
26+
"php": "^7.1.3",
27+
"symfony/polyfill-ctype": "~1.8"
2728
},
2829
"autoload": {
2930
"psr-4": { "Symfony\\Component\\Inflector\\": "" },

src/Symfony/Component/Serializer/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"require-dev": {
2223
"symfony/yaml": "~3.4|~4.0",

src/Symfony/Component/Templating/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"require-dev": {
2223
"psr/log": "~1.0"

src/Symfony/Component/Validator/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
],
1818
"require": {
1919
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8",
2021
"symfony/polyfill-mbstring": "~1.0",
2122
"symfony/translation": "~3.4|~4.0"
2223
},

src/Symfony/Component/Yaml/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^7.1.3"
19+
"php": "^7.1.3",
20+
"symfony/polyfill-ctype": "~1.8"
2021
},
2122
"require-dev": {
2223
"symfony/console": "~3.4|~4.0"

0 commit comments

Comments
 (0)