Adam Johnson
Adam Johnson
Builds on #424, which should be merged first. Add support for Django 5.0.
[virtualenv](https://virtualenv.pypa.io/en/latest/) drops an "ignore all" `.gitignore` file into any virtualenvs it creates: ``` $ cat .venv/.gitignore # created by virtualenv automatically * ``` This feature will probably be upstreamed in...
Update `Schema` class and subclasses for the [pydantic config changes](https://docs.pydantic.dev/2.5/migration/#changes-to-config) from its version 2. I stopped part way since I realized the changes affect the API. Do you think using...
Compared to diff3, zdiff3 minimizes the conflicted region, so fewer lines will show as conflicted. This normally makes merge conflicts easier to resolve. Docs: https://git-scm.com/docs/git-config#Documentation/git-config.txt-mergeconflictStyle . I also made `conflictStyle`...
ticket-28011 c5a77721e2fccff427374cd987a6d8b92a37f37c removed the only override of `ForeignObjectRel.is_hidden()`, leaving it duplicative of the `hidden` attribute. This PR removes the method, replacing all use with the attribute only.
ticket-28011
#### Trac ticket number ticket-28586 #### Branch description Add `QuerySet.fetch_mode()` to set the fetch mode, controlling how on-demand field loading occurs. Include three fetch modes, `FETCH_ONE` (default, existing behaviour), `FETCH_PEERS`,...