Skip to content

Commit d4fcaef

Browse files
minor symfony#18201 Removed 3.0.0 restriction for the Ldap component in the Security component (csarrazi)
This PR was merged into the 3.0 branch. Discussion ---------- Removed 3.0.0 restriction for the Ldap component in the Security component | Q | A | ------------- | --- | Branch? | 3.0 | Bug fix? | no | New feature? | yes | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | | License | MIT | Doc PR | This ticket removes the restriction on version 3.0 of the Ldap component, as the component is now both backward and forward-compatible. This PR is being made against the `3.0` branch and not in the `2.8` branch as it seems that all other dependencies rely on `~2.8|~3.0.0` for the `2.8` branch. There will be a conflict with the `master` branch. The versions to use on the `master` branch is `~3.1` for both `composer.json` files, as the authentication provider and the user provider rely on the new interface, and the `LdapInterface::query()` method, instead of `LdapClientInterface::search()`, which is deprecated. Commits ------- f576c9f Removed 3.0 restriction for the Ldap component in the Security component
2 parents e436c1e + f576c9f commit d4fcaef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/Security/Core/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"symfony/event-dispatcher": "~2.8|~3.0",
2525
"symfony/expression-language": "~2.8|~3.0",
2626
"symfony/http-foundation": "~2.8|~3.0",
27-
"symfony/ldap": "~2.8|~3.0.0",
27+
"symfony/ldap": "~2.8|~3.0",
2828
"symfony/validator": "~2.8|~3.0",
2929
"psr/log": "~1.0"
3030
},

src/Symfony/Component/Security/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"symfony/routing": "~2.8|~3.0",
3838
"symfony/validator": "~2.8|~3.0",
3939
"symfony/expression-language": "~2.8|~3.0",
40-
"symfony/ldap": "~2.8|~3.0.0",
40+
"symfony/ldap": "~2.8|~3.0",
4141
"psr/log": "~1.0"
4242
},
4343
"suggest": {

0 commit comments

Comments
 (0)