Skip to content

Update peewee requirement from ~=3.18.1 to ~=4.0.0 in /application#391

Closed
dependabot[bot] wants to merge 2548 commits intomasterfrom
dependabot/pip/application/peewee-approx-eq-4.0.0
Closed

Update peewee requirement from ~=3.18.1 to ~=4.0.0 in /application#391
dependabot[bot] wants to merge 2548 commits intomasterfrom
dependabot/pip/application/peewee-approx-eq-4.0.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Feb 23, 2026

Updates the requirements on peewee to permit the latest version.

Release notes

Sourced from peewee's releases.

4.0.0

  • Adds preliminary support for asyncio via a new playhouse extension. See the documentation for details.
  • PostgresqlDatabase can use psycopg (psycopg3) if it is installed. If both psycopg2 and psycopg3 are installed, Peewee will prefer psycopg2, but this can be controlled by specifying prefer_psycopg3=True in the constructor. Same applies to PostgresqlExtDatabase.
  • Psycopg3Database class has been moved to playhouse.postgres_ext and is now just a thin wrapper around PostgresqlExtDatabase.
  • Postgres JSON operations no longer dump and try to do minimal casts, instead relying on the driver-provided Json() wrapper(s).
  • Adds new ISODateTimeField for Sqlite that encodes datetimes in ISO format (more friendly when db is shared with other tools), and also properly reads back UTC offset info.
  • Remove playhouse.sqlite_ext.ClosureTable implementation.
  • Add a Model.dirty_field_names attribute that is safe for membership testing, since testing x in dirty_fields returns True if one or more field exists due to operator overloads returning a truthy Expression object. Refs #3028.
  • Removal of Cython _sqlite_ext extension. The C implementations of the FTS rank functions are moved to sqlite_udf. Most of the remaining functionality is moved to playhouse.cysqlite_ext which supports it natively.

Migrating CSqliteExtDatabase usage:

You can either use sqlite_ext.SqliteExtDatabase or try the new cysqlite_ext.CySqliteDatabase if you want all the old functionality and are willing to try a new driver.

View commits

Changelog

Sourced from peewee's changelog.

4.0.0 (pending)

  • Adds preliminary support for asyncio via a new playhouse extension. See the documentation for details.
  • PostgresqlDatabase can use psycopg (psycopg3) if it is installed. If both psycopg2 and psycopg3 are installed, Peewee will prefer psycopg2, but this can be controlled by specifying prefer_psycopg3=True in the constructor. Same applies to PostgresqlExtDatabase.
  • Psycopg3Database class has been moved to playhouse.postgres_ext and is now just a thin wrapper around PostgresqlExtDatabase.
  • Postgres JSON operations no longer dump and try to do minimal casts, instead relying on the driver-provided Json() wrapper(s).
  • Adds new ISODateTimeField for Sqlite that encodes datetimes in ISO format (more friendly when db is shared with other tools), and also properly reads back UTC offset info.
  • Remove playhouse.sqlite_ext.ClosureTable implementation.
  • Add a Model.dirty_field_names attribute that is safe for membership testing, since testing x in dirty_fields returns True if one or more field exists due to operator overloads returning a truthy Expression object. Refs #3028.
  • Removal of Cython _sqlite_ext extension. The C implementations of the FTS rank functions are moved to sqlite_udf. Most of the remaining functionality is moved to playhouse.cysqlite_ext which supports it natively.

Migrating CSqliteExtDatabase usage:

You can either use sqlite_ext.SqliteExtDatabase or try the new cysqlite_ext.CySqliteDatabase if you want all the old functionality and are willing to try a new driver.

View commits

3.19.0

  • Move to new build system using pyproject and github actions.
  • No longer build and ship the Sqlite C extensions by default. Users who prefer to use those can install via the sdist pip install peewee --no-binary :all:.

Rationale about the Sqlite C extensions -- I've started shipping pysqlite3 as a statically-linked, self-contained binary wheel. This means that when using Peewee with the statically-linked pysqlite3, you can end up in a funny situation where the peewee Sqlite extensions are linked against the system libsqlite3, and the pysqlite driver has it's own Sqlite embedded, which does not work.

