changelog.txt 6.4 KB

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