You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by bu...@apache.org on 2016/11/07 04:54:14 UTC

svn commit: r1000607 - in /websites/staging/directory/trunk/content: ./ fortress/download-old-versions.html fortress/news.html

Author: buildbot
Date: Mon Nov  7 04:54:14 2016
New Revision: 1000607

Log:
Staging update by buildbot for directory

Modified:
    websites/staging/directory/trunk/content/   (props changed)
    websites/staging/directory/trunk/content/fortress/download-old-versions.html
    websites/staging/directory/trunk/content/fortress/news.html

Propchange: websites/staging/directory/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Nov  7 04:54:14 2016
@@ -1 +1 @@
-1768423
+1768426

Modified: websites/staging/directory/trunk/content/fortress/download-old-versions.html
==============================================================================
--- websites/staging/directory/trunk/content/fortress/download-old-versions.html (original)
+++ websites/staging/directory/trunk/content/fortress/download-old-versions.html Mon Nov  7 04:54:14 2016
@@ -180,6 +180,12 @@ h2:hover > .headerlink, h3:hover > .head
 </thead>
 <tbody>
 <tr>
+<td align="center">Apache Fortress 1.0.1</td>
+<td align="center"><a href="http://archive.apache.org/dist/directory/fortress/dist/1.0.1">Download</a></td>
+<td align="center"><a href="http://directory.apache.org/fortress/gen-docs/1.0.1/apidocs/">Javadoc</a></td>
+<td align="center">22/Jul/2016</td>
+</tr>
+<tr>
 <td align="center">Apache Fortress 1.0.0</td>
 <td align="center"><a href="http://archive.apache.org/dist/directory/fortress/dist/1.0.0">Download</a></td>
 <td align="center"><a href="http://directory.apache.org/fortress/gen-docs/1.0.0/apidocs/">Javadoc</a></td>

Modified: websites/staging/directory/trunk/content/fortress/news.html
==============================================================================
--- websites/staging/directory/trunk/content/fortress/news.html (original)
+++ websites/staging/directory/trunk/content/fortress/news.html Mon Nov  7 04:54:14 2016
@@ -168,25 +168,49 @@
 }
 h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
 <h1 id="fortress-news">Fortress News<a class="headerlink" href="#fortress-news" title="Permanent link">&para;</a></h1>
-<h2 class="news">Apache Fortress 1.0.1 Released<em>posted on July 22nd, 2016</em></h2>
+<h2 class="news">Apache Fortress 2.0.0-RC1 Released<em>posted on November 7th, 2016</em></h2>
 
-<p>The Apache Directory Project announces the fourth release of Fortress.</p>
-<p>This maintenance release includes the following enhancements:</p>
-<ul>
+<p>The Apache Directory Project announces the fifth release of Fortress.  This major revision has a couple of changes that have broken backward compatibility with 1.x:</p>
+<ol>
 <li>
-<p>Fortress Core use of a non-static configurator</p>
+<p>FC-183 - Use Apache IANA Number of OID - The LDAP schema uses the Apache Directory's IANA base number instead of the one from JoshuaTree.</p>
 </li>
 <li>
-<p>Fortress Core to use the Apache LDAP API 1.0.0-RC1</p>
+<p>Requires updating existing fortress impls to upgrade schema using latest:</p>
 </li>
 <li>
-<p>Fortress Rest to use Apache CXF 3.1.6 and Spring 4.3.1</p>
+<p>OpenLDAP: https://github.com/apache/directory-fortress-core/blob/master/ldap/schema/fortress.schema</p>
 </li>
 <li>
-<p>Fortress Web to use Apache Wicket 7.3.0 and Spring 4.3.1</p>
+<p>ApacheDS: https://github.com/apache/directory-fortress-core/blob/master/ldap/schema/apacheds-fortress.ldif</p>
+</li>
+<li>
+<p>To ensure the old copy of data works with this release, be sure to export and reimport data (using ldif format) after the schema has been updated on the LDAP server. </p>
+</li>
+<li>
+<p>FC-194 - Change password representation from a char[] to a String</p>
+</li>
+<li>
+<p>Applies to all methods using a password in the arguments.  If using the fortress-realm, ensure the tomcat instance has the latest proxy jar also.</p>
+</li>
+</ol>
+<p>Other enhancements include:</p>
+<ul>
+<li>
+<p>FC-116 Basic ABAC capabilities</p>
+</li>
+<li>
+<p>FC-144 Enhanced group-to-role mappings</p>
+</li>
+<li>
+<p>FC-181 Multitenancy for Realm and Web</p>
 </li>
 </ul>
-<p>To learn how to install Fortress and configure for LDAP usage try one of the quickstarts:</p>
+<p>The complete list can be found in this JIRA report:</p>
+<ul>
+<li>https://issues.apache.org/jira/browse/FC-200?jql=project%20%3D%20FC%20AND%20fixVersion%20%3D%202.0.0-RC1%20ORDER%20BY%20updated%20DESC%2C%20priority%20DESC%2C%20created%20ASC</li>
+</ul>
+<p>To learn more about how to install Apache Fortress and configure for LDAP usage try one of the quickstarts:</p>
 <ul>
 <li>
 <p><a href="https://github.com/apache/directory-fortress-core/blob/master/README-QUICKSTART-APACHEDS.md">ApacheDS &amp; Fortress QUICKSTART</a></p>
@@ -208,6 +232,24 @@ h2:hover > .headerlink, h3:hover > .head
 <ul>
 <li><a href="installation.html">Installation Guides</a></li>
 </ul>
+<h2 class="news">Apache Fortress 1.0.1 Released<em>posted on July 22nd, 2016</em></h2>
+
+<p>The Apache Directory Project announces the fourth release of Fortress.</p>
+<p>This maintenance release includes the following enhancements:</p>
+<ul>
+<li>
+<p>Fortress Core use of a non-static configurator</p>
+</li>
+<li>
+<p>Fortress Core to use the Apache LDAP API 1.0.0-RC1</p>
+</li>
+<li>
+<p>Fortress Rest to use Apache CXF 3.1.6 and Spring 4.3.1</p>
+</li>
+<li>
+<p>Fortress Web to use Apache Wicket 7.3.0 and Spring 4.3.1</p>
+</li>
+</ul>
 <h2 class="news">Apache Fortress 1.0.0 Released<em>posted on April 15th, 2016</em></h2>
 
 <p>The Apache Directory Project announces the third release of Fortress which provides role-based access control, delegated administration and password policies using LDAP servers like ApacheDS and OpenLDAP.</p>