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.

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