changelog 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. cgminer (2.4.0-2) stable; urgency=low
  2. Version 2.4.0-2 - May 4, 2012
  3. - Fix the benchmark feature by bypassing the new networking code.
  4. - Reset sequential reject counter after a pool is disabled for when it is re-enabled.
  5. - Don't try to reap curls if benchmarking is enabled.
  6. -- nushor <nushor11@gmail.com> Thurs, 03 May 2012 23:18:42 -0500
  7. cgminer (2.4.0-1) stable; urgency=low
  8. Version 2.4.0 - May 3, 2012
  9. - Only show longpoll warning once when it has failed.
  10. - Convert hashes to an unsigned long long as well.
  11. - Detect pools that have issues represented by endless rejected shares and
  12. disable them, with a parameter to optionally disable this feature.
  13. - Bugfix: Use a 64-bit type for hashes_done (miner_thread) since it can overflow
  14. 32-bit on some FPGAs
  15. - Implement an older header fix for a label existing before the pthread_cleanup
  16. macro.
  17. - Limit the number of curls we recruit on communication failures and with
  18. delaynet enabled to 5 by maintaining a per-pool curl count, and using a pthread
  19. conditional that wakes up when one is returned to the ring buffer.
  20. - Generalise add_pool() functions since they're repeated in add_pool_details.
  21. - Bugfix: Return failure, rather than quit, if BFwrite fails
  22. - Disable failing devices such that the user can attempt to re-enable them
  23. - Bugfix: thread_shutdown shouldn't try to free the device, since it's needed
  24. afterward
  25. - API bool's and 1TBS fixes
  26. - Icarus - minimise code delays and name timer variables
  27. - api.c V1.9 add 'restart' + redesign 'quit' so thread exits cleanly
  28. - api.c bug - remove extra ']'s in notify command
  29. - Increase pool watch interval to 30 seconds.
  30. - Reap curls that are unused for over a minute. This allows connections to be
  31. closed, thereby allowing the number of curl handles to always be the minimum
  32. necessary to not delay networking.
  33. - Use the ringbuffer of curls from the same pool for submit as well as getwork
  34. threads. Since the curl handles were already connected to the same pool and are
  35. immediately available, share submission will not be delayed by getworks.
  36. - Implement a scaleable networking framework designed to cope with any sized
  37. network requirements, yet minimise the number of connections being reopened. Do
  38. this by create a ring buffer linked list of curl handles to be used by getwork,
  39. recruiting extra handles when none is immediately available.
  40. - There is no need for the submit and getwork curls to be tied to the pool
  41. struct.
  42. - Do not recruit extra connection threads if there have been connection errors
  43. to the pool in question.
  44. - We should not retry submitting shares indefinitely or we may end up with a
  45. huge backlog during network outages, so discard stale shares if we failed to
  46. submit them and they've become stale in the interim.
  47. -- nushor <nushor11@gmail.com> Thurs, 03 May 2012 10:43:22 -0500
  48. cgminer (2.3.6-3) stable; urgency=low
  49. Version 2.3.6-3 - may 3, 2012
  50. - More bug fixes, Pre 2.4.1 release.
  51. -- nushor <nushor11@gmail.com> Thurs, 03 May 2012 00:36:50 -0500
  52. cgminer (2.3.6-2) stable; urgency=low
  53. Version 2.3.6-2 - May 2, 2012
  54. - Various bug fixes, latest build from repository.
  55. -- nushor <nushor11@gmail.com> Wed, 02 May 2012 18:17:49 -0500
  56. cgminer (2.3.6-1) stable; urgency=low
  57. Version 2.3.6 - April 29, 2012
  58. - Shorten stale share messages slightly.
  59. - Protect the freeing of current_hash under mutex_lock to prevent racing on it
  60. when set_curblock is hit concurrently.
  61. - Change default behaviour to submitting stale, removing the --submit-stale
  62. option and adding a --no-submit-stale option.
  63. - Make sure to start the getwork and submit threads when a pool is added on the
  64. fly. This fixes a crash when a pool is added to running cgminer and then
  65. switched to.
  66. - Faster hardware can easily outstrip the speed we can get work and submit
  67. shares when using only one connection per pool.
  68. - Test the queued list to see if any get/submits are already queued and if they
  69. are, start recruiting extra connections by generating new threads.
  70. - This allows us to reuse network connections at low loads but recuit new open
  71. connections as they're needed, so that cgminer can scale to hardware of any
  72. size.
  73. -- nushor <nushor11@gmail.com> Tue, 01 May 2012 13:26:09 -0500