Skip to content

Commit

Permalink
Create Openfire 3.9.3 Release!
Browse files Browse the repository at this point in the history
  • Loading branch information
akrherz committed May 6, 2014
1 parent 4589545 commit a31a6ce
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<property name="version.major" value="3"/>
<property name="version.minor" value="9"/>
<property name="version.revision" value="3"/>
<property name="version.extra" value="alpha"/> <!-- For 'beta' or 'alpha' -->
<property name="version.extra" value=""/> <!-- For 'beta' or 'alpha' -->
<property name="dist.prefix" value="openfire"/>

<property file="${basedir}/build/build.properties"/>
Expand Down
39 changes: 37 additions & 2 deletions documentation/dist/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,47 @@ <h1>Openfire Changelog</h1>

<div id="pageBody">

<h2>3.9.2 -- <span style="font-weight: normal;">May 1, 2014</span></h2>
<h2>3.9.3 -- <span style="font-weight: normal;">May 6, 2014</span></h2>

<h2>Bug</h2>
<ul>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-2'>OF-2</a>] - LocalOutgoingServerSession logs connection failures over verbosely
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-746'>OF-746</a>] - Use update-alternatives to set JAVA_HOME on debian
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-779'>OF-779</a>] - fetching from LDAP should escape results
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-780'>OF-780</a>] - Update reCaptcha for HTTPS
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-781'>OF-781</a>] - ConcurrentModificationException in kickPresence
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-782'>OF-782</a>] - Wrong URL generated for editing groups with space in the names
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-783'>OF-783</a>] - Apply encryption to secure properties during setup
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-784'>OF-784</a>] - Possible NullPointerException in MessageRouter logic
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-787'>OF-787</a>] - TLS server to server connections are not working with 3.9.2
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-788'>OF-788</a>] - UserService plugin should not reset group properties when adding user to group
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-789'>OF-789</a>] - Invalid token in Pubsub item purge SQL
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-791'>OF-791</a>] - Joining new MUC room results in a 404 error
</li>
</ul>

<h2>Improvement</h2>
<ul>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-744'>OF-744</a>] - Replace package.html with package-info.java
</li>
</ul>


<h2>3.9.2 -- <span style="font-weight: normal;">May 1, 2014</span></h2>

<h2>Bug</h2>
<ul>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-24'>OF-24</a>] - &quot;Issue with IQ subscription=&quot;remove&quot;
</li>
<li>[<a href='http://issues.igniterealtime.org/browse/OF-114'>OF-114</a>] - Clearing cache can lock up MUC
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 @@ -343,7 +343,7 @@ private void initialize() throws FileNotFoundException {
host = "127.0.0.1";
}

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

0 comments on commit a31a6ce

Please sign in to comment.