Skip to content
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

Closed
wants to merge 1 commit into from
Closed

Mark ApacheDSContainer as deprecated #6002 #6376

wants to merge 1 commit into from

Conversation

LukeButters
Copy link
Contributor

Mark ApacheDSContainer as deprecated because ApacheDS have not released a recent GA version and the current GA version does not work under jdk11.

See #6002

@pivotal-issuemaster
Copy link

@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.

@pivotal-issuemaster
Copy link

@LukeButters Thank you for signing the Contributor License Agreement!

Copy link
Member

@rwinch rwinch left a 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

@rwinch
Copy link
Member

rwinch commented Jan 9, 2019

Thanks. Can you please squash and then please update the commit message to align with the Spring Security conventions? It should end with Fixes: gh-6002

@LukeButters
Copy link
Contributor Author

sorry how do I do that?

@rwinch
Copy link
Member

rwinch commented Jan 10, 2019

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.

git rebase -i HEAD~2

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:

pick 8de408229 Mark ApacheDSContainer as deprecated #6002
pick 8e7830791 Add an explanation as to why ApacheDSContainer is deprecated.
...

Change the start of each like to be

r 8de408229 Mark ApacheDSContainer as deprecated #6002
f 8e7830791 Add an explanation as to why ApacheDSContainer is deprecated.

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:

git push -f origin master

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
@LukeButters
Copy link
Contributor Author

thanks! It looks like i squished the commits and the message has been updated.

@rwinch rwinch self-assigned this Jan 14, 2019
@rwinch rwinch added this to the 5.2.0.M1 milestone Jan 14, 2019
rwinch added a commit that referenced this pull request Jan 14, 2019
@rwinch
Copy link
Member

rwinch commented Jan 14, 2019

Thanks for the updates. I merged this via 0b40d09 and polished it to confirm to the checkstyle (removed trailing whitespace) using 802f318.

@rwinch rwinch closed this Jan 14, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants