changelog.txt 5.5 KB

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