Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ Changelog

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

[0.6.0] - 2025-06-30
--------------------

Removed
^^^^^^^
- Removed deprecated camel case methods and properties.
- Removed deprecated subfolders.


[0.5.5] - 2025-06-30
--------------------

Expand Down Expand Up @@ -75,9 +84,11 @@ Changed

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

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


[0.4.3a1] - 2025-04-26
----------------------
Expand Down
15 changes: 15 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,25 @@
"sphinx.ext.napoleon",
]

autodoc_default_options = {
"show-inheritance": True,
}

autodoc_member_order = "bysource"
autodoc_typehints = "description"
autoclass_content = "both"

autodoc_type_aliases = {
"EstimatorPubLike": "EstimatorPubLike",
"SamplerPubLike": "SamplerPubLike",
}

autosummary_generate = True
autosummary_generate_overwrite = False

napoleon_google_docstring = True
napoleon_numpy_docstring = False

sys.path.insert(0, os.path.abspath("../.."))

templates_path = []
Expand Down
41 changes: 0 additions & 41 deletions flask_inputfilter/Condition/__init__.py

This file was deleted.

7 changes: 0 additions & 7 deletions flask_inputfilter/Enum/__init__.py

This file was deleted.

5 changes: 0 additions & 5 deletions flask_inputfilter/Exception/__init__.py

This file was deleted.

65 changes: 0 additions & 65 deletions flask_inputfilter/Filter/__init__.py

This file was deleted.

6 changes: 0 additions & 6 deletions flask_inputfilter/Model/__init__.py

This file was deleted.

95 changes: 0 additions & 95 deletions flask_inputfilter/Validator/__init__.py

This file was deleted.

Loading