Skip to content

Commit b94b424

Browse files
committed
Merge branch 'configuration-provider-improvements' into develop
2 parents 86a8efa + a300945 commit b94b424

File tree

7 files changed

+3930
-3063
lines changed

7 files changed

+3930
-3063
lines changed

docs/main/changelog.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ follows `Semantic versioning`_
99

1010
3.11.0
1111
------
12+
- Improve ``Configuration`` provider overriding logic.
13+
- Refactor ``Configuration`` provider.
14+
- Update "bundles" example miniapp.
1215

1316
3.10.0
1417
------

examples/miniapps/bundles/run.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ class Core(containers.DeclarativeContainer):
2323

2424
if __name__ == '__main__':
2525
# Initializing containers
26-
core = Core()
27-
core.config.update({'database': {'dsn': ':memory:'},
26+
core = Core(config={'database': {'dsn': ':memory:'},
2827
'aws': {'access_key_id': 'KEY',
2928
'secret_access_key': 'SECRET'}})
3029
users = Users(database=core.sqlite)

0 commit comments

Comments
 (0)