This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a change to branch fix/webapp-cors-filter-defaults
in repository https://gitbox.apache.org/repos/asf/storm.git


 discard e7794095a Set the CORS filter credentials parameter explicitly instead 
of a header name that the filter ignores
     add ce56aef02 Update logging behavior
     add 76a59d2a4 Reject blobstore map local names that resolve outside the 
topology and worker directories
     add 2d972caa3 Stop echoing the request Origin with allow-credentials in 
logviewer JSON responses
     add 22bd22a6a Reject submitted jar locations that are not inside the 
Nimbus inbox
     add 54d2c64b7 Verify the peer identity of the Netty TLS server the worker 
client connects to
     add c78ab7462 Give each uploaded dependency artifact its own blob key 
instead of reusing a pre-existing blob
     add 6d36a14d9 Require Kryo class registration in the state serializer
     add 405092452 Return a normalized copy of the topology conf from Nimbus
     add ea78c5bea Add to instead of replace Jetty's default TLS exclusions on 
HTTPS connectors
     add ad0811deb Set the CORS filter credentials parameter explicitly instead 
of a header name that the filter ignores

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   (e7794095a)
            \
             N -- N -- N   refs/heads/fix/webapp-cors-filter-defaults 
(ad0811deb)

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.

No new revisions were added by this update.

Summary of changes:
 conf/defaults.yaml                                 |   4 +
 docs/State-checkpointing.md                        |  73 +++++-------
 storm-client/src/jvm/org/apache/storm/Config.java  |   9 ++
 .../src/jvm/org/apache/storm/StormSubmitter.java   |   2 +-
 .../storm/dependency/DependencyUploader.java       |  11 +-
 .../org/apache/storm/messaging/netty/Client.java   |   2 +-
 .../storm/messaging/netty/SaslNettyServer.java     |   3 +-
 .../messaging/netty/SaslStormClientHandler.java    |   3 +-
 .../messaging/netty/SaslStormServerHandler.java    |   3 +-
 .../netty/StormClientPipelineFactory.java          |  26 ++++-
 .../apache/storm/state/DefaultStateSerializer.java |  65 ++++++++++-
 .../storm/dependency/DependencyUploaderTest.java   |  44 +++++++-
 .../netty/StormClientPipelineFactoryTest.java      |  84 ++++++++++++++
 .../storm/state/DefaultStateSerializerTest.java    | 117 ++++++++++++++++++++
 .../org/apache/storm/daemon/nimbus/Nimbus.java     |  31 +++++-
 .../apache/storm/daemon/supervisor/Container.java  |   6 +-
 .../org/apache/storm/localizer/AsyncLocalizer.java |   4 +-
 .../java/org/apache/storm/utils/ServerUtils.java   |  39 +++++++
 .../daemon/nimbus/NimbusGetTopologyConfTest.java   | 122 +++++++++++++++++++++
 .../org/apache/storm/daemon/nimbus/NimbusTest.java |  39 +++++++
 .../storm/daemon/supervisor/ContainerTest.java     |  43 ++++++++
 .../apache/storm/localizer/AsyncLocalizerTest.java |  72 ++++++++++++
 .../org/apache/storm/utils/ServerUtilsTest.java    |  21 ++++
 .../logviewer/utils/LogviewerResponseBuilder.java  |  17 +--
 .../java/org/apache/storm/daemon/ui/UIHelpers.java |   5 +-
 .../utils/LogviewerResponseBuilderTest.java        |  46 ++++++++
 .../org/apache/storm/daemon/ui/UIHelpersTest.java  |  32 ++++++
 27 files changed, 842 insertions(+), 81 deletions(-)
 create mode 100644 
storm-client/test/jvm/org/apache/storm/messaging/netty/StormClientPipelineFactoryTest.java
 create mode 100644 
storm-server/src/test/java/org/apache/storm/daemon/nimbus/NimbusGetTopologyConfTest.java
 create mode 100644 
storm-webapp/src/test/java/org/apache/storm/daemon/logviewer/utils/LogviewerResponseBuilderTest.java

Reply via email to