Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CHANGES 3.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. nginx_upload_progress release 0.9.2 03 Aug 2016
  2. * Allow to build as an externally loadable module (thanks to Peter Tonoli).
  3. nginx_upload_progress release 0.9.0 06 Apr 2012
  4. * INCOMPATIBLE CHANGE: JSONP is now the default output for nginx upload
  5. progress module. To restore the old behavior, add:
  6. upload_progress_java_output
  7. to your nginx configuration (thanks to drewbuschhorn for this work).
  8. * Add instructions in the README on how to use this module with JQuery
  9. AJAX.
  10. nginx_upload_progress release 0.8.4 24 Feb 2012
  11. * Fix compatibility with nginx 1.1.15
  12. nginx_upload_progress release 0.8.3 11 Sep 2011
  13. * HTTP redirects (ie 3xx range) shouldn't be reported as an error (thanks to
  14. Pierre-Yves Kerembellec)
  15. * Fix a double remove in the rb tree due to an uninitialized flag (thanks to
  16. Theo Cushion)
  17. nginx_upload_progress release 0.8.2 07 Nov 2010
  18. * Session ID query string parameter name is now configurable (thanks to
  19. Pierre-Yves Kerembellec)
  20. nginx_upload_progress release 0.8.1 27 Feb 2010
  21. * Fixed find_node so that it can find correctly nodes when there is an
  22. hash collision (thanks to Markus Doppelbauer for his detailed bug report
  23. and test case).
  24. nginx_upload_progress release 0.8 19 Dec 2009
  25. * fixed segfault at start on some platforms (reported by Vladimir
  26. Getmanshchuk and Denis Denisenko)
  27. * implemented JSONP output (thanks to Bruno Deferrari)
  28. * X-Progress-ID can now be the last parameter in the request (thanks to
  29. Bruno Deferrari)
  30. nginx_upload_progress release 0.7 21 Nov 2009
  31. * fixed segfault when uploads are aborted (thanks to Markus Doppelbauer for
  32. his bug report)
  33. * session ID header name is now configurable (thanks to Valery Kholodkov)
  34. * Added directive to format output as pure json (thanks to Valery Kholodkov)
  35. * Added directive to format output with configurable template (thanks to
  36. Valery Kholodkov)
  37. * Added directive to set a probe response content-type (thanks to Valery
  38. Kholodkov)
  39. * Added upload status variables (needs a status patch) (thanks to Valery
  40. Kholodkov)
  41. nginx_upload_progress release 0.6 12 Sep 2009
  42. * fixed node corruption when cleaning uploads (thanks to Vladimir
  43. Getmanshchuk for his detailed report)
  44. nginx_upload_progress release 0.5 28 Jun 2008
  45. * fixed progress probes returning "done" when upload was still in progress
  46. (thanks to Alexandr Kutuzov for his detailed report)
  47. * fixed stuck worker process because of rescheduled timer when issuing a
  48. reload or graceful quit (thanks to Alexandr Kutuzov for his detailed
  49. report)
  50. nginx_upload_progress release 0.4 18 May 2008
  51. * Incompatible change: track_uploads MUST be the last directive of a location
  52. it also must be in a proxy_pass or fastcgi_pass location.
  53. * fixed multiple worker_process issue
  54. * fixed several crash conditions
  55. nginx_upload_progress release 0.3 06 May 2008
  56. * fixed crash if the upload was denied by nginx because of any error
  57. condition (thanks to Michal Drapiewski for his detailed report)
  58. * report original upload error condition to client in the upload progress
  59. probe
  60. * case-insensitive checking of the X-Progress-ID header to overcome Internet
  61. Explorer XMLHttpRequest issue.
  62. nginx_upload_progress release 0.2 10 Oct 2007
  63. * the system now remembers old active uploads for 1 minute to be
  64. able to send back either error status or done status to upload
  65. progress probes.
  66. * track of HTTP error 413 (request entity too large) is implemented
  67. and the error status '413' is returned.
  68. nginx_upload_progress release 0.1 3 Oct 2007
  69. * public release