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.19 #30

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 18, 2024

Bumps fastapi-pagination from 0.11.2 to 0.12.19.

Release notes

Sourced from fastapi-pagination's releases.

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

0.12.16

  • Add set_params function. #1029

0.12.15

  • Add python 3.12 official support. #1023
  • Fix issue with paginate empty sequence using optional params. #1022

0.12.14

  • Fix issue with default value fitler_field for pymongo. #955
  • Raise 400 error on invalid cursor value. #957

... (truncated)

Commits
  • b25f688 Suppress undefined annotation exception for pydantic v2 (#1069)
  • 60d5e1a Merge pull request #1066 from uriyyo/dependabot/pip/django-4.2.11
  • 2b4bb65 Bump django from 4.2.10 to 4.2.11
  • 932f86f Merge pull request #1067 from uriyyo/dependabot/pip/pymdown-extensions-10.7.1
  • c3284b2 Bump pymdown-extensions from 10.7 to 10.7.1
  • 6905f4a Merge pull request #1065 from uriyyo/dependabot/pip/faker-24.0.0
  • 6b3c502 Bump faker from 23.3.0 to 24.0.0
  • f102d70 Merge pull request #1064 from uriyyo/dependabot/pip/mongoengine-0.28.1
  • 8ce7334 Bump mongoengine from 0.27.0 to 0.28.1
  • 43faa49 Bump to next version [no ci]
  • 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.19.
- [Release notes](https://github.com/uriyyo/fastapi-pagination/releases)
- [Commits](uriyyo/fastapi-pagination@0.11.2...0.12.19)

---
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 Mar 18, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 25, 2024

Superseded by #32.

@dependabot dependabot bot closed this Mar 25, 2024
@dependabot dependabot bot deleted the dependabot/pip/fastapi-pagination-0.12.19 branch March 25, 2024 16:50
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