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.23 #35

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps fastapi-pagination from 0.11.2 to 0.12.23.

Release notes

Sourced from fastapi-pagination's releases.

0.12.23

  • Add limit to CursorParams.size field. #1119
  • Strip extra lines before and after the _WARNING_MSG. #1117

Thanks to @​barsikus007 and @​frost-nzcr4!

Breaking changes:

CursorPage now has default upper limit for size query param (size should be <= 100).

If you want to remove this restriction and use old behavior, you can customize CursorPage:

from fastapi_pagination.cursor import CursorPage as BaseCursorPage
from fastapi_pagination.customization import UseParamsFields, CustomizedPage
CursorPage = CustomizedPage[
BaseCursorPage,
UseParamsFields(
size=Query(50, ge=0),
),
]

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
</tr></table> 

... (truncated)

Commits
  • 16969d0 Merge pull request #1126 from uriyyo/dependabot/pip/mkdocs-material-9.5.18
  • 542f6b0 Bump mkdocs-material from 9.5.17 to 9.5.18
  • 43ebc68 Merge pull request #1124 from uriyyo/dependabot/pip/ruff-0.3.7
  • 02153b5 Bump ruff from 0.3.6 to 0.3.7
  • ce7e223 Merge pull request #1123 from uriyyo/dependabot/pip/faker-24.9.0
  • f94c7ce Bump faker from 24.8.0 to 24.9.0
  • c65248b Merge pull request #1122 from uriyyo/dependabot/pip/ruff-0.3.6
  • b37d946 Bump ruff from 0.3.5 to 0.3.6
  • 257b23f Add limit to CursorParams.size field (#1119)
  • f7472e7 Strip extra lines before and after the _WARNING_MSG (#1117)
  • 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.23.
- [Release notes](https://github.com/uriyyo/fastapi-pagination/releases)
- [Commits](uriyyo/fastapi-pagination@0.11.2...0.12.23)

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

dependabot bot commented on behalf of github Apr 29, 2024

Superseded by #38.

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