Skip to content

Commit

Permalink
Version/1.27.0 (#1037)
Browse files Browse the repository at this point in the history
* 1.27.0 Release

* remove changelog duplications
  • Loading branch information
adeelsohailahmed authored Oct 7, 2024
1 parent 4318aa9 commit fb32f59
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 5 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.26.0"
__version__ = "1.27.0"
__all__ = [
# ODM
"Document",
Expand Down
93 changes: 92 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,97 @@

Beanie project

## [1.27.0] - 2024-10-06
### Add tests on all major mongo version
- Author - [07pepa](https:/07pepa)
- PR <https:/BeanieODM/beanie/pull/1034>
### Fix return type from document update
- Author - [CAPITAINMARVEL](https:/CAPITAINMARVEL)
- PR <https:/BeanieODM/beanie/pull/1030>
### Fix expression type hint not allowing some type https:/beanieodm/beanie/issues/1020
- Author - [CAPITAINMARVEL](https:/CAPITAINMARVEL)
- PR <https:/BeanieODM/beanie/pull/1023>
### Fix type hint using pymongo client session instead of motor client session
- Author - [CAPITAINMARVEL](https:/CAPITAINMARVEL)
- PR <https:/BeanieODM/beanie/pull/1022>
### Fix logical operator typing #1000
- Author - [janas-adam](https:/janas-adam)
- PR <https:/BeanieODM/beanie/pull/1021>
### Use session in document insert
- Author - [andraghetti](https:/andraghetti)
- PR <https:/BeanieODM/beanie/pull/1018>
### Use sequence instead of list in init_beanie
- Author - [07pepa](https:/07pepa)
- PR <https:/BeanieODM/beanie/pull/1015>
### Replace deprecated datetime.utcnow with datetime.now
- Author - [adeelsohailahmed](https:/adeelsohailahmed)
- PR <https:/BeanieODM/beanie/pull/1014>
### Fix uniondoc type hint missing in init_beanie and on findinterface
- Author - [CAPITAINMARVEL](https:/CAPITAINMARVEL)
- PR <https:/BeanieODM/beanie/pull/1007>
### Add test to ensure dict with enum keys are encoded properly
- Author - [adeelsohailahmed](https:/adeelsohailahmed)
- PR <https:/BeanieODM/beanie/pull/1001>
### Project publishing instruction + changelog generation script
- Author - [roman-right](https:/roman-right)
- PR <https:/BeanieODM/beanie/pull/998>
### Revert project publishing gh action
- Author - [roman-right](https:/roman-right)
- PR <https:/BeanieODM/beanie/pull/996>
### Extend motor option to beanie
- Author - [Dudesons](https:/Dudesons)
- PR <https:/BeanieODM/beanie/pull/995>
### Fix regex storing
- Author - [07pepa](https:/07pepa)
- PR <https:/BeanieODM/beanie/pull/989>
### Remove links to ko-fi from the project
- Author - [roman-right](https:/roman-right)
- PR <https:/BeanieODM/beanie/pull/986>
### Fix typo in source code comment in inheritance.md
- Author - [fnogatz](https:/fnogatz)
- PR <https:/BeanieODM/beanie/pull/984>
### Fix gh action to grant permissions and use tags
- Author - [roman-right](https:/roman-right)
- PR <https:/BeanieODM/beanie/pull/972>
### Fix: example of find by id and link to finding-documents
- Author - [fredowashere](https:/fredowashere)
- PR <https:/BeanieODM/beanie/pull/970>
### Fix incorrect type serialization when dumping to python
- Author - [07pepa](https:/07pepa)
- PR <https:/BeanieODM/beanie/pull/968>
### Use ruff format instead of black
- Author - [roman-right](https:/roman-right)
- PR <https:/BeanieODM/beanie/pull/962>
### Gh action: set new version and publish on push
- Author - [roman-right](https:/roman-right)
- PR <https:/BeanieODM/beanie/pull/961>
### Feature / fix: allow settings to be inherited and extended (fixes #644)
- Author - [dotKokott](https:/dotKokott)
- PR <https:/BeanieODM/beanie/pull/960>
### Fix: issue #951
- Author - [IterableTrucks](https:/IterableTrucks)
- PR <https:/BeanieODM/beanie/pull/952>
### Allow unordered parameter on bulkwriter
- Author - [thiagosalvatore](https:/thiagosalvatore)
- PR <https:/BeanieODM/beanie/pull/948>
### Fix: set default value in findinterface._inheritance_inited to avoid …
- Author - [Robert-Nogueira](https:/Robert-Nogueira)
- PR <https:/BeanieODM/beanie/pull/935>
### Fix example in multi-model.md
- Author - [gianpaj](https:/gianpaj)
- PR <https:/BeanieODM/beanie/pull/932>
### Add missing type signature to `basefindcomparisonoperator` constructor
- Author - [aaronted009](https:/aaronted009)
- PR <https:/BeanieODM/beanie/pull/925>
### Removed calls to function causing deprecation warning where possible
- Author - [07pepa](https:/07pepa)
- PR <https:/BeanieODM/beanie/pull/917>
### Update migrations.md
- Author - [marwan-alloreview](https:/marwan-alloreview)
- PR <https:/BeanieODM/beanie/pull/915>

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

## [1.26.0] - 2024-05-01
### Feature: soft delete
Expand Down Expand Up @@ -1709,4 +1800,4 @@ how specific type should be presented in the database

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

[1.16.8]: https://pypi.org/project/beanie/1.16.8
[1.16.8]: https://pypi.org/project/beanie/1.16.8
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.26.0"
version = "1.27.0"
description = "Asynchronous Python ODM for MongoDB"
readme = "README.md"
requires-python = ">=3.7,<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.26.0",
new_version="1.27.0",
current_version="1.27.0",
new_version="1.28.0",
)

changelog = generator.generate_changelog()
Expand Down

0 comments on commit fb32f59

Please sign in to comment.