口腔客户管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 1.5KB

2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. # CHANGELOG for ZipStream-PHP
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
  4. and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
  5. ## [2.1.0] - 2020-06-01
  6. ### Changed
  7. - Don't execute ob_flush() when output buffering is not enabled (#152)
  8. - Fix inconsistent return type on 32-bit systems (#149) Fix #144
  9. - Use mbstring polyfill (#151)
  10. - Promote 7zip usage over unzip to avoid UTF-8 issues (#147)
  11. ## [2.0.0] - 2020-02-22
  12. ### Breaking change
  13. - Only the self opened streams will be closed (#139)
  14. If you were relying on ZipStream to close streams that the library didn't open,
  15. you'll need to close them yourself now.
  16. ### Changed
  17. - Minor change to data descriptor (#136)
  18. ## [1.2.0] - 2019-07-11
  19. ### Added
  20. - Option to flush output buffer after every write (#122)
  21. ## [1.1.0] - 2019-04-30
  22. ### Fixed
  23. - Honor last-modified timestamps set via `ZipStream\Option\File::setTime()` (#106)
  24. - Documentation regarding output of HTTP headers
  25. - Test warnings with PHPUnit (#109)
  26. ### Added
  27. - Test for FileNotReadableException (#114)
  28. - Size attribute to File options (#113)
  29. - Tests on PHP 7.3 (#108)
  30. ## [1.0.0] - 2019-04-17
  31. ### Breaking changes
  32. - Mininum PHP version is now 7.1
  33. - Options are now passed to the ZipStream object via the Option\Archive object. See the wiki for available options and code examples
  34. ### Added
  35. - Add large file support with Zip64 headers
  36. ### Changed
  37. - Major refactoring and code cleanup