Skip to content

Commit

Permalink
Updated changelog to reflect changes made for SOCIAL-258
Browse files Browse the repository at this point in the history
  • Loading branch information
habuma committed Sep 27, 2011
1 parent 8a3119b commit f1d9b66
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 10 additions & 0 deletions docs/src/info/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Spring Social 1.0.1 Release
===========================
Compatibility Notes
* Changed signature of ConnectController.connectionStatusRedirect() to take a NativeWebRequest in
addition to the provider ID (SOCIAL-258).

Bug Fixes
* Fixed ConnectController to use the servlet path when doing connection status redirects so that
the application's DispatcherServlet does not have to be mapped to "/" (SOCIAL-258).

Spring Social 1.0.0 Release (September 8, 2011)
===============================================
Bug Fixes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,9 +236,10 @@ protected String connectedView(String providerId) {

/**
* Returns a RedirectView with the URL to redirect to after a connection is created or deleted.
* Defaults to "/connect/{providerId}" relative to the servlet context path.
* Defaults to "/connect/{providerId}" relative to DispatcherServlet's path.
* May be overridden to handle custom redirection needs.
* @param providerId the ID of the provider for which a connection was created or deleted.
* @param request the NativeWebRequest used to access the servlet path when constructing the redirect path.
*/
protected RedirectView connectionStatusRedirect(String providerId, NativeWebRequest request) {
String providerConnectPath = "/connect/" + providerId;
Expand Down

0 comments on commit f1d9b66

Please sign in to comment.