Generates the latest/greatest Maven-based artifacts for the Openfire project, every night.

Build: #858 was successful

Job: Run Maven was successful

Stages & jobs

  1. Build and Package

  2. Deploy

  3. copy nightlies to website

Code commits

Openfire (master)

  • Guus der Kinderen

    Guus der Kinderen 49856ec1c6a178083794f121f4a03721507fd82b

    OF-1829: Prevent NPE when removing from a non-cached collection.
    When multi-valued caches are used, removing an element from a collection that is not (or no longer) in the cache should not throw a null pointer exception.

    I suspect that in clustered environments, where caches are managed by all cluster nodes, there's a chance of the same removal to be executed by each node on the
    same cache, which could trigger an issue like this.

    • xmppserver/src/main/java/org/jivesoftware/util/cache/CacheUtil.java (version 49856ec1c6a178083794f121f4a03721507fd82b)
    • xmppserver/src/test/java/org/jivesoftware/util/CacheUtilTest.java (version 49856ec1c6a178083794f121f4a03721507fd82b)
  • Guus der Kinderen

    Guus der Kinderen 5b0a0c65fe21d429674c713e9752be3ee6cd34ad

    OF-1832: Admin console should show more data for a client session

    • i18n/src/main/resources/openfire_i18n.properties (version 5b0a0c65fe21d429674c713e9752be3ee6cd34ad)
    • xmppserver/src/main/webapp/session-details.jsp (version 5b0a0c65fe21d429674c713e9752be3ee6cd34ad)
  • Guus der Kinderen

    Guus der Kinderen 206b5abfe27c7972db9253779ab817f4ac9740b0

    OF-1830: Add ignorable message during TLS handshake abort.
    This extends the solution that was introduced by OF-1009 with another exception message that's similar to the one already being handled as a 'normal' handshake rejection.

    • xmppserver/src/main/java/org/jivesoftware/openfire/net/TLSStreamHandler.java (version 206b5abfe27c7972db9253779ab817f4ac9740b0)