Update upgrade docs on Authenticator changes.
Project: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/commit/aec1bfff
Tree: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/tree/aec1bfff
Diff: http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/diff/aec1bfff
Branch: refs/heads/TINKERPOP3-995
Commit: aec1bfff9ead41a5c7ebad542b872bfb00adb43d
Parents: 88b85c8
Author: Stephen Mallette <spmva@genoprime.com>
Authored: Tue Dec 1 06:09:38 2015 -0500
Committer: Stephen Mallette <spmva@genoprime.com>
Committed: Tue Dec 1 06:09:38 2015 -0500
----------------------------------------------------------------------
docs/src/upgrade/release-3.1.x-incubating.asciidoc | 14 ++++++++++++++
1 file changed, 14 insertions(+)
----------------------------------------------------------------------
http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/aec1bfff/docs/src/upgrade/release-3.1.x-incubating.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/upgrade/release-3.1.x-incubating.asciidoc b/docs/src/upgrade/release-3.1.x-incubating.asciidoc
index 54ccf04..5cccb94 100644
--- a/docs/src/upgrade/release-3.1.x-incubating.asciidoc
+++ b/docs/src/upgrade/release-3.1.x-incubating.asciidoc
@@ -60,6 +60,20 @@ TinkerGraph instances.
See: link:https://issues.apache.org/jira/browse/TINKERPOP3-886[TINKERPOP3-886]
+Authenticator Method Deprecation
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+For users who have a custom `Authenticator` implementation for Gremlin Server, there will
be a new method present:
+
+[source,java]
+public default SaslNegotiator newSaslNegotiator(final InetAddress remoteAddress)
+
+Implementation of this method is now preferred over the old method with the same name that
has no arguments. The old
+method has been deprecated. This is a non-breaking change as the new method has a default
implementation that simply
+calls the old deprecated method. In this way, existing `Authenticator` implementations will
still work.
+
+See: link:https://issues.apache.org/jira/browse/TINKERPOP3-995[TINKERPOP3-995]
+
Upgrading for Providers
~~~~~~~~~~~~~~~~~~~~~~~
|