Skip to content

Commit

Permalink
Denote Openfire 3.10.3 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
akrherz committed Nov 17, 2015
1 parent 3c89a45 commit 8b8c2c6
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<property name="version.major" value="3"/>
<property name="version.minor" value="10"/>
<property name="version.revision" value="3"/>
<property name="version.extra" value="alpha"/> <!-- For 'alpha', 'beta', or 'rc' -->
<property name="version.extra" value=""/> <!-- For 'alpha', 'beta', or 'rc' -->

<property name="javac.source" value="1.7"/>
<property name="javac.target" value="1.7"/>
Expand Down
35 changes: 35 additions & 0 deletions documentation/dist/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,41 @@ <h1>Openfire Changelog</h1>

<div id="pageBody">

<h2>3.10.3 -- <span style="font-weight: normal;">Nov 17, 2015</span></h2>
<h2> Bug
</h2>
<ul>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-332'>OF-332</a>] - ldap.connect.timeout not working with SSL connection
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-477'>OF-477</a>] - SASL server in OF creates digest-uri based on xmpp.fqdn but it sends xmpp.domain to the client
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-881'>OF-881</a>] - NIOConnection Thread Deadlock when two clients in each others roster simultaneously disconnect
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-887'>OF-887</a>] - ldap.readTimeout not used when LDAP getContext() is called for queries
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-903'>OF-903</a>] - ISE attempting to write data to a closed/closing session
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-918'>OF-918</a>] - Character encoding issue in BOSH
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-926'>OF-926</a>] - Clients can&#39;t authenticate using LDAP SSL
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-938'>OF-938</a>] - BOSH packet namespace issue
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-949'>OF-949</a>] - Offline message delivery failures
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-954'>OF-954</a>] - Openfire clustering fails to correctly sync MUC room occupants
</li>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-966'>OF-966</a>] - failure tag not closed for TLS Negotiation Failure
</li>
</ul>

<h2> New Feature
</h2>
<ul>
<li>[<a href='https://igniterealtime.org/issues/browse/OF-933'>OF-933</a>] - Update websocket support per RFC 7395
</li>
</ul>

<h2>3.10.2 -- <span style="font-weight: normal;">Jun 22, 2015</span></h2>
<h2>Bug</h2>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion src/java/org/jivesoftware/openfire/XMPPServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ private void initialize() throws FileNotFoundException {
host = "127.0.0.1";
}

version = new Version(3, 10, 3, Version.ReleaseStatus.Alpha, -1);
version = new Version(3, 10, 3, Version.ReleaseStatus.Release, -1);
if ("true".equals(JiveGlobals.getXMLProperty("setup"))) {
setupMode = false;
}
Expand Down

0 comments on commit 8b8c2c6

Please sign in to comment.