Skip to content

bump version to 2.4.0 #65

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 1 commit into from
Dec 15, 2023
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
23 changes: 21 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,33 @@
Changelog
#########

**2.4.0**
*********

Relationship loading, filtering improvements, fixes
===================================================

* pass request to data layer by `@mahenzon`_ in `#61 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/61>`_
* fix loading multi relationships by `@mahenzon`_ in `#59 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/59>`_
* Fix type cast in filters by `@CosmoV`_ in `#62 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/62>`_
* Fix null value filtering by `@CosmoV`_ in `#60 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/60>`_
* add py.typed by `@mahenzon`_ in `#64 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/64>`_
* limit view methods by `@mahenzon`_ in `#63 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/63>`_ - (see :ref:`api example doc <api_limited_methods_example>`)

Authors
"""""""

* `@CosmoV`_
* `@mahenzon`_


**2.3.2**
*********

Duplicated entities in response fix
=======================================
* fix duplicates in list response `#48 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/48>`_
===================================

* fix duplicates in list response `#48 <https://github.com/mts-ai/FastAPI-JSONAPI/pull/48>`_

Authors
"""""""
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
# built documents.
#
# The short X.Y version.
version = "2.3"
version = "2.4"
# The full version, including alpha/beta/rc tags.
release = "2.3.2"
release = "2.4.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion fastapi_jsonapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from fastapi_jsonapi.exceptions.json_api import HTTPException
from fastapi_jsonapi.querystring import QueryStringManager

__version__ = "2.3.2"
__version__ = "2.4.0"

__all__ = [
"init",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ packages = [

[tool.poetry]
name = "fastapi-jsonapi"
version = "2.3.2"
version = "2.4.0"
description = "FastAPI extension to create REST web api according to JSON:API specification"
authors = [
"Aleksei Nekrasov <nekrasov.aleks@mail.ru>",
Expand Down