Skip to content

Commit 6c3e1af

Browse files
authored
Merge pull request #59 from LeanderCS/remove-deprecated
Removed deprecated camel case methods and properties and subfolders
2 parents 8666de0 + 8399a11 commit 6c3e1af

File tree

81 files changed

+569
-1119
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+569
-1119
lines changed

docs/source/changelog.rst

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ Changelog
33

44
All notable changes to this project will be documented in this file.
55

6+
[0.6.0] - 2025-06-30
7+
--------------------
8+
9+
Removed
10+
^^^^^^^
11+
- Removed deprecated camel case methods and properties.
12+
- Removed deprecated subfolders.
13+
14+
615
[0.5.5] - 2025-06-30
716
--------------------
817

@@ -75,9 +84,11 @@ Changed
7584

7685
- Renamed files into snake_case to follow the PEP8 standard.
7786
This requires a migration if you are importing the files directly.
78-
e.g. ``from flask_inputfilter.filters import Base64ImageResizeFilter`` to
87+
e.g. ``from flask_inputfilter.Filter import Base64ImageResizeFilter`` to
7988
``from flask_inputfilter.filters.base64_image_resize_filter import Base64ImageResizeFilter``.
8089

90+
If you are using the components through the module, you don't need to change anything.
91+
8192

8293
[0.4.3a1] - 2025-04-26
8394
----------------------

docs/source/conf.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,25 @@
1212
"sphinx.ext.napoleon",
1313
]
1414

15+
autodoc_default_options = {
16+
"show-inheritance": True,
17+
}
18+
1519
autodoc_member_order = "bysource"
1620
autodoc_typehints = "description"
1721
autoclass_content = "both"
1822

23+
autodoc_type_aliases = {
24+
"EstimatorPubLike": "EstimatorPubLike",
25+
"SamplerPubLike": "SamplerPubLike",
26+
}
27+
28+
autosummary_generate = True
29+
autosummary_generate_overwrite = False
30+
31+
napoleon_google_docstring = True
32+
napoleon_numpy_docstring = False
33+
1934
sys.path.insert(0, os.path.abspath("../.."))
2035

2136
templates_path = []

flask_inputfilter/Condition/__init__.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

flask_inputfilter/Enum/__init__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

flask_inputfilter/Exception/__init__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

flask_inputfilter/Filter/__init__.py

Lines changed: 0 additions & 65 deletions
This file was deleted.

flask_inputfilter/Model/__init__.py

Lines changed: 0 additions & 6 deletions
This file was deleted.

flask_inputfilter/Validator/__init__.py

Lines changed: 0 additions & 95 deletions
This file was deleted.

0 commit comments

Comments
 (0)