1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00

Fixed #36646 -- Added compatibility for oracledb 3.4.0.

The Database.Binary, Date, and Timestamp attributes were changed from
aliases to bytes, datetime.date, and datetime.datetime to factory
functions in oracle/python-oracledb@869a887819
which made their usage inadequate for isinstance checks.

Thanks John Wagenleitner for the report and Natalia for the triage.

Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
This commit is contained in:
Simon Charette
2025-10-08 18:20:57 +02:00
committed by Mariusz Felisiak
parent 1167cd1d63
commit 315dbe675d
4 changed files with 5 additions and 6 deletions

View File

@@ -9,5 +9,4 @@ Django 5.2.8 fixes several bugs in 5.2.7.
Bugfixes
========
* ...
* Added compatibility for ``oracledb`` 3.4.0 (:ticket:`36646`).