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.

271 lines
2.6 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # Changelog
  2. ## 0.4.0 (October 26, 2017)
  3. BREAKING:
  4. - [common] GoPath is now a function
  5. - [db] `DB` and `Iterator` interfaces have new methods to better support iteration
  6. FEATURES:
  7. - [autofile] `Read([]byte)` and `Write([]byte)` methods on `Group` to support binary WAL
  8. - [common] `Kill()` sends SIGTERM to the current process
  9. IMPROVEMENTS:
  10. - comments and linting
  11. BUG FIXES:
  12. - [events] fix allocation error prefixing cache with 1000 empty events
  13. ## 0.3.2 (October 2, 2017)
  14. BUG FIXES:
  15. - [autofile] fix AutoFile.Sync() to open file if it's been closed
  16. - [db] fix MemDb.Close() to not empty the database (ie. its just a noop)
  17. ## 0.3.1 (September 22, 2017)
  18. BUG FIXES:
  19. - [common] fix WriteFileAtomic to not use /tmp, which can be on another device
  20. ## 0.3.0 (September 22, 2017)
  21. BREAKING CHANGES:
  22. - [log] logger functions no longer returns an error
  23. - [common] NewBaseService takes the new logger
  24. - [cli] RunCaptureWithArgs now captures stderr and stdout
  25. - +func RunCaptureWithArgs(cmd Executable, args []string, env map[string]string) (stdout, stderr string, err error)
  26. - -func RunCaptureWithArgs(cmd Executable, args []string, env map[string]string) (output string, err error)
  27. FEATURES:
  28. - [common] various common HTTP functionality
  29. - [common] Date range parsing from string (ex. "2015-12-31:2017-12-31")
  30. - [common] ProtocolAndAddress function
  31. - [pubsub] New package for publish-subscribe with more advanced filtering
  32. BUG FIXES:
  33. - [common] fix atomicity of WriteFileAtomic by calling fsync
  34. - [db] fix memDb iteration index out of range
  35. - [autofile] fix Flush by calling fsync
  36. ## 0.2.2 (June 16, 2017)
  37. FEATURES:
  38. - [common] IsHex and StripHex for handling `0x` prefixed hex strings
  39. - [log] NewTracingLogger returns a logger that output error traces, ala `github.com/pkg/errors`
  40. IMPROVEMENTS:
  41. - [cli] Error handling for tests
  42. - [cli] Support dashes in ENV variables
  43. BUG FIXES:
  44. - [flowrate] Fix non-deterministic test failures
  45. ## 0.2.1 (June 2, 2017)
  46. FEATURES:
  47. - [cli] Log level parsing moved here from tendermint repo
  48. ## 0.2.0 (May 18, 2017)
  49. BREAKING CHANGES:
  50. - [common] NewBaseService takes the new logger
  51. FEATURES:
  52. - [cli] New library to standardize building command line tools
  53. - [log] New logging library
  54. BUG FIXES:
  55. - [autofile] Close file before rotating
  56. ## 0.1.0 (May 1, 2017)
  57. Initial release, combines what were previously independent repos:
  58. - go-autofile
  59. - go-clist
  60. - go-common
  61. - go-db
  62. - go-events
  63. - go-flowrate
  64. - go-logger
  65. - go-merkle
  66. - go-process