-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
Mark ApacheDSContainer as deprecated #6002 #6376
Conversation
@LukeButters Please sign the Contributor License Agreement! Click here to manually synchronize the status of this Pull Request. See the FAQ for frequently asked questions. |
@LukeButters Thank you for signing the Contributor License Agreement! |
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.
Thanks for the PR! I provided feedback inline
ldap/src/main/java/org/springframework/security/ldap/server/ApacheDSContainer.java
Outdated
Show resolved
Hide resolved
Thanks. Can you please squash and then please update the commit message to align with the Spring Security conventions? It should end with |
sorry how do I do that? |
I've found the free Pro Git Book to be a very valuable resource. Section 7.6 Git Tools - Rewriting History is probably the most relevant in this situation. I have provided the steps below for you to make it easier, but I highly recommend reading Pro Git.
This says you want to do an interactive rebase of the last two commits. This means you want to change those commits. This rewrites the history. Keep in mind on branches that others use this is not proper etiquette because it makes merging difficult. For feature branches like what you have this is expected and quite normal. You editor will popup and look like this:
Change the start of each like to be
r will indicate you want to reword that commit. f will indicate that the commit should be squashed into the previous commit. Change the wording of the commit and save. Then you can force push to your remote. Something like:
|
Mark ApacheDSContainer as deprecated because ApacheDS have not released a recent 'GA' version and the current 'GA' version does not work under JDK11. Fixes: gh-6002
thanks! It looks like i squished the commits and the message has been updated. |
Mark ApacheDSContainer as deprecated because ApacheDS have not released a recent
GA
version and the currentGA
version does not work under jdk11.See #6002