changelog.txt 7.1 KB

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