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.21 #32

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps fastapi-pagination from 0.11.2 to 0.12.21.

Release notes

Sourced from fastapi-pagination's releases.

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

0.12.16

  • Add set_params function. #1029

0.12.15

... (truncated)

Commits
  • ef212e0 Return back paginate_query function (#1093)
  • 0fe686a Update pyproject.toml
  • a7a9668 Merge pull request #1090 from uriyyo/dependabot/pip/faker-24.3.0
  • 7ecd501 Bump faker from 24.2.0 to 24.3.0
  • f173c43 Merge pull request #1089 from uriyyo/dependabot/pip/scylla-driver-3.26.8
  • b46e47f Bump scylla-driver from 3.26.7 to 3.26.8
  • 1894afd Merge pull request #1087 from uriyyo/dependabot/pip/ruff-0.3.3
  • 1010fb1 Bump ruff from 0.3.2 to 0.3.3
  • a0bd0b9 Merge pull request #1086 from uriyyo/dependabot/pip/mkdocs-material-9.5.14
  • 5e845ca Bump mkdocs-material from 9.5.13 to 9.5.14
  • 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.21.
- [Release notes](https://github.com/uriyyo/fastapi-pagination/releases)
- [Commits](uriyyo/fastapi-pagination@0.11.2...0.12.21)

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

dependabot bot commented on behalf of github Apr 8, 2024

Superseded by #33.

@dependabot dependabot bot closed this Apr 8, 2024
@dependabot dependabot bot deleted the dependabot/pip/fastapi-pagination-0.12.21 branch April 8, 2024 16:46
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