Skip to content

Commit a5f61e8

Browse files
author
Sergio García Prado
committed
v0.5.2
1 parent 8a38cc5 commit a5f61e8

File tree

12 files changed

+38
-12
lines changed

12 files changed

+38
-12
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,12 @@
6868

6969
## 0.5.1 (2022-02-03)
7070

71-
* Fix bug related with dependency specification.
71+
* Fix bug related with dependency specification.
72+
73+
## 0.5.2 (2022-02-08)
74+
75+
* Add `Condition.LIKE` operator to be used with the `find` method from `SnapshotRepository`.
76+
* Add `get_all` method to `RootEntity` and `SnapshotRepository` to get all the stored instance on the repository.
77+
* Rename `SnapshotService` command topics to avoid collisions with application-level topics.
78+
* Rename `TransactionService` command topics to avoid collisions with application-level topics.
79+
* Minor changes.

packages/core/minos-microservice-aggregate/minos/aggregate/__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.5.1"
3+
__version__ = "0.5.2"
44

55
from .actions import (
66
Action,

packages/core/minos-microservice-aggregate/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-aggregate"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
description = "The Aggregate pattern of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,4 +278,10 @@ History
278278
0.5.0 (2022-02-03)
279279
------------------
280280

281+
* Minor changes.
282+
283+
0.5.2 (2022-02-08)
284+
------------------
285+
286+
* Add `query_repository` section to `MinosConfig`.
281287
* Minor changes.

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.5.0"
3+
__version__ = "0.5.2"
44

55
from .configuration import (
66
BROKER,

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.5.0"
3+
version = "0.5.2"
44
description = "The common core of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,4 +208,10 @@ History
208208
0.5.1 (2022-02-03)
209209
------------------
210210

211-
* Fix bug related with dependency specification.
211+
* Fix bug related with dependency specification.
212+
213+
0.5.2 (2022-02-08)
214+
------------------
215+
216+
* Fix bug related with enroute decorator collisions in which the `MinosRedefinedEnrouteDecoratorException` was not raised.
217+
* Minor changes.

packages/core/minos-microservice-networks/minos/networks/__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.5.1"
3+
__version__ = "0.5.2"
44

55
from .brokers import (
66
REQUEST_HEADERS_CONTEXT_VAR,

packages/core/minos-microservice-networks/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-networks"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
description = "The networks core of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"

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

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,4 +168,10 @@ History
168168
0.5.1 (2022-02-03)
169169
------------------
170170

171-
* Fix bug related with dependency specification.
171+
* Fix bug related with dependency specification.
172+
173+
0.5.2 (2022-02-08)
174+
------------------
175+
176+
* Add compatibility to `minos-microservice-aggregate~=0.5.2`.
177+
* Minor changes.

0 commit comments

Comments
 (0)