changes.xml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. * ========================================================================
  4. *
  5. * Copyright 2004, 2005 Acegi Technology Pty Limited
  6. *
  7. * Licensed under the Apache License, Version 2.0 (the "License");
  8. * you may not use this file except in compliance with the License.
  9. * You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing, software
  14. * distributed under the License is distributed on an "AS IS" BASIS,
  15. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16. * See the License for the specific language governing permissions and
  17. * limitations under the License.
  18. *
  19. * ========================================================================
  20. -->
  21. <document>
  22. <properties>
  23. <title>Acegi Security changes</title>
  24. </properties>
  25. <body>
  26. <release version="0.9.0" date="In CVS">
  27. <action dev="luke_t" type="update">Changed order of credentials verification and expiry checking in DaoAuthenticationProvider. Password must now be successfully verified before expired credentials are reported. </action>
  28. <action dev="benalex" type="update">AnonymousProcessingFilter offers protected method to control when it should execute</action>
  29. <action dev="benalex" type="fix">AbstractAuthenticationToken.getName() now returns username alone if UserDetails present</action>
  30. <action dev="raykrueger" type="update">AuthorityGranter.grant now returns a java.util.Set of role names, instead of a single role name</action>
  31. </release>
  32. <release version="0.8.2" date="2005-04-20">
  33. <action dev="benalex" type="fix">Correct location of AuthenticationSimpleHttpInvokerRequestExecutor in clientContext.xml</action>
  34. <action dev="benalex" type="fix">TokenBasedRememberMeServices changed to use long instead of int for tokenValiditySeconds (SPR-807)</action>
  35. <action dev="benalex" type="fix">Handle null Authentication.getAuthorities() in AuthorizeTag</action>
  36. <action dev="benalex" type="fix">PasswordDaoAuthenticationProvider no longer stores String against Authentication.setDetails()</action>
  37. <action dev="benalex" type="update">Update commons-codec dependency to 1.3</action>
  38. <action dev="raykrueger" type="update">AbstractProcessingFilter no longer has setters for failures, it uses the exceptionMappings property</action>
  39. <action dev="benalex" type="update">Update to match Spring 1.2-RC2 official JAR dependencies</action>
  40. <action dev="raykrueger" type="update">AuthenticationProcessingFilter now provides an obtainUsername method</action>
  41. <action dev="luke_t" type="update">Correct PathBasedFilterInvocationDefinitionMap compatibility with Spring 1.2-RC2</action>
  42. <action dev="luke_t" type="update">Refactoring to leverage Spring's Assert class and mocks where possible</action>
  43. </release>
  44. <release version="0.8.1" date="2005-03-22">
  45. <action dev="luke_t" type="add">X509 (certificate-based) authentication support</action>
  46. <action dev="benalex" type="update">UserDetails now advises locked accounts, with corresponding DaoAuthenticationProvider events and enforcement</action>
  47. <action dev="benalex" type="update">ContextHolderAwareRequestWrapper methods return null if user is anonymous</action>
  48. <action dev="benalex" type="update">AbstractBasicAclEntry improved compatibility with Hibernate</action>
  49. <action dev="benalex" type="update">User now provides a more useful toString() method</action>
  50. <action dev="benalex" type="update">Update to match Spring 1.1.5 official JAR dependencies (NB: now using Servlet 2.4 and related JSP/taglib JARs)</action>
  51. <action dev="benalex" type="fix">SecurityEnforcementFilter caused NullPointerException when anonymous authentication used with BasicProcessingFilterEntryPoint</action>
  52. <action dev="benalex" type="fix">FilterChainProxy now supports replacement of ServletRequest and ServetResponse by Filter beans</action>
  53. <action dev="fbos" type="fix">Corrected Authz parsing of whitespace in GrantedAuthoritys</action>
  54. <action dev="benalex" type="fix">TokenBasedRememberMeServices now respects expired users, expired credentials and disabled users</action>
  55. <action dev="benalex" type="fix">HttpSessionContextIntegrationFilter now handles HttpSession invalidation without redirection</action>
  56. <action dev="benalex" type="fix">StringSplitUtils.split() ignored delimiter argument</action>
  57. <action dev="benalex" type="fix">DigestProcessingFilter now provides userCache getter and setter</action>
  58. <action dev="benalex" type="fix">Contacts Sample made to work with UserDetails-based Principal</action>
  59. <action dev="benalex" type="update">Documentation improvements</action>
  60. <action dev="benalex" type="update">Test coverage improvements</action>
  61. </release>
  62. <release version="0.8.0" date="2005-03-03">
  63. <action dev="benalex" type="add">Added Digest Authentication support (RFC 2617 and RFC 2069)</action>
  64. <action dev="benalex" type="add">Added pluggable remember-me services</action>
  65. <action dev="benalex" type="add">Added pluggable mechnism to prevent concurrent login sessions</action>
  66. <action dev="benalex" type="add">FilterChainProxy added to significantly simplify web.xml configuration of Acegi Security</action>
  67. <action dev="benalex" type="add">AuthenticationProcessingFilter now provides hook for extra credentials (eg postcodes)</action>
  68. <action dev="benalex" type="add">New WebAuthenticationDetails class now used by processing filters for Authentication.setDetails()</action>
  69. <action dev="benalex" type="add">Additional debug-level logging</action>
  70. <action dev="benalex" type="add">Improved Tapestry support in AbstractProcessingFilter</action>
  71. <action dev="benalex" type="update">Made ConfigAttributeDefinition and ConfigAttribute Serializable</action>
  72. <action dev="benalex" type="update">User now accepts blank passwords (null passwords still rejected)</action>
  73. <action dev="benalex" type="update">FilterToBeanProxy now searches hierarchical bean factories</action>
  74. <action dev="benalex" type="update">User now accepted blank passwords (null passwords still rejected)</action>
  75. <action dev="benalex" type="update">ContextHolderAwareRequestWrapper now provides a getUserPrincipal() method</action>
  76. <action dev="benalex" type="update">HttpSessionIntegrationFilter no longer creates a HttpSession unnecessarily</action>
  77. <action dev="benalex" type="update">FilterSecurityInterceptor now only executes once per request (improves performance with SiteMesh)</action>
  78. <action dev="raykrueger" type="update">JaasAuthenticatinProvider now uses System.property "java.security.auth.login.config"</action>
  79. <action dev="raykrueger" type="update">JaasAuthenticationCallbackHandler Authentication is passed to handle method setAuthentication removed</action>
  80. <action dev="raykrueger" type="update">Added AuthenticationException to the AutenticationEntryPoint.commence method signature</action>
  81. <action dev="raykrueger" type="update">Added AccessDeniedException to the SecurityEncorcementFilter.sendAccessDeniedError method signature</action>
  82. <action dev="benalex" type="update">FilterToBeanProxy now addresses lifecycle mismatch (IoC container vs servlet container) issue</action>
  83. <action dev="benalex" type="update">Significantly refactor "well-known location model" to authentication processing mechanism and HttpSessionContextIntegrationFilter model</action>
  84. <action dev="benalex" type="fix">Correct issue with JdbcDaoImpl default SQL query not using consistent case sensitivity</action>
  85. <action dev="benalex" type="fix">Improve Linux and non-Sun JDK (specifically IBM JDK) compatibility</action>
  86. <action dev="benalex" type="fix">Log4j now included in generated WAR artifacts (fixes issue with Log4j listener)</action>
  87. <action dev="benalex" type="fix">Correct NullPointerException in FilterInvocationDefinitionSource implementations</action>
  88. </release>
  89. <release version="0.7.0" date="2005-01-16">
  90. <action dev="carlossg" type="add">Major CVS repository restructure to support Maven and eliminate libraries</action>
  91. <action dev="benalex" type="update">Major improvements to Contacts sample application (now demos ACL security)</action>
  92. <action dev="benalex" type="add">Added AfterInvocationManager to mutate objects return from invocations</action>
  93. <action dev="benalex" type="add">Added BasicAclEntryAfterInvocationProvider to ACL evaluate returned Object</action>
  94. <action dev="benalex" type="add">Added BasicAclEntryAfterInvocationCollectionFilteringProvider</action>
  95. <action dev="benalex" type="add">Added security propagation during RMI invocations (from sandbox)</action>
  96. <action dev="benalex" type="add">Added security propagation for Spring's HTTP invoker</action>
  97. <action dev="benalex" type="add">Added BasicAclEntryVoter, which votes based on AclManager permissions</action>
  98. <action dev="benalex" type="add">Added AspectJ support (especially useful for instance-level security)</action>
  99. <action dev="benalex" type="add">Added MethodDefinitionSourceAdvisor for performance and autoproxying</action>
  100. <action dev="benalex" type="add">Added MethodDefinitionMap querying of interfaces defined by secure objects</action>
  101. <action dev="benalex" type="add">Added AuthenticationProcessingFilter.setDetails for use by subclasses</action>
  102. <action dev="benalex" type="add">Added 403-causing exception to HttpSession via SecurityEnforcementFilter</action>
  103. <action dev="benalex" type="add">Added net.sf.acegisecurity.intercept.event package</action>
  104. <action dev="benalex" type="add">Added BasicAclExtendedDao interface and JdbcExtendedDaoImpl for ACL CRUD</action>
  105. <action dev="benalex" type="add">Added additional remoting protocol demonstrations to Contacts sample</action>
  106. <action dev="benalex" type="add">Added AbstractProcessingFilter property to always use defaultTargetUrl</action>
  107. <action dev="benalex" type="add">Added ContextHolderAwareRequestWrapper to integrate with getRemoteUser()</action>
  108. <action dev="benalex" type="add">Added attempted username to view if processed by AuthenticationProcessingFilter</action>
  109. <action dev="benalex" type="add">Added UserDetails account and credentials expiration methods</action>
  110. <action dev="benalex" type="add">Added exceptions and events to support new UserDetails methods</action>
  111. <action dev="benalex" type="add">Added new exceptions to JBoss container adapter</action>
  112. <action dev="benalex" type="update">Improved BasicAclProvider to only respond to specified ACL object requests</action>
  113. <action dev="benalex" type="update">Refactored MethodDefinitionSource to work with Method, not MethodInvocation</action>
  114. <action dev="benalex" type="update">Refactored AbstractFilterInvocationDefinitionSource to work with URL Strings alone</action>
  115. <action dev="benalex" type="update">Refactored AbstractSecurityInterceptor to better support other AOP libraries</action>
  116. <action dev="benalex" type="update">Improved performance of JBoss container adapter (see reference docs)</action>
  117. <action dev="benalex" type="update">Made DaoAuthenticationProvider detect null in Authentication.principal</action>
  118. <action dev="benalex" type="update">Improved JaasAuthenticationProvider startup error detection</action>
  119. <action dev="benalex" type="update">Refactored EH-CACHE implementations to use Spring IoC defined caches instead</action>
  120. <action dev="benalex" type="update">AbstractProcessingFilter now has various hook methods to assist subclasses</action>
  121. <action dev="benalex" type="update">DaoAuthenticationProvider better detects AuthenticationDao interface violations</action>
  122. <action dev="benalex" type="update">The User class has a new constructor (the old constructor is deprecated)</action>
  123. <action dev="benalex" type="fix">Fixed ambiguous column references in JdbcDaoImpl default query</action>
  124. <action dev="benalex" type="fix">Fixed AbstractProcessingFilter to use removeAttribute (JRun compatibility)</action>
  125. <action dev="benalex" type="fix">Fixed GrantedAuthorityEffectiveAclResolver support of UserDetails principals</action>
  126. <action dev="benalex" type="fix">Fixed HttpSessionIntegrationFilter "cannot commit to container" during logoff</action>
  127. <action dev="benalex" type="update">Moved MethodSecurityInterceptor to ...intercept.method.aopalliance package</action>
  128. <action dev="benalex" type="update">Documentation improvements</action>
  129. <action dev="benalex" type="update">Test coverage improvements</action>
  130. </release>
  131. <release version="0.6.1" date="2004-09-24">
  132. <action dev="benalex" type="update">Resolved to use http://apr.apache.org/versioning.html for future versioning</action>
  133. <action dev="benalex" type="add">Added additional DaoAuthenticationProvider event when user not found</action>
  134. <action dev="benalex" type="add">Added Authentication.getDetails() to DaoAuthenticationProvider response</action>
  135. <action dev="benalex" type="add">Added DaoAuthenticationProvider.hideUserNotFoundExceptions (default=true)</action>
  136. <action dev="benalex" type="add">Added PasswordAuthenticationProvider for password-validating DAOs (eg LDAP)</action>
  137. <action dev="benalex" type="add">Added FilterToBeanProxy compatibility with ContextLoaderServlet (lazy inits)</action>
  138. <action dev="benalex" type="add">Added convenience methods to ConfigAttributeDefinition</action>
  139. <action dev="benalex" type="update">Improved sample applications' bean reference notation</action>
  140. <action dev="benalex" type="update">Clarified contract for ObjectDefinitionSource.getAttributes(Object)</action>
  141. <action dev="benalex" type="update">Extracted removeUserFromCache(String) to UserCache interface</action>
  142. <action dev="benalex" type="update">Improved ConfigAttributeEditor so it trims preceding and trailing spaces</action>
  143. <action dev="benalex" type="update">Refactored UsernamePasswordAuthenticationToken.getDetails() to Object</action>
  144. <action dev="benalex" type="fix">Fixed MethodDefinitionAttributes to implement ObjectDefinitionSource change</action>
  145. <action dev="benalex" type="fix">Fixed EH-CACHE-based caching implementation behaviour when cache exists</action>
  146. <action dev="benalex" type="fix">Fixed Ant "release" target not including project.properties</action>
  147. <action dev="benalex" type="fix">Fixed GrantedAuthorityEffectiveAclsResolver if null ACLs provided to method</action>
  148. <action dev="benalex" type="update">Documentation improvements</action>
  149. </release>
  150. <release version="0.6" date="2004-08-08">
  151. <action dev="benalex" type="add">Added domain object instance access control list (ACL) packages</action>
  152. <action dev="benalex" type="add">Added feature so DaoAuthenticationProvider returns User in Authentication</action>
  153. <action dev="benalex" type="add">Added AbstractIntegrationFilter.secureContext property for custom contexts</action>
  154. <action dev="benalex" type="add">Added stack trace logging to SecurityEnforcementFilter</action>
  155. <action dev="benalex" type="add">Added exception-specific target URLs to AbstractProcessingFilter</action>
  156. <action dev="benalex" type="add">Added JdbcDaoImpl hook so subclasses can insert custom granted authorities</action>
  157. <action dev="raykrueger" type="add">Added AuthenticationProvider that wraps JAAS login modules</action>
  158. <action dev="fbos" type="add">Added support for EL expressions in the authz tag library</action>
  159. <action dev="benalex" type="add">Added failed Authentication object to AuthenticationExceptions</action>
  160. <action dev="benalex" type="add">Added signed JARs to all official release builds (see readme.txt)</action>
  161. <action dev="benalex" type="add">Added remote client authentication validation package</action>
  162. <action dev="benalex" type="add">Added protected sendAccessDeniedError method to SecurityEnforcementFilter</action>
  163. <action dev="benalex" type="update">Updated Authentication to be serializable (Weblogic support)</action>
  164. <action dev="benalex" type="update">Updated JAR to Spring 1.1 RC 1</action>
  165. <action dev="benalex" type="update">Updated to Clover 1.3</action>
  166. <action dev="benalex" type="update">Updated to HSQLDB version 1.7.2 Release Candidate 6D</action>
  167. <action dev="benalex" type="update">Refactored User to net.sf.acegisecurity.UserDetails interface</action>
  168. <action dev="benalex" type="update">Refactored CAS package to store UserDetails in CasAuthenticationToken</action>
  169. <action dev="benalex" type="update">Improved organisation of DaoAuthenticationProvider to facilitate subclassing</action>
  170. <action dev="benalex" type="update">Improved test coverage (now 98.3%)</action>
  171. <action dev="benalex" type="update">Improved JDBC-based tests to use in-memory database rather than filesystem</action>
  172. <action dev="benalex" type="update">Fixed Linux compatibility issues (directory case sensitivity etc)</action>
  173. <action dev="benalex" type="update">Fixed AbstractProcessingFilter to handle servlet spec container differences</action>
  174. <action dev="benalex" type="update">Fixed AbstractIntegrationFilter to resolve a Weblogic compatibility issue</action>
  175. <action dev="benalex" type="fix">Fixed CasAuthenticationToken if proxy granting ticket callback not requested</action>
  176. <action dev="benalex" type="fix">Fixed EH-CACHE handling on web context refresh</action>
  177. <action dev="benalex" type="update">Documentation improvements</action>
  178. </release>
  179. <release version="0.5.1" date="2004-06-05">
  180. <action dev="benalex" type="add">Added samples/quick-start</action>
  181. <action dev="benalex" type="add">Added NullRunAsManager and made default for AbstractSecurityInterceptor</action>
  182. <action dev="benalex" type="add">Added event notification (see net.sf.acegisecurity.providers.dao.event)</action>
  183. <action dev="benalex" type="update">Updated JAR to Spring 1.0.2</action>
  184. <action dev="benalex" type="update">Updated JAR to Commons Attributes CVS snapshot from Spring 1.0.2 release</action>
  185. <action dev="benalex" type="update">Updated GrantedAuthorityImpl to be serializable (JBoss support)</action>
  186. <action dev="benalex" type="update">Updated Authentication interface to present extra details for a request</action>
  187. <action dev="benalex" type="update">Updated Authentication interface to subclass java.security.Principal</action>
  188. <action dev="benalex" type="update">Refactored DaoAuthenticationProvider caching (refer to reference docs)</action>
  189. <action dev="benalex" type="update">Improved HttpSessionIntegrationFilter to manage additional attributes</action>
  190. <action dev="benalex" type="update">Improved URL encoding during redirects</action>
  191. <action dev="benalex" type="fix">Fixed issue with hot deploy of EhCacheBasedTicketCache (used with CAS)</action>
  192. <action dev="fbos" type="fix">Fixed issue with NullPointerExceptions in taglib</action>
  193. <action dev="benalex" type="update">Removed DaoAuthenticationToken and session-based caching</action>
  194. <action dev="benalex" type="update">Documentation improvements</action>
  195. <action dev="benalex" type="update">Upgrade Note: DaoAuthenticationProvider no longer has a "key" property</action>
  196. </release>
  197. <release version="0.5" date="2004-04-28">
  198. <action dev="benalex" type="add">Added single sign on support via Yale Central Authentication Service (CAS)</action>
  199. <action dev="benalex" type="add">Added full support for HTTP Basic Authentication</action>
  200. <action dev="benalex" type="add">Added caching for DaoAuthenticationProvider successful authentications</action>
  201. <action dev="benalex" type="add">Added Burlap and Hessian remoting to Contacts sample application</action>
  202. <action dev="colins" type="add">Added pluggable password encoders including plaintext, SHA and MD5</action>
  203. <action dev="benalex" type="add">Added pluggable salt sources to enhance security of hashed passwords</action>
  204. <action dev="benalex" type="add">Added FilterToBeanProxy to obtain filters from Spring application context</action>
  205. <action dev="colins" type="add">Added support for prepending strings to roles created by JdbcDaoImpl</action>
  206. <action dev="colins" type="add">Added support for user definition of SQL statements used by JdbcDaoImpl</action>
  207. <action dev="colins" type="add">Added definable prefixes to avoid expectation of "ROLE_" GrantedAuthoritys</action>
  208. <action dev="benalex" type="add">Added pluggable AuthenticationEntryPoints to SecurityEnforcementFilter</action>
  209. <action dev="benalex" type="add">Added Apache Ant path syntax support to SecurityEnforcementFilter</action>
  210. <action dev="benalex" type="add">Added filter to automate web channel requirements (eg HTTPS redirection)</action>
  211. <action dev="benalex" type="update">Updated JAR to Spring 1.0.1</action>
  212. <action dev="benalex" type="update">Updated several classes to use absolute (not relative) redirection URLs</action>
  213. <action dev="benalex" type="update">Refactored filters to use Spring application context lifecycle support</action>
  214. <action dev="benalex" type="update">Improved constructor detection of nulls in User and other key objects</action>
  215. <action dev="benalex" type="fix">Fixed FilterInvocation.getRequestUrl() to also include getPathInfo()</action>
  216. <action dev="benalex" type="fix">Fixed Contacts sample application <A></A> tags</action>
  217. <action dev="benalex" type="update">Established acegisecurity-developer mailing list</action>
  218. <action dev="benalex" type="update">Documentation improvements</action>
  219. </release>
  220. <release version="0.4" date="2004-04-03">
  221. <action dev="benalex" type="add">Added HTTP session authentication as an alternative to container adapters</action>
  222. <action dev="benalex" type="add">Added HTTP request security interceptor (offers considerable flexibility)</action>
  223. <action dev="fbos" type="add">Added security taglib</action>
  224. <action dev="benalex" type="add">Added Clover test coverage instrumentation (currently 97.2%)</action>
  225. <action dev="benalex" type="add">Added support for Catalina (Tomcat) 4.1.30 to in-container integration tests</action>
  226. <action dev="benalex" type="add">Added HTML test and summary reporting to in-container integration tests</action>
  227. <action dev="benalex" type="update">Updated JARs to Spring Framework release 1.0, with associated AOP changes</action>
  228. <action dev="benalex" type="update">Updated to Apache License version 2.0</action>
  229. <action dev="benalex" type="update">Updated copyright with permission of past contributors</action>
  230. <action dev="benalex" type="update">Refactored unit tests to use mock objects and focus on a single class each</action>
  231. <action dev="benalex" type="update">Refactored many classes to enable insertion of mock objects during testing</action>
  232. <action dev="benalex" type="update">Refactored core classes to ease support of new secure object types</action>
  233. <action dev="benalex" type="update">Changed package layout to better describe the role of contained items</action>
  234. <action dev="benalex" type="update">Changed the extractor to extract additional classes from JBoss and Catalina</action>
  235. <action dev="benalex" type="update">Changed Jetty container adapter configuration (see reference documentation)</action>
  236. <action dev="benalex" type="update">Improved AutoIntegrationFilter handling of deployments without JBoss JARs</action>
  237. <action dev="benalex" type="fix">Fixed case handling support in data access object authentication provider</action>
  238. <action dev="benalex" type="update">Documentation improvements</action>
  239. </release>
  240. <release version="0.3" date="2004-03-18">
  241. <action dev="benalex" type="add">Added "in container" unit test system for container adapters and sample app</action>
  242. <action dev="benalex" type="add">Added library extractor tool to reduce the "with deps" ZIP release sizes</action>
  243. <action dev="benalex" type="add">Added unit test to the attributes sample</action>
  244. <action dev="benalex" type="add">Added Jalopy source formatting</action>
  245. <action dev="benalex" type="update">Modified all files to use net.sf.acegisecurity namespace</action>
  246. <action dev="benalex" type="update">Renamed springsecurity.xml to acegisecurity.xml for consistency</action>
  247. <action dev="benalex" type="update">Reduced length of ZIP and JAR filenames</action>
  248. <action dev="benalex" type="update">Clarified licenses and sources for all included libraries</action>
  249. <action dev="benalex" type="update">Updated documentation to reflect new file and package names</action>
  250. <action dev="benalex" type="update">Setup Sourceforge.net project and added to CVS etc</action>
  251. </release>
  252. <release version="0.2" date="2004-03-10">
  253. <action dev="benalex" type="add">Added Commons Attributes support and sample (thanks to Cameron Braid)</action>
  254. <action dev="benalex" type="add">Added JBoss container adapter</action>
  255. <action dev="benalex" type="add">Added Resin container adapter</action>
  256. <action dev="benalex" type="add">Added JDBC DAO authentication provider</action>
  257. <action dev="benalex" type="add">Added several filter implementations for container adapter integration</action>
  258. <action dev="benalex" type="add">Added SecurityInterceptor startup time validation of ConfigAttributes</action>
  259. <action dev="benalex" type="add">Added more unit tests</action>
  260. <action dev="benalex" type="update">Refactored ConfigAttribute to interface and added concrete implementation</action>
  261. <action dev="benalex" type="update">Enhanced diagnostics information provided by sample application debug.jsp</action>
  262. <action dev="benalex" type="update">Modified sample application for wider container portability (Resin, JBoss)</action>
  263. <action dev="benalex" type="fix">Fixed switch block in voting decision manager implementations</action>
  264. <action dev="benalex" type="update">Removed Spring MVC interceptor for container adapter integration</action>
  265. <action dev="benalex" type="update">Documentation improvements</action>
  266. </release>
  267. <release version="0.1" date="2004-03-03">
  268. <action dev="benalex" type="add">Initial public release</action>
  269. </release>
  270. </body>
  271. </document>