README.txt 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. Welcome to the Zend Framework 1.12 Release!
  2. RELEASE INFORMATION
  3. ---------------
  4. Zend Framework 1.12.1 Release ([INSERT REV NUM HERE]).
  5. Released on <Month> <Day>, <Year>.
  6. SECURITY FIXES FOR 1.12.1
  7. -------------------------
  8. This release incorporates fixes for:
  9. - http://framework.zend.com/security/advisory/ZF2012-05
  10. Zend_Feed_Rss and Zend_Feed_Atom were found to contain XML eXternal
  11. Entity (XXE) Injection vectors due to insecure usage of the DOM
  12. extension. External entities could be specified by adding a specific
  13. DOCTYPE element to XML-RPC requests; exploiting this vulnerability could
  14. coerce opening arbitrary files and/or TCP connections.
  15. A similar issue was fixed for 1.12.0, in the Zend_Feed::import() method;
  16. however, the reporter of the issue discovered that the individual
  17. classes contained similar functionality in their constructors which
  18. remained vulnerable.
  19. The patch applied removes the XXE vector by calling
  20. libxml_disable_entity_loader() before attempting to parse the feed via
  21. DOMDocument::loadXML().
  22. The above patches are also available in the 1.11 series of releases.
  23. Thanks goes to Yury Dyachenko at Positive Research Center for for
  24. reporting the XXE vulnerability and reviewing the patches created to fix
  25. the issue.
  26. NEW FEATURES
  27. ============
  28. Zend_Loader changes
  29. ----
  30. A number of autoloaders and autoloader facilities were back ported from
  31. ZF2 to provide performant alternatives to those already available in the
  32. 1.X releases. These include: Zend_Loader_StandardAutoloader, which
  33. improves on Zend_Loader_Autoloader by allowing the ability to specify a
  34. specific path to associate with a vendor prefix or namespace;
  35. Zend_Loader_ClassMapAutoloader, which provides the ability to use lookup
  36. tables for autoloading (which are typically the fastest possible way to
  37. autoload); and Zend_Loader_AutoloaderFactory, which can both create and
  38. update autoloaders for you, as well as register them with
  39. spl_autoload_register().
  40. The Zend_Loader changes were back ported from ZF2 by Matthew Weier
  41. O’Phinney
  42. Zend_EventManager
  43. ----
  44. Zend_EventManager is a component that allows you to attach and detach
  45. listeners to named events, both on a per-instance basis as well as via
  46. shared collections; trigger events; and interrupt execution of
  47. listeners.
  48. Zend_EventManager was back ported from ZF2 by Matthew Weier O’Phinney
  49. Zend_Http_UserAgent_Features_Adapter_Browscap
  50. ----
  51. This class provides a features adapter that calls get_browser() in order
  52. to discover mobile device capabilities to inject into UserAgent device
  53. instances.
  54. Browscap (http://browsers.garykeith.com/) is an open project dedicated
  55. to collecting an disseminating a “database” of browser capabilities. PHP
  56. has built-in support for using these files via the get_browser()
  57. function. This function requires that your php.ini provides a browscap
  58. entry pointing to the PHP-specific php_browscap.ini file which is
  59. available at http://browsers.garykeith.com/stream.asp?PHP_BrowsCapINI.
  60. Zend_Http_UserAgent_Features_Adapter_Browscap was created by Matthew
  61. Weier O’Phinney
  62. Zend_Mobile_Push
  63. ----
  64. Zend_Mobile_Push is a component for implementing push notifications for
  65. the 3 major push notification platforms (Apple (Apns), Google (C2dm) and
  66. Microsoft (Mpns).
  67. Zend_Mobile_Push was contributed by Mike Willbanks.
  68. Zend_Gdata_Analytics
  69. ----
  70. Zend_Gdata_Analytics is an extension to Zend_Gdata to allow interaction
  71. with Google’s Analytics Data Export API. This extension does not
  72. encompass any major changes in the overall operation of Zend_Gdata
  73. components.
  74. Zend_Gdata_Analytics was contributed by Daniel Hartmann.
  75. Removed features
  76. ================
  77. Zend_Http_UserAgent_Features_Adapter_WurflApi
  78. ----
  79. Due to the changes in licensing of WURFL, we have removed the WurflApi
  80. adapter. We will be providing the WurflApi adapter to ScientiaMobile so
  81. that users of WURFL will still have that option.
  82. Bug Fixes
  83. =========
  84. In addition, over 200 reported issues in the tracker have been fixed.
  85. We’d like to particularly thank Adam Lundrigan, Frank Brückner and
  86. Martin Hujer for their efforts in making this happen. Thanks also to the
  87. many people who ran the ZF1 unit tests and reported their results!
  88. For a complete list, visit:
  89. * http://framework.zend.com/issues/secure/IssueNavigator.jspa?requestId=12877
  90. * http://framework.zend.com/changelog/
  91. MIGRATION NOTES
  92. ---------------
  93. A detailed list of migration notes may be found at:
  94. http://framework.zend.com/manual/en/migration.html
  95. SYSTEM REQUIREMENTS
  96. -------------------
  97. Zend Framework requires PHP 5.2.11 or later. Please see our reference
  98. guide for more detailed system requirements:
  99. http://framework.zend.com/manual/en/requirements.html
  100. INSTALLATION
  101. ------------
  102. Please see INSTALL.txt.
  103. QUESTIONS AND FEEDBACK
  104. ----------------------
  105. Online documentation can be found at http://framework.zend.com/manual.
  106. Questions that are not addressed in the manual should be directed to the
  107. appropriate mailing list:
  108. http://framework.zend.com/wiki/display/ZFDEV/Mailing+Lists
  109. If you find code in this release behaving in an unexpected manner or
  110. contrary to its documented behavior, please create an issue in the Zend
  111. Framework issue tracker at:
  112. http://framework.zend.com/issues
  113. If you would like to be notified of new releases, you can subscribe to
  114. the fw-announce mailing list by sending a blank message to
  115. fw-announce-subscribe@lists.zend.com.
  116. LICENSE
  117. -------
  118. The files in this archive are released under the Zend Framework license.
  119. You can find a copy of this license in LICENSE.txt.
  120. ACKNOWLEDGEMENTS
  121. ----------------
  122. The Zend Framework team would like to thank all the contributors to the Zend
  123. Framework project, our corporate sponsor, and you, the Zend Framework user.
  124. Please visit us sometime soon at http://framework.zend.com.