If you are using the system/standard-lib sqlite3 module then the extension works properly, because everything is talking to the same libsqlite3.

Similarly if you built pysqlite3 to link against the system libsqlite3

... (truncated)

Commits
  • 19e9b2b 4.0.0
  • 40be6e8 Use AsIs in sqlite_ext where appropriate.
  • 47770ac Clean up AsIs usage.
  • ead61e3 Prep 4.0 stuff
  • c808802 Clean up docs, new theme.
  • d19cac6 Clarify docs on asyncio implementation.
  • 03b9fdf Fix copy/paste typo
  • e184587 SqliteDatabase handles regexp now.
  • 18c8e24 Remove (very niche) sqlite closure-table extension.
  • a4683ec Clarify some notes in changelog, remove dumps= parameter.
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

dssecret and others added 30 commits November 4, 2025 13:17
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Bumps [ecto](https://github.com/elixir-ecto/ecto) from 3.13.4 to 3.13.5.
- [Release notes](https://github.com/elixir-ecto/ecto/releases)
- [Changelog](https://github.com/elixir-ecto/ecto/blob/master/CHANGELOG.md)
- [Commits](elixir-ecto/ecto@v3.13.4...v3.13.5)

---
updated-dependencies:
- dependency-name: ecto
  dependency-version: 3.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dssecret <webmaster@deek.sh>
Bumps [plug_cowboy](https://github.com/elixir-plug/plug_cowboy) from 2.7.4 to 2.7.5.
- [Changelog](https://github.com/elixir-plug/plug_cowboy/blob/master/CHANGELOG.md)
- [Commits](elixir-plug/plug_cowboy@v2.7.4...v2.7.5)

---
updated-dependencies:
- dependency-name: plug_cowboy
  dependency-version: 2.7.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
* Added initial notification

Signed-off-by: tiksan <webmaster@deek.sh>

* Fixed worker cron

Signed-off-by: tiksan <webmaster@deek.sh>

* Removed extraneous `IO.inspect/1` calls

Signed-off-by: tiksan <webmaster@deek.sh>

* Added missing handling of members who have never been in an OC

Signed-off-by: tiksan <webmaster@deek.sh>

---------

Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
dssecret and others added 19 commits February 7, 2026 12:49
Signed-off-by: tiksan <webmaster@deek.sh>
Bumps [oban_web](https://github.com/oban-bg/oban_web) from 2.11.7 to 2.11.8.
- [Release notes](https://github.com/oban-bg/oban_web/releases)
- [Changelog](https://github.com/oban-bg/oban_web/blob/main/CHANGELOG.md)
- [Commits](oban-bg/oban_web@v2.11.7...v2.11.8)

---
updated-dependencies:
- dependency-name: oban_web
  dependency-version: 2.11.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps [torngen_elixir_client](https://github.com/Tornium/torngen_elixir_client) from 5.2.0 to 5.2.3.
- [Commits](Tornium/torngen_elixir_client@v5.2.0...v5.2.3)

---
updated-dependencies:
- dependency-name: torngen_elixir_client
  dependency-version: 5.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: dssecret <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
…rom the `OCMissingMemberNotifications` worker

Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
…e Discord API calls

Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
…o send

Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
…ame changes

Signed-off-by: tiksan <webmaster@deek.sh>
…sages synchronously

Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Signed-off-by: tiksan <webmaster@deek.sh>
Updates the requirements on [peewee](https://github.com/coleifer/peewee) to permit the latest version.
- [Release notes](https://github.com/coleifer/peewee/releases)
- [Changelog](https://github.com/coleifer/peewee/blob/master/CHANGELOG.md)
- [Commits](coleifer/peewee@3.18.1...4.0.0)

---
updated-dependencies:
- dependency-name: peewee
  dependency-version: 4.0.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 23, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Feb 27, 2026

Dependabot encountered an unknown error. Because of this, Dependabot cannot update this pull request.

1 similar comment
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Mar 13, 2026

Dependabot encountered an unknown error. Because of this, Dependabot cannot update this pull request.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Apr 8, 2026

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot Bot deleted the dependabot/pip/application/peewee-approx-eq-4.0.0 branch April 8, 2026 14:51
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants