tendermint/CHANGELOG.md

376 lines
5.5 KiB
Markdown
Raw Normal View History

2017-05-15 06:09:42 -07:00
# Changelog
## 0.8.0 (TBD)
2018-03-20 21:15:30 -07:00
BREAKING:
2018-03-22 10:55:55 -07:00
- [merkle] `PutVarint->PutUvarint` in encodeByteSlice
2018-03-20 21:15:30 -07:00
- [db] batch.WriteSync()
2018-03-22 10:55:55 -07:00
- [common] Refactored and fixed `Parallel` function
- [common] Refactored `Rand` functionality
- [common] Remove unused `Right/LeftPadString` functions
- [common] Remove StackError, introduce Error interface (to replace use of pkg/errors)
2018-03-20 21:15:30 -07:00
FEATURES:
- [db] NewPrefixDB for a DB with all keys prefixed
2018-03-22 10:55:55 -07:00
- [db] NewDebugDB prints everything during operation
- [common] SplitAndTrim func
2018-04-03 06:23:41 -07:00
- [common] RandFloat64() and rand.Float64()
BUG FIXES:
- [pubsub] Fix unsubscribing
- [cli] Return config errors
2018-04-03 06:23:41 -07:00
- [common] Fix WriteFileAtomic Windows bug
2018-03-22 16:33:10 -07:00
## 0.7.1 (March 22, 2018)
2018-03-20 21:15:30 -07:00
IMPROVEMENTS:
- glide -> dep
BUG FIXES:
2018-03-22 10:55:55 -07:00
- [common] Fix panic in NewBitArray for negative bits
- [common] Fix and simplify WriteFileAtomic so it cleans up properly
2018-03-20 21:15:30 -07:00
2018-02-20 19:00:20 -08:00
## 0.7.0 (February 20, 2018)
BREAKING:
2018-02-19 14:05:36 -08:00
- [db] Major API upgrade. See `db/types.go`.
- [common] added `Quit() <-chan struct{}` to Service interface.
The returned channel is closed when service is stopped.
- [common] Remove HTTP functions
- [common] Heap.Push takes an `int`, new Heap.PushComparable takes the comparable.
- [logger] Removed. Use `log`
- [merkle] Major API updade - uses cmn.KVPairs.
- [cli] WriteDemoConfig -> WriteConfigValues
2018-02-19 14:05:36 -08:00
- [all] Remove go-wire dependency!
2018-02-19 14:05:36 -08:00
FEATURES:
- [db] New FSDB that uses the filesystem directly
- [common] HexBytes
- [common] KVPair and KI64Pair (protobuf based key-value pair objects)
IMPROVEMENTS:
2018-02-19 14:05:36 -08:00
- [clist] add WaitChan() to CList, NextWaitChan() and PrevWaitChan()
2018-02-19 14:05:36 -08:00
to CElement. These can be used instead of blocking `*Wait()` methods
if you need to be able to send quit signal and not block forever
2018-02-19 14:05:36 -08:00
- [common] IsHex handles 0x-prefix
BUG FIXES:
- [common] BitArray check for nil arguments
- [common] Fix memory leak in RepeatTimer
2017-12-29 08:01:37 -08:00
## 0.6.0 (December 29, 2017)
BREAKING:
- [cli] remove --root
- [pubsub] add String() method to Query interface
IMPROVEMENTS:
- [common] use a thread-safe and well seeded non-crypto rng
BUG FIXES
- [clist] fix misuse of wait group
- [common] introduce Ticker interface and logicalTicker for better testing of timers
2017-12-05 16:04:07 -08:00
## 0.5.0 (December 5, 2017)
BREAKING:
2017-12-05 23:05:57 -08:00
- [common] replace Service#Start, Service#Stop first return value (bool) with an
2017-12-05 16:04:07 -08:00
error (ErrAlreadyStarted, ErrAlreadyStopped)
2017-12-05 23:05:57 -08:00
- [common] replace Service#Reset first return value (bool) with an error
2017-12-05 16:04:07 -08:00
- [process] removed
FEATURES:
- [common] IntInSlice and StringInSlice functions
2017-12-05 23:05:57 -08:00
- [pubsub/query] introduce `Condition` struct, expose `Operator`, and add `query.Conditions()`
2017-12-05 16:04:07 -08:00
2017-11-27 19:37:15 -08:00
## 0.4.1 (November 27, 2017)
FEATURES:
- [common] `Keys()` method on `CMap`
IMPROVEMENTS:
- [log] complex types now encoded as "%+v" by default if `String()` method is undefined (previously resulted in error)
- [log] logger logs its own errors
BUG FIXES:
- [common] fixed `Kill()` to build on Windows (Windows does not have `syscall.Kill`)
2017-10-26 17:57:33 -07:00
## 0.4.0 (October 26, 2017)
BREAKING:
- [common] GoPath is now a function
- [db] `DB` and `Iterator` interfaces have new methods to better support iteration
FEATURES:
- [autofile] `Read([]byte)` and `Write([]byte)` methods on `Group` to support binary WAL
2017-10-27 08:52:10 -07:00
- [common] `Kill()` sends SIGTERM to the current process
2017-10-26 17:57:33 -07:00
IMPROVEMENTS:
- comments and linting
BUG FIXES:
- [events] fix allocation error prefixing cache with 1000 empty events
2017-10-02 20:26:45 -07:00
## 0.3.2 (October 2, 2017)
BUG FIXES:
- [autofile] fix AutoFile.Sync() to open file if it's been closed
- [db] fix MemDb.Close() to not empty the database (ie. its just a noop)
2017-09-22 10:22:02 -07:00
## 0.3.1 (September 22, 2017)
BUG FIXES:
- [common] fix WriteFileAtomic to not use /tmp, which can be on another device
2017-09-22 06:38:58 -07:00
## 0.3.0 (September 22, 2017)
2017-06-17 15:35:05 -07:00
BREAKING CHANGES:
2017-09-18 18:06:10 -07:00
- [log] logger functions no longer returns an error
2017-08-25 13:58:37 -07:00
- [common] NewBaseService takes the new logger
2017-06-20 13:40:32 -07:00
- [cli] RunCaptureWithArgs now captures stderr and stdout
- +func RunCaptureWithArgs(cmd Executable, args []string, env map[string]string) (stdout, stderr string, err error)
2017-09-18 18:06:10 -07:00
- -func RunCaptureWithArgs(cmd Executable, args []string, env map[string]string) (output string, err error)
2017-06-17 15:35:05 -07:00
2017-06-20 14:18:55 -07:00
FEATURES:
2017-08-25 13:58:37 -07:00
- [common] various common HTTP functionality
2017-09-18 18:06:10 -07:00
- [common] Date range parsing from string (ex. "2015-12-31:2017-12-31")
2017-09-22 06:38:58 -07:00
- [common] ProtocolAndAddress function
2017-08-25 13:58:37 -07:00
- [pubsub] New package for publish-subscribe with more advanced filtering
BUG FIXES:
- [common] fix atomicity of WriteFileAtomic by calling fsync
- [db] fix memDb iteration index out of range
2017-09-22 06:38:58 -07:00
- [autofile] fix Flush by calling fsync
2017-06-20 14:18:55 -07:00
2017-06-16 08:40:14 -07:00
## 0.2.2 (June 16, 2017)
FEATURES:
- [common] IsHex and StripHex for handling `0x` prefixed hex strings
- [log] NewTracingLogger returns a logger that output error traces, ala `github.com/pkg/errors`
IMPROVEMENTS:
- [cli] Error handling for tests
2017-09-18 18:06:10 -07:00
- [cli] Support dashes in ENV variables
2017-06-16 08:40:14 -07:00
BUG FIXES:
- [flowrate] Fix non-deterministic test failures
2017-06-02 01:55:43 -07:00
## 0.2.1 (June 2, 2017)
FEATURES:
- [cli] Log level parsing moved here from tendermint repo
2017-05-18 02:27:26 -07:00
## 0.2.0 (May 18, 2017)
2017-05-15 06:09:42 -07:00
BREAKING CHANGES:
- [common] NewBaseService takes the new logger
FEATURES:
- [cli] New library to standardize building command line tools
- [log] New logging library
BUG FIXES:
2017-06-02 01:55:43 -07:00
- [autofile] Close file before rotating
2017-05-15 06:09:42 -07:00
## 0.1.0 (May 1, 2017)
Initial release, combines what were previously independent repos:
- go-autofile
- go-clist
- go-common
- go-db
- go-events
- go-flowrate
- go-logger
- go-merkle
- go-process