diff --git a/CHANGELOG.md b/CHANGELOG.md index 63fadb4..dd03995 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,7 @@ -### UNRELEASED v2.7.0 -* add handling errors from `ackEvent` which resolved deadlock of **main select** of method `run` of `bootstrap` package -* add tests that check this **main select** and test framework for it -* update protobuf +### v2.7.0 +* bootstrap: add handling errors from `ackEvent` which resolved deadlock of **main select** +* bootstrap: add tests that check protocol interaction and test framework for it +* update protobuf and grpc * fix panics when service has no swagger doc ### v2.6.2 * add functionality to send requests from swagger-ui diff --git a/bootstrap/bootstrap.go b/bootstrap/bootstrap.go index 3af74f1..388fe2f 100644 --- a/bootstrap/bootstrap.go +++ b/bootstrap/bootstrap.go @@ -12,7 +12,7 @@ import ( ) const ( - LibraryVersion = "2.6.2" + LibraryVersion = "2.7.0" ) func init() { diff --git a/bootstrap/module_runner.go b/bootstrap/module_runner.go index 50e3a9f..1c117c7 100644 --- a/bootstrap/module_runner.go +++ b/bootstrap/module_runner.go @@ -89,6 +89,7 @@ func makeRunner(cfg bootstrapConfiguration) *runner { } func (b *runner) run() (ret error) { + // TODO: убрать подписку, использовать ip конфиг-сервиса b.RequireModule("isp-gate", func(list []structure.AddressConfiguration) bool { if len(list) > 0 { address := list[0]