NEWS 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. Version 1.3.1 - July 20, 2011
  2. - Feature upgrade; Multiple strategies for failover. Choose from default which
  3. now falls back to a priority order from 1st to last, round robin which only
  4. changes pools when one is idle, rotate which changes pools at user-defined
  5. intervals, and load-balance which spreads the work evenly amongst all pools.
  6. - Implement pool rotation strategy.
  7. - Implement load balancing algorithm by rotating requests to each pool.
  8. - Timeout on failed discarding of staged requests.
  9. - Implement proper flagging of idle pools, test them with the watchdog thread,
  10. and failover correctly.
  11. - Move pool active test to own function.
  12. - Allow multiple strategies to be set for multipool management.
  13. - Track pool number.
  14. - Don't waste the work items queued on testing the pools at startup.
  15. - Reinstate the mining thread watchdog restart.
  16. - Add a getpoll bool into the thread information and don't restart threads stuck
  17. waiting on work.
  18. - Rename the idlenet bool for the pool for later use.
  19. - Allow the user/pass userpass urls to be input in any order.
  20. - When json rpc errors occur they occur in spits and starts, so trying to limit
  21. them with the comms error bool doesn't stop a flood of them appearing.
  22. - Reset the queued count to allow more work to be queued for the new pool on
  23. pool switch.
  24. Version 1.3.0 - July 19, 2011
  25. - Massive infrastructure update to support pool failover.
  26. - Accept multiple parameters for url, user and pass and set up structures of
  27. pool data accordingly.
  28. - Probe each pool for what it supports.
  29. - Implement per pool feature support according to rolltime support as
  30. advertised by server.
  31. - Do switching automatically based on a 300 second timeout of locally generated
  32. work or 60 seconds of no response from a server that doesn't support rolltime.
  33. - Implement longpoll server switching.
  34. - Keep per-pool data and display accordingly.
  35. - Make sure cgminer knows how long the pool has actually been out for before
  36. deeming it a prolonged outage.
  37. - Fix bug with ever increasing staged work in 1.2.8 that eventually caused
  38. infinite rejects.
  39. - Make warning about empty http requests not show by default since many
  40. servers do this regularly.
  41. Version 1.2.8 - July 18, 2011
  42. - More OSX build fixes.
  43. - Add an sse4 algorithm to CPU mining.
  44. - Fix CPU mining with other algorithms not working.
  45. - Rename the poclbm file to ensure a new binary is built since.
  46. - We now are guaranteed to have one fresh work item after a block change and we
  47. should only discard staged requests.
  48. - Don't waste the work we retrieve from a longpoll.
  49. - Provide a control lock around global bools to avoid racing on them.
  50. - Iterating over 1026 nonces when confirming data from the GPU is old code
  51. and unnecessary and can lead to repeats/stales.
  52. - The poclbm kernel needs to be updated to work with the change to 4k sized
  53. output buffers.
  54. - longpoll seems to work either way with post or get but some servers prefer
  55. get so change to httpget.
  56. Version 1.2.7 - July 16, 2011
  57. - Show last 8 characters of share submitted in log.
  58. - Display URL connected to and user logged in as in status.
  59. - Display current block and when it was started in the status line.
  60. - Only pthread_join the mining threads if they exist as determined by
  61. pthread_cancel and don't fail on pthread_cancel.
  62. - Create a unique work queue for all getworks instead of binding it to thread 0
  63. to avoid any conflict over thread 0's queue.
  64. - Clean up the code to make it clear it's watchdog thread being messaged to
  65. restart the threads.
  66. - Check the current block description hasn't been blanked pending the real
  67. new current block data.
  68. - Re-enable signal handlers once the signal has been received to make it
  69. possible to kill cgminer if it fails to shut down.
  70. - Disable restarting of CPU mining threads pending further investigation.
  71. - Update longpoll messages.
  72. - Add new block data to status line.
  73. - Fix opencl tests for osx.
  74. - Only do local generation of work if the work item is not stale itself.
  75. - Check for stale work within the mining threads and grab new work if
  76. positive.
  77. - Test for idle network conditions and prevent threads from being restarted
  78. by the watchdog thread under those circumstances.
  79. - Make sure that local work generation does not continue indefinitely by
  80. stopping it after 10 minutes.
  81. - Tweak the kernel to have a shorter path using a 4k buffer and a mask on the
  82. nonce value instead of a compare and loop for a shorter code path.
  83. - Allow queue of zero and make that default again now that we can track how
  84. work is being queued versus staged. This can decrease reject rates.
  85. - Queue precisely the number of mining threads as longpoll_staged after a
  86. new block to not generate local work.
  87. Version 1.2.6 - July 15, 2011
  88. - Put a current system status line beneath the total work status line
  89. - Fix a counting error that would prevent cgminer from correctly detecting
  90. situations where getwork was failing - this would cause stalls sometimes
  91. unrecoverably.
  92. - Limit the maximum number of requests that can be put into the queue which
  93. otherwise could get arbitrarily long during a network outage.
  94. - Only count getworks that are real queue requests.
  95. Version 1.2.5 - July 15, 2011
  96. - Conflicting -n options corrected
  97. - Setting an intensity with -I disables dynamic intensity setting
  98. - Removed option to manually disable dynamic intensity
  99. - Improve display output
  100. - Implement signal handler and attempt to clean up properly on exit
  101. - Only restart threads that are not stuck waiting on mandatory getworks
  102. - Compatibility changes courtesy of Ycros to build on mingw32 and osx
  103. - Explicitly grab first work item to prevent false positive hardware errors
  104. due to working on uninitialised work structs
  105. - Add option for non curses --text-only output
  106. - Ensure we connect at least once successfully before continuing to retry to
  107. connect in case url/login parameters were wrong
  108. - Print an executive summary when cgminer is terminated
  109. - Make sure to refresh the status window
  110. Versions -> 1.2.4
  111. - Con Kolivas - July 2011. New maintainership of code under cgminer name.
  112. - Massive rewrite to incorporate GPU mining.
  113. - Incorporate original oclminer c code.
  114. - Rewrite gpu mining code to efficient work loops.
  115. - Implement per-card detection and settings.
  116. - Implement vector code.
  117. - Implement bfi int patching.
  118. - Import poclbm and phatk ocl kernels and use according to hardware type.
  119. - Implement customised optimised versions of opencl kernels.
  120. - Implement binary kernel generation and loading.
  121. - Implement preemptive asynchronous threaded work gathering and pushing.
  122. - Implement variable length extra work queues.
  123. - Optimise workloads to be efficient miners instead of getting lots of extra
  124. work.
  125. - Implement total hash throughput counters, per-card accepted, rejected and
  126. hw error count.
  127. - Staging and watchdog threads to prevent fallover.
  128. - Stale and reject share guarding.
  129. - Autodetection of new blocks without longpoll.
  130. - Dynamic setting of intensity to maintain desktop interactivity.
  131. - Curses interface with generous statistics and information.
  132. - Local generation of work (xroll ntime) when detecting poor network
  133. connectivity.
  134. Version 1.0.2
  135. - Linux x86_64 optimisations - Con Kolivas
  136. - Optimise for x86_64 by default by using sse2_64 algo
  137. - Detects CPUs and sets number of threads accordingly
  138. - Uses CPU affinity for each thread where appropriate
  139. - Sets scheduling policy to lowest possible
  140. - Minor performance tweaks
  141. Version 1.0.1 - May 14, 2011
  142. - OSX support
  143. Version 1.0 - May 9, 2011
  144. - jansson 2.0 compatibility
  145. - correct off-by-one in date (month) display output
  146. - fix platform detection
  147. - improve yasm configure bits
  148. - support full URL, in X-Long-Polling header
  149. Version 0.8.1 - March 22, 2011
  150. - Make --user, --pass actually work
  151. - Add User-Agent HTTP header to requests, so that server operators may
  152. more easily identify the miner client.
  153. - Fix minor bug in example JSON config file
  154. Version 0.8 - March 21, 2011
  155. - Support long polling: http://deepbit.net/longpolling.php
  156. - Adjust max workload based on scantime (default 5 seconds,
  157. or 60 seconds for longpoll)
  158. - Standardize program output, and support syslog on Unix platforms
  159. - Suport --user/--pass options (and "user" and "pass" in config file),
  160. as an alternative to the current --userpass
  161. Version 0.7.2 - March 14, 2011
  162. - Add port of ufasoft's sse2 assembly implementation (Linux only)
  163. This is a substantial speed improvement on Intel CPUs.
  164. - Move all JSON-RPC I/O to separate thread. This reduces the
  165. number of HTTP connections from one-per-thread to one, reducing resource
  166. usage on upstream bitcoind / pool server.
  167. Version 0.7.1 - March 2, 2011
  168. - Add support for JSON-format configuration file. See example
  169. file example-cfg.json. Any long argument on the command line
  170. may be stored in the config file.
  171. - Timestamp each solution found
  172. - Improve sha256_4way performance. NOTE: This optimization makes
  173. the 'hash' debug-print output for sha256_way incorrect.
  174. - Use __builtin_expect() intrinsic as compiler micro-optimization
  175. - Build on Intel compiler
  176. - HTTP library now follows HTTP redirects
  177. Version 0.7 - February 12, 2011
  178. - Re-use CURL object, thereby reuseing DNS cache and HTTP connections
  179. - Use bswap_32, if compiler intrinsic is not available
  180. - Disable full target validation (as opposed to simply H==0) for now
  181. Version 0.6.1 - February 4, 2011
  182. - Fully validate "hash < target", rather than simply stopping our scan
  183. if the high 32 bits are 00000000.
  184. - Add --retry-pause, to set length of pause time between failure retries
  185. - Display proof-of-work hash and target, if -D (debug mode) enabled
  186. - Fix max-nonce auto-adjustment to actually work. This means if your
  187. scan takes longer than 5 seconds (--scantime), the miner will slowly
  188. reduce the number of hashes you work on, before fetching a new work unit.
  189. Version 0.6 - January 29, 2011
  190. - Fetch new work unit, if scanhash takes longer than 5 seconds (--scantime)
  191. - BeeCee1's sha256 4way optimizations
  192. - lfm's byte swap optimization (improves via, cryptopp)
  193. - Fix non-working short options -q, -r
  194. Version 0.5 - December 28, 2010
  195. - Exit program, when all threads have exited
  196. - Improve JSON-RPC failure diagnostics and resilience
  197. - Add --quiet option, to disable hashmeter output.
  198. Version 0.3.3 - December 27, 2010
  199. - Critical fix for sha256_cryptopp 'cryptopp_asm' algo
  200. Version 0.3.2 - December 23, 2010
  201. - Critical fix for sha256_via
  202. Version 0.3.1 - December 19, 2010
  203. - Critical fix for sha256_via
  204. - Retry JSON-RPC failures (see --retry, under "minerd --help" output)
  205. Version 0.3 - December 18, 2010
  206. - Add crypto++ 32bit assembly implementation
  207. - show version upon 'minerd --help'
  208. - work around gcc 4.5.x bug that killed 4way performance
  209. Version 0.2.2 - December 6, 2010
  210. - VIA padlock implementation works now
  211. - Minor build and runtime fixes
  212. Version 0.2.1 - November 29, 2010
  213. - avoid buffer overflow when submitting solutions
  214. - add Crypto++ sha256 implementation (C only, ASM elided for now)
  215. - minor internal optimizations and cleanups
  216. Version 0.2 - November 27, 2010
  217. - Add script for building a Windows installer
  218. - improve hash performance (hashmeter) statistics
  219. - add tcatm 4way sha256 implementation
  220. - Add experimental VIA Padlock sha256 implementation
  221. Version 0.1.2 - November 26, 2010
  222. - many small cleanups and micro-optimizations
  223. - build win32 exe using mingw
  224. - RPC URL, username/password become command line arguments
  225. - remove unused OpenSSL dependency
  226. Version 0.1.1 - November 24, 2010
  227. - Do not build sha256_generic module separately from cpuminer.
  228. Version 0.1 - November 24, 2010
  229. - Initial release.