Skip to content

Commit

Permalink
Prepare version 5.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hynekcer committed May 22, 2024
1 parent aeb2bee commit 6675ba8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,15 @@ experimental.

[5.0.2] not released yet
------------------------
* Fix: Compile correctly: .filter(related_model__field__in=...)
* Change: Removed the old Python 3.7
* Add: Support for date and datetime lookup by year, quarter, month, day, week_day, hour
e.g. group this year by month:
.filter(date__year=2024).value('date__month').annotate(total=Sum('amount'))
* Add: The method .sf(minimal_aliases=True) is not necessary
for ContentDocumentLink .filter(...); #259
* Fix: Compile correctly: .filter(related_model__field__in=...) Fix #302
* Fix: Prepare tests for Salesforce API 61.0 Summer '24
* Add: Introspect fields of type Formula
* Add: Introspect Salesforce fields of type Formula to sf_formula="..." parameter


[5.0.1] 2024-03-04
Expand Down
3 changes: 2 additions & 1 deletion salesforce/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@
# Default version of Force.com API.
# It can be customized by settings.DATABASES['salesforce']['API_VERSION']
API_VERSION = '60.0' # Spring '24
# API_VERSION = '61.0' # Summer '24

from salesforce.dbapi.exceptions import ( # NOQA pylint:disable=unused-import,useless-import-alias,wrong-import-position
IntegrityError as IntegrityError, DatabaseError as DatabaseError, SalesforceError as SalesforceError,
)

__version__ = "5.0.1"
__version__ = "5.0.2"

log = logging.getLogger(__name__)

0 comments on commit 6675ba8

Please sign in to comment.