Skip to content

Commit

Permalink
Version/1.28.0 (#1077)
Browse files Browse the repository at this point in the history
  • Loading branch information
adeelsohailahmed authored Dec 8, 2024
1 parent 75db4a4 commit 0773aed
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 4 deletions.
2 changes: 1 addition & 1 deletion beanie/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
from beanie.odm.utils.init import init_beanie
from beanie.odm.views import View

__version__ = "1.27.0"
__version__ = "1.28.0"
__all__ = [
# ODM
"Document",
Expand Down
37 changes: 37 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,43 @@

Beanie project

## [1.28.0] - 2024-12-05
### Fix kwargs/args untyped
- Author - [CAPITAINMARVEL](https://github.com/CAPITAINMARVEL)
- PR <https://github.com/BeanieODM/beanie/pull/1049>
### Update pre-commit
- Author - [07pepa](https://github.com/07pepa)
- PR <https://github.com/BeanieODM/beanie/pull/1046>
### Drop support for python 3.7
- Author - [07pepa](https://github.com/07pepa)
- PR <https://github.com/BeanieODM/beanie/pull/1044>
### Add missing type hint to `find_many_in_all` method
- Author - [vasuman](https://github.com/vasuman)
- PR <https://github.com/BeanieODM/beanie/pull/1068>
### Add documentdb compatibility to fetch_links
- Author - [whitfin](https://github.com/whitfin)
- PR <https://github.com/BeanieODM/beanie/pull/1042>
### Fix issues caused by #1044
- Author - [07pepa](https://github.com/07pepa)
- PR <https://github.com/BeanieODM/beanie/pull/1053>
### Feat(skip_index): possibility added to skip index actions
- Author - [jorma16](https://github.com/jorma16)
- PR <https://github.com/BeanieODM/beanie/pull/942>
### Fix pydanticobjectid fields being parsed into str
- Author - [07pepa](https://github.com/07pepa)
- PR <https://github.com/BeanieODM/beanie/pull/1060>
### Modify tests to not raise deprecation warnings
- Author - [07pepa](https://github.com/07pepa)
- PR <https://github.com/BeanieODM/beanie/pull/1047>
### Add python 3.13 and jit into testing
- Author - [07pepa](https://github.com/07pepa)
- PR <https://github.com/BeanieODM/beanie/pull/1051>
### Handle limit and session in .count() method
- Author - [CAPITAINMARVEL](https://github.com/CAPITAINMARVEL)
- PR <https://github.com/BeanieODM/beanie/pull/1040>

[1.28.0]: https://pypi.org/project/beanie/1.28.0

## [1.27.0] - 2024-10-06
### Add tests on all major mongo version
- Author - [07pepa](https://github.com/07pepa)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi"

[project]
name = "beanie"
version = "1.27.0"
version = "1.28.0"
description = "Asynchronous Python ODM for MongoDB"
readme = "README.md"
requires-python = ">=3.8,<4.0"
Expand Down
4 changes: 2 additions & 2 deletions scripts/generate_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ def generate_changelog(self) -> str:
generator = ChangelogGenerator(
username="BeanieODM",
repository="beanie",
current_version="1.27.0",
new_version="1.28.0",
current_version="1.28.0",
new_version="1.29.0",
)

changelog = generator.generate_changelog()
Expand Down

0 comments on commit 0773aed

Please sign in to comment.