You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24-7Lines changed: 24 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,26 +6,42 @@ All notable changes to this project will be documented in this file.
6
6
7
7
### Added
8
8
9
+
- Allow to pass a `ignore_missing_paths` parameter to each config method
10
+
11
+
## [0.9.0] - 2023-08-04
12
+
13
+
### Added
14
+
9
15
- Added the `section_prefix` parameter that filters sections by prefix in INI/toml files
10
16
- Allow the `ignore_missing_paths` parameter to be specified individually on Configuration Sets
11
17
18
+
### Fixed
19
+
20
+
- Errors when passing objects implementing `Mapping` instead of `dict`
21
+
- Comparison to objects that are not a `Mapping`
22
+
23
+
### Changed
24
+
25
+
- Replaced TravisCI with GitHub Actions
26
+
27
+
12
28
## [0.8.3] - 2021-10-11
13
29
14
30
### Fixed
15
31
16
-
-configurations from ini file won't be converted to lower case if `lowercase_keys = False`
32
+
-Configurations from ini file won't be converted to lower case if `lowercase_keys = False`
17
33
18
34
## [0.8.2] - 2021-01-30
19
35
20
36
### Fixed
21
37
22
-
-the behavior of merging sets was incorrect since version 0.8.0
38
+
-The behavior of merging sets was incorrect since version 0.8.0
23
39
24
40
## [0.8.0] - 2020-08-01
25
41
26
42
### Changed
27
43
28
-
-the behavior of the dict-like methods `keys`, `items`, and `values` now give only the first level configuration keys instead of the old behavior of returning all the nested keys. To achieve the same behavior as before, use the `dotter_iter` context manager:
44
+
-The behavior of the dict-like methods `keys`, `items`, and `values` now give only the first level configuration keys instead of the old behavior of returning all the nested keys. To achieve the same behavior as before, use the `dotter_iter` context manager:
29
45
30
46
```python
31
47
cfg.keys() # returns only the top level keys
@@ -36,7 +52,7 @@ with cfg.dotted_iter():
36
52
37
53
### Fixed
38
54
39
-
-configuration objects are now immutable
55
+
-Configuration objects are now immutable
40
56
41
57
### Added
42
58
@@ -48,7 +64,7 @@ with cfg.dotted_iter():
48
64
49
65
### Fixed
50
66
51
-
-installation with `poetry` because of changes to pytest-black
67
+
-Installation with `poetry` because of changes to pytest-black
0 commit comments