This is an automated email from the ASF dual-hosted git repository.
udo pushed a change to branch feature/GEODE-3604
in repository https://gitbox.apache.org/repos/asf/geode.git.
discard 0abafd2 refactored some more code
discard 4ceda1d spotlessApply
discard 4ac9904 Moving Failure.java, Result.java and Success.java to its own
package
discard 74e4856 Change stream processing to avoid intermediary collections
and process in-line
discard 51fdbdd Moving ProtobufSimpleAuthenticator.java and
ProtobufSimpleAuthorizer.java to different package in geode-protobuf
discard 065b215 Make Authentication and Authorization generic for the
GenericProtocolServerConnection.java moved Authentication into internal
packages.
discard 57b6732 Moved NoOpAuthenticator.java and NoOpAuthorizer.java out of
core
add 52305a8 GEODE-3587 Fix the source distribution basename
add cba6c4f GEODE-3580: patch test to avoid the current failure. (#774)
add e5a2319 GEODE-3579 Update gfsh stop locator docs (#765)
add 2655ddb GEODE-3544: Fix JSON parsing error
add e61847c Update javadoc for JarBuilder
add 13dfbb4 GEODE-3539: Add test for missing coverage of status locator
command
add a4320f7 GEODE-3562 CI Failure:
JSONCodecJUnitTest.testSimpleJSONEncode fails on Windows
add 6bbaad0 GEODE-3079 Ensure emergencyClose() closes socket
add f1f9307 GEODE-3185: Fixes CI failures in windows in
org.apache.geode.internal.cache.BackupJUnitTest
add 5c09e20 GEODE-3615: Added CleanupDUnitVMsRule to
ConnectCommandWithSSLTest
new 4ed6666 Moved NoOpAuthenticator.java and NoOpAuthorizer.java out of
core
new fd03804 Make Authentication and Authorization generic for the
GenericProtocolServerConnection.java moved Authentication into internal
packages.
new ef7226b Moving ProtobufSimpleAuthenticator.java and
ProtobufSimpleAuthorizer.java to different package in geode-protobuf
new f75db76 Change stream processing to avoid intermediary collections
and process in-line
new d794696 Moving Failure.java, Result.java and Success.java to its own
package
new f165d34 spotlessApply
new a0a3d3e refactored some more code
new 4d048a6 More changes relating to Authorization
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (0abafd2)
\
N -- N -- N refs/heads/feature/GEODE-3604 (4d048a6)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 8 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
geode-assembly/build.gradle | 6 +-
.../cli/shell/GfshExitCodeStatusCommandsTest.java | 13 ++
.../internal/cache/persistence/RestoreScript.java | 1 +
.../sockets/GenericProtocolServerConnection.java | 27 +++--
.../tier/sockets/ServerConnectionFactory.java | 11 +-
.../protocol/ClientProtocolMessageHandler.java | 2 +
.../internal/protocol/MessageExecutionContext.java | 28 +++--
.../ProtocolMessageHandlerLookupService.java | 38 +++---
.../protocol/security/server/Authenticator.java | 12 +-
.../server/AuthenticatorLookupService.java | 2 +-
...ervice.java => AuthorizationLookupService.java} | 34 +++---
.../protocol/security/server/Authorizer.java | 6 +-
.../security/server/NoOpAuthenticator.java | 11 +-
.../protocol/security/server/NoOpAuthorizer.java | 9 +-
.../management/internal/cli/util/JsonUtil.java | 6 +-
...de.internal.protocol.security.server.Authorizer | 1 +
.../deadlock/GemFireDeadlockDetectorDUnitTest.java | 4 +
.../tier/sockets/ServerConnectionFactoryTest.java | 36 ++----
.../GfshStatusCommandsIntegrationTest.java | 3 -
...ctionJUnitTest.java => Geode3544JUnitTest.java} | 134 +++++++++++++--------
.../gfsh/command-pages/stop.html.md.erb | 31 ++++-
.../org/apache/geode/test/compiler/JarBuilder.java | 59 +++++----
.../protocol/operations/OperationHandler.java | 6 +-
...essor.java => ProtobufOperationsProcessor.java} | 32 ++---
...or.java => ProtobufProtocolMessageHandler.java} | 58 ++++++---
.../server/ProtobufSimpleAuthenticator.java | 53 ++++----
.../security/server/ProtobufSimpleAuthorizer.java | 16 ++-
....internal.protocol.ClientProtocolMessageHandler | 2 +-
...e.internal.protocol.security.server.Authorizer} | 2 +-
.../GenericProtocolServerConnectionTest.java | 32 ++++-
...ava => ProtobufProtocolMessageHandlerTest.java} | 10 +-
.../ProtobufSimpleAuthenticatorJUnitTest.java | 42 ++++---
.../GetAllRequestOperationHandlerJUnitTest.java | 24 ++--
...egionNamesRequestOperationHandlerJUnitTest.java | 20 +--
.../GetRegionRequestOperationHandlerJUnitTest.java | 48 +++-----
.../GetRequestOperationHandlerJUnitTest.java | 60 +++++----
.../PutAllRequestOperationHandlerJUnitTest.java | 51 ++++----
.../PutRequestOperationHandlerJUnitTest.java | 64 +++++-----
.../RemoveRequestOperationHandlerJUnitTest.java | 61 +++++-----
.../server/AuthenticationIntegrationTest.java | 43 +++----
.../server/AuthorizationIntegrationTest.java | 7 +-
.../serialization/codec/JSONCodecJUnitTest.java | 5 +-
.../cli/commands/ConnectCommandWithSSLTest.java | 4 +
43 files changed, 611 insertions(+), 503 deletions(-)
copy
geode-core/src/main/java/org/apache/geode/internal/protocol/security/server/{AuthenticatorLookupService.java
=> AuthorizationLookupService.java} (59%)
create mode 100644
geode-core/src/main/resources/META-INF/services/org.apache.geode.internal.protocol.security.server.Authorizer
copy
geode-core/src/test/java/org/apache/geode/management/internal/cli/functions/{DataCommandFunctionJUnitTest.java
=> Geode3544JUnitTest.java} (52%)
rename
geode-protobuf/src/main/java/org/apache/geode/protocol/protobuf/{ProtobufOpsProcessor.java
=> ProtobufOperationsProcessor.java} (78%)
rename
geode-protobuf/src/main/java/org/apache/geode/protocol/protobuf/{ProtobufStreamProcessor.java
=> ProtobufProtocolMessageHandler.java} (58%)
copy
geode-protobuf/src/main/resources/META-INF/services/{org.apache.geode.internal.protocol.security.server.Authenticator
=> org.apache.geode.internal.protocol.security.server.Authorizer} (82%)
rename
geode-protobuf/src/test/java/org/apache/geode/protocol/protobuf/{ProtobufStreamProcessorTest.java
=> ProtobufProtocolMessageHandlerTest.java} (82%)
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].