Skip to content

Commit b86750e

Browse files
author
Sergio García Prado
committed
v0.6.1
1 parent 3d39fff commit b86750e

File tree

6 files changed

+17
-9
lines changed

6 files changed

+17
-9
lines changed

packages/core/minos-microservice-common/HISTORY.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,7 @@ class MyInjectableClass:
329329
poetry add minos-http-aiohttp@^0.6
330330
```
331331

332-
* Update `config.yml` file:
333-
* Add ``:
332+
* Add `HttpConnector` instance to `service.injections` section of `config.yml` file:
334333

335334
```yaml
336335
...
@@ -342,7 +341,7 @@ service:
342341
...
343342
```
344343

345-
* Add `routers` section:
344+
* Add `routers` section to `config.yml` file:
346345

347346
```yaml
348347
...
@@ -354,4 +353,9 @@ routers:
354353
```
355354

356355
* Update `minos.common.Config` usages according to the new provided API:
357-
* Most common issues come from calls like `config.query_repository._asdict()`, that must be transformed to `config.get_database_by_name("query")`
356+
* Most common issues come from calls like `config.query_repository._asdict()`, that must be transformed to `config.get_database_by_name("query")`
357+
358+
0.6.1 (2022-04-01)
359+
------------------
360+
361+
* Fix bug that didn't show the correct exception traceback when microservice failures occurred.

packages/core/minos-microservice-common/minos/common/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "Minos Framework Devs"
22
__email__ = "[email protected]"
3-
__version__ = "0.6.0"
3+
__version__ = "0.6.1"
44

55
from .builders import (
66
BuildableMixin,

packages/core/minos-microservice-common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "minos-microservice-common"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "The common core of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"

packages/plugins/minos-broker-kafka/HISTORY.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,8 @@
1818
## 0.6.0 (2022-03-28)
1919

2020
* Add `KafkaCircuitBreakerMixin` to integrate `minos.common.CircuitBreakerMixin` into the `KafkaBrokerPublisher` and `KafkaBrokerSubscriber` classes to be tolerant to connection failures to `kafka`.
21-
* Add `KafkaBrokerPublisherBuilder` and `KafkaBrokerBuilderMixin` classes to ease the building process.
21+
* Add `KafkaBrokerPublisherBuilder` and `KafkaBrokerBuilderMixin` classes to ease the building process.
22+
23+
## 0.6.1 (2022-04-01)
24+
25+
* Improve `KafkaBrokerSubscriber`'s destroying process.

packages/plugins/minos-broker-kafka/minos/plugins/kafka/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = "Minos Framework Devs"
22
__email__ = "[email protected]"
3-
__version__ = "0.6.0"
3+
__version__ = "0.6.1"
44

55
from .common import (
66
KafkaBrokerBuilderMixin,

packages/plugins/minos-broker-kafka/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "minos-broker-kafka"
3-
version = "0.6.0"
3+
version = "0.6.1"
44
description = "The kafka plugin of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"

0 commit comments

Comments
 (0)