-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Comparing changes
Open a pull request
base repository: coleifer/peewee
base: 3.17.1
head repository: coleifer/peewee
compare: 3.17.2
- 17 commits
- 22 files changed
- 2 contributors
Commits on Feb 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4d177b7 - Browse repository at this point
Copy the full SHA 4d177b7View commit details
Commits on Mar 14, 2024
-
Add docs clarifying compatibility with MariaDB
Peewee is compatible with MariaDB Server. Add clarifying notes in the documentation, including logo, etc. Testing ``` docker run -d -p 3306:3306 --name mariadb_container -e MYSQL_ROOT_PASSWORD=password mariadb ``` ``` >>> from peewee import MySQLDatabase >>> database = MySQLDatabase('information_schema', user='root', password='password', host='127.0.0.1', port=3306) >>> database.connect() True >>> version_query = database.execute_sql('SELECT VERSION()') >>> print(version_query.fetchone()[0]) 11.3.2-MariaDB-1:11.3.2+maria~ubu2204 >>> database.close() True ```
Configuration menu - View commit details
-
Copy full SHA for 0b978aa - Browse repository at this point
Copy the full SHA 0b978aaView commit details
Commits on Mar 15, 2024
-
Merge pull request #2858 from robinnewhouse/mariadb-compatibility-docs
Add docs clarifying compatibility with MariaDB
Configuration menu - View commit details
-
Copy full SHA for f8b225c - Browse repository at this point
Copy the full SHA f8b225cView commit details
Commits on Mar 21, 2024
-
Initial support for sqlite jsonb (requires 3.45.0 or newer).
Warning: this set of functions requires a good deal of care to use correctly.
Configuration menu - View commit details
-
Copy full SHA for adad27b - Browse repository at this point
Copy the full SHA adad27bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 65fd91f - Browse repository at this point
Copy the full SHA 65fd91fView commit details
Commits on Mar 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bca9198 - Browse repository at this point
Copy the full SHA bca9198View commit details
Commits on Apr 9, 2024
-
Pull in postgres-specific helpers for psycopg3.
Also run postgres-specific tests against the psycopg3 driver.
Configuration menu - View commit details
-
Copy full SHA for 827b69b - Browse repository at this point
Copy the full SHA 827b69bView commit details -
Exclude psycopg3 tests when not installed.
Also ensure present for CI.
Configuration menu - View commit details
-
Copy full SHA for d618cfd - Browse repository at this point
Copy the full SHA d618cfdView commit details -
Improvements to allow full testing w/psycopg3.
Also fixes some instances where parameterization of values is not supported. A surprising one was IS/IS NOT NULL where "NULL" is not allowed to be parameterized (None converts to NULL with psycopg2). We'll just explicitly specify the sql literal NULL for these comparisons. This change affects the other implementations as well.
Configuration menu - View commit details
-
Copy full SHA for 652917c - Browse repository at this point
Copy the full SHA 652917cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c1a9c6 - Browse repository at this point
Copy the full SHA 4c1a9c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c81533 - Browse repository at this point
Copy the full SHA 0c81533View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e25328 - Browse repository at this point
Copy the full SHA 0e25328View commit details -
Configuration menu - View commit details
-
Copy full SHA for e896704 - Browse repository at this point
Copy the full SHA e896704View commit details -
Configuration menu - View commit details
-
Copy full SHA for 717e2fb - Browse repository at this point
Copy the full SHA 717e2fbView commit details
Commits on Apr 12, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 4451b97 - Browse repository at this point
Copy the full SHA 4451b97View commit details
Commits on Apr 16, 2024
-
Avoid unnecessary queries when coercing query to list.
Python's list() function may trigger len() multiple times, in addition to iter(). Adding a bool override avoids these extraneous len calls. Fixes #2871
Configuration menu - View commit details
-
Copy full SHA for 148f1b7 - Browse repository at this point
Copy the full SHA 148f1b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0404ee - Browse repository at this point
Copy the full SHA b0404eeView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 3.17.1...3.17.2