changelog.txt 5.4 KB

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