Skip to content

Commit

Permalink
release: v6.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ntarocco committed Oct 1, 2024
1 parent 844365f commit e297181
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
Changes
=======

Version v6.3.1 (released 2024-10-01)

- uow: moved Unit of Work pattern and non-record Operations to invenio-db.
Added backwards compatible imports.

Version v6.3.0 (released 2024-08-08)

- files: sync file access status
Expand Down
2 changes: 1 addition & 1 deletion invenio_records_resources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

from .ext import InvenioRecordsResources

__version__ = "6.3.0"
__version__ = "6.3.1"

__all__ = ("__version__", "InvenioRecordsResources")
2 changes: 1 addition & 1 deletion invenio_records_resources/services/uow.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Note, this is NOT a clean implementation of the UoW design pattern. The
main purpose of the Unit of Work in Invenio is to coordinate when the database
transaction commit is called, and ensure tasks that have to run after the
transcation are executed (such as indexing and running celery tasks).
transaction are executed (such as indexing and running celery tasks).
This ensures that we can group multiple service calls into a single database
transaction and perform the necessary indexing/task execution afterwards.
Expand Down

0 comments on commit e297181

Please sign in to comment.