Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Bump fastapi-pagination from 0.11.2 to 0.12.22 #33

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 8, 2024

Bumps fastapi-pagination from 0.11.2 to 0.12.22.

Release notes

Sourced from fastapi-pagination's releases.

0.12.22

  • Fix issue when custom OpenAPI schema is overrided. #1105
  • Fix issue when params field name is keyword. #1112

0.12.21

  • Return fastapi.ext.sqlalchemy.paginate_query function. #1093

0.12.20

  • Add ability to paginate raw sqlalchemy queries. #1085

0.12.19

  • Suppress undefined annotation exception for pydantic v2. #1069

0.12.18

  • Bump 'beanie' version. #1043
  • Add better exception message for sqlalchemy non-hashable rows. #1048
  • Implement new page customization. #1046

Important changes

Current release changes way how to customize page. New customization allows to customize pages in typing-compatible way that will not require to use # type: ignore or if TYPE_CHECKING workarounds, for more information, please check docs - link.

Old way

from fastapi_pagination import Page
CustomPage = Page.with_custom_options(
cls_name="CustomPage",
size=10,
)

New way:

from fastapi_pagination import Page
from fastapi_pagination.customization import CustomizedPage, UseName, UseParamsFields
CustomPage = CustomizedPage[
Page,
UseName("CustomPage"),
UseParamsFields(size=10),
]

0.12.17

  • Add async analog of default paginate. #1039
  • Fix piccolo issue when filter by foreign field. #1038

... (truncated)

Commits
  • d52fe53 Fix issue when params field name is keyword (#1112)
  • 1475991 Merge pull request #1111 from uriyyo/dependabot/pip/mkdocs-material-9.5.17
  • 2e8570d Bump mkdocs-material from 9.5.16 to 9.5.17
  • 6b3b7de Merge pull request #1109 from uriyyo/dependabot/pip/ruff-0.3.5
  • db9c26a Bump ruff from 0.3.4 to 0.3.5
  • 8b1daa5 Merge pull request #1108 from uriyyo/dependabot/pip/fastapi-0.110.1
  • 58ab874 Bump fastapi from 0.110.0 to 0.110.1
  • 528b95c Merge pull request #1107 from uriyyo/dependabot/pip/mkdocs-material-9.5.16
  • f8d320a Bump mkdocs-material from 9.5.15 to 9.5.16
  • 29383d8 Fix issue when custom OpenAPI schema is overrided (#1105)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [fastapi-pagination](https://github.com/uriyyo/fastapi-pagination) from 0.11.2 to 0.12.22.
- [Release notes](https://github.com/uriyyo/fastapi-pagination/releases)
- [Commits](uriyyo/fastapi-pagination@0.11.2...0.12.22)

---
updated-dependencies:
- dependency-name: fastapi-pagination
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 8, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 22, 2024

Superseded by #35.

@dependabot dependabot bot closed this Apr 22, 2024
@dependabot dependabot bot deleted the dependabot/pip/fastapi-pagination-0.12.22 branch April 22, 2024 16:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants