-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Ldap] Ldap Entry case-sensitive attribute key option #39037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Hey! I see that this is your first PR. That is great! Welcome! Symfony has a contribution guide which I suggest you to read. In short:
Review the GitHub status checks of your pull request and try to solve the reported issues. If some tests are failing, try to see if they are failing because of this change. When two Symfony core team members approve this change, it will be merged and you will become an official Symfony contributor! I am going to sit back now and wait for the reviews. Cheers! Carsonbot |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for this PR.
This is not a bug fix, but a new feature, and should target Symfony 5.x
@jderusse Thanks! The reason for this PR is for the Drupal LDAP module, and the issue is here: https://www.drupal.org/project/ldap/issues/3126807 That module is using 4.4. Are you saying that this PR could only appear in 5.x? Or that I should target 5.x and it could be backported? |
Yes. 4.4 is closed for features, so you would need to target 5.x. |
Just to be clear so I can update the Drupal issue, there is no possibility of this appearing in 4.x? |
There is no 4.x anymore. We're only bugfixing 4.4 and feature development has shifted to 5.x. I cannot make a final decision here, but to me this change does not look like a bugfix. Is it a big problem to support 5.x as well? |
I don't think Drupal 8/Drupal 9 support Symfony 5.x, so that module is stuck with 4.4. They're already using a fork that only contains the Ldap components though, so I'm not sure what direction the maintainer will eventually go. |
The LDAP component is pretty much self-contained. You should be able to upgrade |
Good to know! I'll follow up in the Drupal issue and see what they want to do. Current test failure seems unrelated to Ldap. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
(for 5.x)
87a6e79
to
d3b9440
Compare
@karlshea I've force-pushed to your branch in order to resolve conflicts with 5.x and to test your changes with our new LDAP integration test suite. |
Thank you @karlshea. |
See PR #36432