Skip to content

Commit 7271bb8

Browse files
author
Sergio García Prado
committed
v0.5.3
1 parent a90ec81 commit 7271bb8

File tree

15 files changed

+49
-19
lines changed

15 files changed

+49
-19
lines changed

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

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,4 +76,12 @@
7676
* Add `get_all` method to `RootEntity` and `SnapshotRepository` to get all the stored instance on the repository.
7777
* Rename `SnapshotService` command topics to avoid collisions with application-level topics.
7878
* Rename `TransactionService` command topics to avoid collisions with application-level topics.
79-
* Minor changes.
79+
* Minor changes.
80+
81+
0.5.3 (2022-03-04)
82+
------------------
83+
84+
* Add `RefException` to be raised when some reference cannot be resolved.
85+
* Improve attribute and item accessors of `Ref`, `Event` and `FieldDiffContainer`
86+
* Deprecate `Event.get_one` in favor of `Event.get_field`.
87+
* Deprecate `Event.get_all` in favor of `Event.get_fields`.

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.2"
3+
__version__ = "0.5.3"
44

55
from .actions import (
66
Action,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tool.poetry]
22
name = "minos-microservice-aggregate"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "The Aggregate pattern of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
7-
homepage = "http://www.minos.run/"
7+
homepage = "https://www.minos.run"
88
authors = ["Minos Framework Devs <[email protected]>"]
99
license = "MIT"
1010
classifiers = [

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,4 +284,11 @@ History
284284
------------------
285285

286286
* Add `query_repository` section to `MinosConfig`.
287-
* Minor changes.
287+
* Minor changes.
288+
289+
0.5.3 (2022-03-04)
290+
------------------
291+
292+
* Big performance improvement related with a caching layer over type hint comparisons at `TypeHintComparator`.
293+
* Improve attribute and item accessors of `Model`.
294+
* Fix bug related with casting from `dict` to `Model` instances on field setters.

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.2"
3+
__version__ = "0.5.3"
44

55
from .configuration import (
66
BROKER,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tool.poetry]
22
name = "minos-microservice-common"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
description = "The common core of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
7-
homepage = "http://www.minos.run/"
7+
homepage = "https://www.minos.run"
88
authors = ["Minos Framework Devs <[email protected]>"]
99
license = "MIT"
1010
classifiers = [

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,9 @@
6767

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

70-
* Fix bug related with dependency specification.
70+
* Fix bug related with dependency specification.
71+
72+
# 0.5.3 (2022-03-04)
73+
74+
* Update the `resolve_references: bool` default value to `False` defined at `PreEventHandler.handle`.
75+
* Improve error messages of `PreEventHandler`.

packages/core/minos-microservice-cqrs/minos/cqrs/__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.3"
44

55
from .exceptions import (
66
MinosCqrsException,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tool.poetry]
22
name = "minos-microservice-cqrs"
3-
version = "0.5.1"
3+
version = "0.5.3"
44
description = "The CQRS pattern of the Minos Framework"
55
readme = "README.md"
66
repository = "https://github.com/minos-framework/minos-python"
7-
homepage = "http://www.minos.run/"
7+
homepage = "https://www.minos.run"
88
authors = ["Minos Framework Devs <[email protected]>"]
99
license = "MIT"
1010
classifiers = [

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

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,4 +214,9 @@ History
214214
------------------
215215

216216
* Fix bug related with enroute decorator collisions in which the `MinosRedefinedEnrouteDecoratorException` was not raised.
217-
* Minor changes.
217+
* Minor changes.
218+
219+
0.5.3 (2022-03-04)
220+
------------------
221+
222+
* Improve error messages of `BrokerDispatcher`, `RestHandler` and `PeriodicTask`.

0 commit comments

Comments
 (0)