changelog.txt 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. Changes in version 0.7 (2004-xx-xx)
  2. -----------------------------------
  3. * Major CVS repository restructure to support Maven and eliminate libraries
  4. * Added AspectJ support (especially useful for instance-level security)
  5. * Added MethodDefinitionSourceAdvisor for performance and autoproxying
  6. * Added MethodDefinitionMap querying of interfaces defined by secure objects
  7. * Added AuthenticationProcessingFilter.setDetails for use by subclasses
  8. * Added 403-causing exception to HttpSession via SecurityEnforcementFilter
  9. * Added net.sf.acegisecurity.intercept.event package
  10. * Improved BasicAclProvider to only respond to specified ACL object requests
  11. * Refactored MethodDefinitionSource to work with Method, not MethodInvocation
  12. * Refactored AbstractSecurityInterceptor to better support other AOP libraries
  13. * Fixed AbstractProcessingFitler to use removeAttribute (JRun compatibility)
  14. * Moved MethodSecurityInterceptor to ...intercept.method.aopalliance package
  15. * Documentation improvements
  16. Changes in version 0.6.1 (2004-09-25)
  17. -------------------------------------
  18. * Resolved to use http://apr.apache.org/versioning.html for future versioning
  19. * Added additional DaoAuthenticationProvider event when user not found
  20. * Added Authentication.getDetails() to DaoAuthenticationProvider response
  21. * Added DaoAuthenticationProvider.hideUserNotFoundExceptions (default=true)
  22. * Added PasswordAuthenticationProvider for password-validating DAOs (eg LDAP)
  23. * Added FilterToBeanProxy compatibility with ContextLoaderServlet (lazy inits)
  24. * Added convenience methods to ConfigAttributeDefinition
  25. * Improved sample applications' bean reference notation
  26. * Clarified contract for ObjectDefinitionSource.getAttributes(Object)
  27. * Extracted removeUserFromCache(String) to UserCache interface
  28. * Improved ConfigAttributeEditor so it trims preceding and trailing spaces
  29. * Refactored UsernamePasswordAuthenticationToken.getDetails() to Object
  30. * Fixed MethodDefinitionAttributes to implement ObjectDefinitionSource change
  31. * Fixed EH-CACHE-based caching implementation behaviour when cache exists
  32. * Fixed Ant "release" target not including project.properties
  33. * Fixed GrantedAuthorityEffectiveAclsResolver if null ACLs provided to method
  34. * Documentation improvements
  35. Changes in version 0.6 (2004-08-09)
  36. -----------------------------------
  37. * Added domain object instance access control list (ACL) packages
  38. * Added feature so DaoAuthenticationProvider returns User in Authentication
  39. * Added AbstractIntegrationFilter.secureContext property for custom contexts
  40. * Added stack trace logging to SecurityEnforcementFilter
  41. * Added exception-specific target URLs to AbstractProcessingFilter
  42. * Added JdbcDaoImpl hook so subclasses can insert custom granted authorities
  43. * Added AuthenticationProvider that wraps JAAS login modules
  44. * Added support for EL expressions in the authz tag library
  45. * Added failed Authentication object to AuthenticationExceptions
  46. * Added signed JARs to all official release builds (see readme.txt)
  47. * Added remote client authentication validation package
  48. * Added protected sendAccessDeniedError method to SecurityEnforcementFilter
  49. * Updated Authentication to be serializable (Weblogic support)
  50. * Updated JAR to Spring 1.1 RC 1
  51. * Updated to Clover 1.3
  52. * Updated to HSQLDB version 1.7.2 Release Candidate 6D
  53. * Refactored User to net.sf.acegisecurity.UserDetails interface
  54. * Refactored CAS package to store UserDetails in CasAuthenticationToken
  55. * Improved organisation of DaoAuthenticationProvider to facilitate subclassing
  56. * Improved test coverage (now 98.3%)
  57. * Improved JDBC-based tests to use in-memory database rather than filesystem
  58. * Fixed Linux compatibility issues (directory case sensitivity etc)
  59. * Fixed AbstractProcessingFilter to handle servlet spec container differences
  60. * Fixed AbstractIntegrationFilter to resolve a Weblogic compatibility issue
  61. * Fixed CasAuthenticationToken if proxy granting ticket callback not requested
  62. * Fixed EH-CACHE handling on web context refresh
  63. * Documentation improvements
  64. Changes in version 0.51 (2004-06-06)
  65. ------------------------------------
  66. * Added samples/quick-start
  67. * Added NullRunAsManager and made default for AbstractSecurityInterceptor
  68. * Added event notification (see net.sf.acegisecurity.providers.dao.event)
  69. * Updated JAR to Spring 1.0.2
  70. * Updated JAR to Commons Attributes CVS snapshot from Spring 1.0.2 release
  71. * Updated GrantedAuthorityImpl to be serializable (JBoss support)
  72. * Updated Authentication interface to present extra details for a request
  73. * Updated Authentication interface to subclass java.security.Principal
  74. * Refactored DaoAuthenticationProvider caching (refer to reference docs)
  75. * Improved HttpSessionIntegrationFilter to manage additional attributes
  76. * Improved URL encoding during redirects
  77. * Fixed issue with hot deploy of EhCacheBasedTicketCache (used with CAS)
  78. * Fixed issue with NullPointerExceptions in taglib
  79. * Removed DaoAuthenticationToken and session-based caching
  80. * Documentation improvements
  81. * Upgrade Note: DaoAuthenticationProvider no longer has a "key" property
  82. Changes in version 0.5 (2004-04-29)
  83. -----------------------------------
  84. * Added single sign on support via Yale Central Authentication Service (CAS)
  85. * Added full support for HTTP Basic Authentication
  86. * Added caching for DaoAuthenticationProvider successful authentications
  87. * Added Burlap and Hessian remoting to Contacts sample application
  88. * Added pluggable password encoders including plaintext, SHA and MD5
  89. * Added pluggable salt sources to enhance security of hashed passwords
  90. * Added FilterToBeanProxy to obtain filters from Spring application context
  91. * Added support for prepending strings to roles created by JdbcDaoImpl
  92. * Added support for user definition of SQL statements used by JdbcDaoImpl
  93. * Added definable prefixes to avoid expectation of "ROLE_" GrantedAuthoritys
  94. * Added pluggable AuthenticationEntryPoints to SecurityEnforcementFilter
  95. * Added Apache Ant path syntax support to SecurityEnforcementFilter
  96. * Added filter to automate web channel requirements (eg HTTPS redirection)
  97. * Updated JAR to Spring 1.0.1
  98. * Updated several classes to use absolute (not relative) redirection URLs
  99. * Refactored filters to use Spring application context lifecycle support
  100. * Improved constructor detection of nulls in User and other key objects
  101. * Fixed FilterInvocation.getRequestUrl() to also include getPathInfo()
  102. * Fixed Contacts sample application <A></A> tags
  103. * Established acegisecurity-developer mailing list
  104. * Documentation improvements
  105. Changes in version 0.4 (2004-04-03)
  106. -----------------------------------
  107. * Added HTTP session authentication as an alternative to container adapters
  108. * Added HTTP request security interceptor (offers considerable flexibility)
  109. * Added security taglib
  110. * Added Clover test coverage instrumentation (currently 97.2%)
  111. * Added support for Catalina (Tomcat) 4.1.30 to in-container integration tests
  112. * Added HTML test and summary reporting to in-container integration tests
  113. * Updated JARs to Spring Framework release 1.0, with associated AOP changes
  114. * Updated to Apache License version 2.0
  115. * Updated copyright with permission of past contributors
  116. * Refactored unit tests to use mock objects and focus on a single class each
  117. * Refactored many classes to enable insertion of mock objects during testing
  118. * Refactored core classes to ease support of new secure object types
  119. * Changed package layout to better describe the role of contained items
  120. * Changed the extractor to extract additional classes from JBoss and Catalina
  121. * Changed Jetty container adapter configuration (see reference documentation)
  122. * Improved AutoIntegrationFilter handling of deployments without JBoss JARs
  123. * Fixed case handling support in data access object authentication provider
  124. * Documentation improvements
  125. Changes in version 0.3 (2004-03-16)
  126. -----------------------------------
  127. * Added "in container" unit test system for container adapters and sample app
  128. * Added library extractor tool to reduce the "with deps" ZIP release sizes
  129. * Added unit test to the attributes sample
  130. * Added Jalopy source formatting
  131. * Modified all files to use net.sf.acegisecurity namespace
  132. * Renamed springsecurity.xml to acegisecurity.xml for consistency
  133. * Reduced length of ZIP and JAR filenames
  134. * Clarified licenses and sources for all included libraries
  135. * Updated documentation to reflect new file and package names
  136. * Setup Sourceforge.net project and added to CVS etc
  137. Changes in version 0.2 (2004-03-10)
  138. -----------------------------------
  139. * Added Commons Attributes support and sample (thanks to Cameron Braid)
  140. * Added JBoss container adapter
  141. * Added Resin container adapter
  142. * Added JDBC DAO authentication provider
  143. * Added several filter implementations for container adapter integration
  144. * Added SecurityInterceptor startup time validation of ConfigAttributes
  145. * Added more unit tests
  146. * Refactored ConfigAttribute to interface and added concrete implementation
  147. * Enhanced diagnostics information provided by sample application debug.jsp
  148. * Modified sample application for wider container portability (Resin, JBoss)
  149. * Fixed switch block in voting decision manager implementations
  150. * Removed Spring MVC interceptor for container adapter integration
  151. * Documentation improvements
  152. Changes in version 0.1 (2004-03-03)
  153. -----------------------------------
  154. * Initial public release
  155. $Id$