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.

314 lines
3.7 KiB

8 years ago
7 years ago
8 years ago
7 years ago
7 years ago
8 years ago
8 years ago
  1. # Changelog
  2. ## 0.7.0 (TBD)
  3. BREAKING:
  4. - [cli] WriteDemoConfig -> WriteConfigValues
  5. ## 0.6.0 (December 29, 2017)
  6. BREAKING:
  7. - [cli] remove --root
  8. - [pubsub] add String() method to Query interface
  9. IMPROVEMENTS:
  10. - [common] use a thread-safe and well seeded non-crypto rng
  11. BUG FIXES
  12. - [clist] fix misuse of wait group
  13. - [common] introduce Ticker interface and logicalTicker for better testing of timers
  14. ## 0.5.0 (December 5, 2017)
  15. BREAKING:
  16. - [common] replace Service#Start, Service#Stop first return value (bool) with an
  17. error (ErrAlreadyStarted, ErrAlreadyStopped)
  18. - [common] replace Service#Reset first return value (bool) with an error
  19. - [process] removed
  20. FEATURES:
  21. - [common] IntInSlice and StringInSlice functions
  22. - [pubsub/query] introduce `Condition` struct, expose `Operator`, and add `query.Conditions()`
  23. ## 0.4.1 (November 27, 2017)
  24. FEATURES:
  25. - [common] `Keys()` method on `CMap`
  26. IMPROVEMENTS:
  27. - [log] complex types now encoded as "%+v" by default if `String()` method is undefined (previously resulted in error)
  28. - [log] logger logs its own errors
  29. BUG FIXES:
  30. - [common] fixed `Kill()` to build on Windows (Windows does not have `syscall.Kill`)
  31. ## 0.4.0 (October 26, 2017)
  32. BREAKING:
  33. - [common] GoPath is now a function
  34. - [db] `DB` and `Iterator` interfaces have new methods to better support iteration
  35. FEATURES:
  36. - [autofile] `Read([]byte)` and `Write([]byte)` methods on `Group` to support binary WAL
  37. - [common] `Kill()` sends SIGTERM to the current process
  38. IMPROVEMENTS:
  39. - comments and linting
  40. BUG FIXES:
  41. - [events] fix allocation error prefixing cache with 1000 empty events
  42. ## 0.3.2 (October 2, 2017)
  43. BUG FIXES:
  44. - [autofile] fix AutoFile.Sync() to open file if it's been closed
  45. - [db] fix MemDb.Close() to not empty the database (ie. its just a noop)
  46. ## 0.3.1 (September 22, 2017)
  47. BUG FIXES:
  48. - [common] fix WriteFileAtomic to not use /tmp, which can be on another device
  49. ## 0.3.0 (September 22, 2017)
  50. BREAKING CHANGES:
  51. - [log] logger functions no longer returns an error
  52. - [common] NewBaseService takes the new logger
  53. - [cli] RunCaptureWithArgs now captures stderr and stdout
  54. - +func RunCaptureWithArgs(cmd Executable, args []string, env map[string]string) (stdout, stderr string, err error)
  55. - -func RunCaptureWithArgs(cmd Executable, args []string, env map[string]string) (output string, err error)
  56. FEATURES:
  57. - [common] various common HTTP functionality
  58. - [common] Date range parsing from string (ex. "2015-12-31:2017-12-31")
  59. - [common] ProtocolAndAddress function
  60. - [pubsub] New package for publish-subscribe with more advanced filtering
  61. BUG FIXES:
  62. - [common] fix atomicity of WriteFileAtomic by calling fsync
  63. - [db] fix memDb iteration index out of range
  64. - [autofile] fix Flush by calling fsync
  65. ## 0.2.2 (June 16, 2017)
  66. FEATURES:
  67. - [common] IsHex and StripHex for handling `0x` prefixed hex strings
  68. - [log] NewTracingLogger returns a logger that output error traces, ala `github.com/pkg/errors`
  69. IMPROVEMENTS:
  70. - [cli] Error handling for tests
  71. - [cli] Support dashes in ENV variables
  72. BUG FIXES:
  73. - [flowrate] Fix non-deterministic test failures
  74. ## 0.2.1 (June 2, 2017)
  75. FEATURES:
  76. - [cli] Log level parsing moved here from tendermint repo
  77. ## 0.2.0 (May 18, 2017)
  78. BREAKING CHANGES:
  79. - [common] NewBaseService takes the new logger
  80. FEATURES:
  81. - [cli] New library to standardize building command line tools
  82. - [log] New logging library
  83. BUG FIXES:
  84. - [autofile] Close file before rotating
  85. ## 0.1.0 (May 1, 2017)
  86. Initial release, combines what were previously independent repos:
  87. - go-autofile
  88. - go-clist
  89. - go-common
  90. - go-db
  91. - go-events
  92. - go-flowrate
  93. - go-logger
  94. - go-merkle
  95. - go-process