Skip to content

Commit cef6d35

Browse files
committed
Merge branch 'release/4.36.0' into master
2 parents 48df949 + 902913c commit cef6d35

20 files changed

+4269
-3850
lines changed

.coveragerc

+3
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ source = src/dependency_injector
33
omit = tests/unit
44
plugins = Cython.Coverage
55

6+
[report]
7+
show_missing = true
8+
69
[html]
710
directory=reports/unittests/

CONTRIBUTORS.rst

+2
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ Dependency Injector Contributors
1818
+ Shubhendra Singh Chauhan (withshubh)
1919
+ sonthonaxrk (sonthonaxrk)
2020
+ Ngo Thanh Loi (Leonn) (loingo95)
21+
+ Thiago Hiromi (thiromi)
22+
+ Felipe Rubio (krouw)

docs/main/changelog.rst

+22-2
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,32 @@ that were made in every particular version.
77
From version 0.7.6 *Dependency Injector* framework strictly
88
follows `Semantic versioning`_
99

10-
4.35.3
11-
------
10+
4.36.0
11+
------
12+
- Add support of non-string keys for ``FactoryAggregate`` provider.
13+
- Improve ``FactoryAggregate`` typing stub.
14+
- Improve resource subclasses typing and make shutdown definition optional
15+
`PR #492 <https://github.com/ets-labs/python-dependency-injector/pull/492>`_.
16+
Thanks to `@EdwardBlair <https://github.com/EdwardBlair>`_ for suggesting the improvement.
17+
- Fix type annotations for ``.provides``.
18+
Thanks to `Thiago Hiromi @thiromi <https://github.com/thiromi>`_ for the fix
19+
`PR #491 <https://github.com/ets-labs/python-dependency-injector/pull/491>`_.
20+
- Fix environment variables interpolation examples in configuration provider docs ``{$ENV} -> ${ENV}``.
21+
Thanks to `Felipe Rubio @krouw <https://github.com/krouw>`_ for reporting the issue and
22+
fixing yaml example `PR #494 <https://github.com/ets-labs/python-dependency-injector/pull/494>`_.
1223
- Fix ``@containers.copy()`` decorator to respect dependencies on parent providers.
1324
See issue `#477 <https://github.com/ets-labs/python-dependency-injector/issues/477>`_.
1425
Thanks to `Andrey Torsunov @gtors <https://github.com/gtors>`_ for reporting the issue.
1526
- Fix typing stub for ``container.override_providers()`` to accept other types besides ``Provider``.
27+
- Fix runtime issue with generic typing in resource initializer classes ``resources.Resource``
28+
and ``resources.AsyncResource``.
29+
See issue `#488 <https://github.com/ets-labs/python-dependency-injector/issues/488>`_.
30+
Thanks to `@EdwardBlair <https://github.com/EdwardBlair>`_ for reporting the issue.
31+
32+
4.35.3
33+
------
34+
- *This release was removed from PyPI. It was inconsistently published because project has
35+
reached a PyPI size limit. Changes from this release are published on PyPI in next version.*
1636

1737
4.35.2
1838
------

docs/providers/configuration.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ where ``examples/providers/configuration/config.ini`` is:
5050
.. code-block:: ini
5151
5252
[section]
53-
option1 = {$ENV_VAR}
54-
option2 = {$ENV_VAR}/path
55-
option3 = {$ENV_VAR:default}
53+
option1 = ${ENV_VAR}
54+
option2 = ${ENV_VAR}/path
55+
option3 = ${ENV_VAR:default}
5656
5757
See also: :ref:`configuration-envs-interpolation`.
5858

@@ -77,9 +77,9 @@ where ``examples/providers/configuration/config.yml`` is:
7777
.. code-block:: ini
7878
7979
section:
80-
option1: {$ENV_VAR}
81-
option2: {$ENV_VAR}/path
82-
option3: {$ENV_VAR:default}
80+
option1: ${ENV_VAR}
81+
option2: ${ENV_VAR}/path
82+
option3: ${ENV_VAR:default}
8383
8484
See also: :ref:`configuration-envs-interpolation`.
8585

