changelog.txt 7.8 KB

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