@@ -208,7 +208,7 @@ variable ``ENV_NAME`` is undefined, configuration provider will substitute value
208208
.. code-block:: ini
209209
210210
[section]
211-
option = {$ENV_NAME:default}
211+
option = ${ENV_NAME:default}
212212
213213
If you'd like to specify a default value for environment variable inside of the application you can use
214214
``os.environ.setdefault()``.
@@ -380,7 +380,7 @@ an undefined environment variable without a default value.
380380
.. code-block:: ini
381381
382382
section:
383-
option: {$UNDEFINED}
383+
option: ${UNDEFINED}
384384
385385
.. code-block:: python
386386

docs/providers/factory.rst

+25-9
Original file line numberDiff line numberDiff line change
@@ -148,13 +148,11 @@ provider with two peculiarities:
148148
Factory aggregate
149149
-----------------
150150

151-
:py:class:`FactoryAggregate` provider aggregates multiple factories. When you call the
152-
``FactoryAggregate`` it delegates the call to one of the factories.
151+
:py:class:`FactoryAggregate` provider aggregates multiple factories.
153152

154-
The aggregated factories are associated with the string names. When you call the
155-
``FactoryAggregate`` you have to provide one of the these names as a first argument.
156-
``FactoryAggregate`` looks for the factory with a matching name and delegates it the work. The
157-
rest of the arguments are passed to the delegated ``Factory``.
153+
The aggregated factories are associated with the string keys. When you call the
154+
``FactoryAggregate`` you have to provide one of the these keys as a first argument.
155+
``FactoryAggregate`` looks for the factory with a matching key and calls it with the rest of the arguments.
158156

159157
.. image:: images/factory_aggregate.png
160158
:width: 100%
@@ -165,17 +163,35 @@ rest of the arguments are passed to the delegated ``Factory``.
165163
:lines: 3-
166164
:emphasize-lines: 33-37,47
167165

168-
You can get a dictionary of the aggregated factories using the ``.factories`` attribute of the
169-
``FactoryAggregate``. To get a game factories dictionary from the previous example you can use
166+
You can get a dictionary of the aggregated factories using the ``.factories`` attribute.
167+
To get a game factories dictionary from the previous example you can use
170168
``game_factory.factories`` attribute.
171169

172170
You can also access an aggregated factory as an attribute. To create the ``Chess`` object from the
173-
previous example you can do ``chess = game_factory.chess('John', 'Jane')``.
171+
previous example you can do ``chess = game_factory.chess("John", "Jane")``.
174172

175173
.. note::
176174
You can not override the ``FactoryAggregate`` provider.
177175

178176
.. note::
179177
When you inject the ``FactoryAggregate`` provider it is passed "as is".
180178

179+
To use non-string keys or keys with ``.`` and ``-`` you can provide a dictionary as a positional argument:
180+
181+
.. code-block:: python
182+
183+
providers.FactoryAggregate({
184+
SomeClass: providers.Factory(...),
185+
"key.with.periods": providers.Factory(...),
186+
"key-with-dashes": providers.Factory(...),
187+
})
188+
189+
Example:
190+
191+
.. literalinclude:: ../../examples/providers/factory_aggregate_non_string_keys.py
192+
:language: python
193+
:lines: 3-
194+
:emphasize-lines: 30-33,39-40
195+
196+
181197
.. disqus::
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
"""`FactoryAggregate` provider with non-string keys example."""
2+
3+
from dependency_injector import containers, providers
4+
5+
6+
class Command:
7+
...
8+
9+
10+
class CommandA(Command):
11+
...
12+
13+
14+
class CommandB(Command):
15+
...
16+
17+
18+
class Handler:
19+
...
20+
21+
22+
class HandlerA(Handler):
23+
...
24+
25+
26+
class HandlerB(Handler):
27+
...
28+
29+
30+
class Container(containers.DeclarativeContainer):
31+
32+
handler_factory = providers.FactoryAggregate({
33+
CommandA: providers.Factory(HandlerA),
34+
CommandB: providers.Factory(HandlerB),
35+
})
36+
37+
38+
if __name__ == "__main__":
39+
container = Container()
40+
41+
handler_a = container.handler_factory(CommandA)
42+
handler_b = container.handler_factory(CommandB)
43+
44+
assert isinstance(handler_a, HandlerA)
45+
assert isinstance(handler_b, HandlerB)

src/dependency_injector/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Top-level package."""
22

3-
__version__ = '4.35.3'
3+
__version__ = '4.36.0'
44
"""Version number.
55
66
:type: str

0 commit comments

Comments
 (0)