Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge master from og repo into our own version #4

Open
wants to merge 421 commits into
base: master
Choose a base branch
from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Dec 6, 2021

  1. Configuration menu
    Copy the full SHA
    df4a4d2 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2021

  1. Merge pull request #775 from hramezani/fix_python310

    Change Python 3.10 in Github action test ci matrix.
    rtpg authored Dec 7, 2021
    Configuration menu
    Copy the full SHA
    4216d0f View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2021

  1. Merge pull request #774 from hramezani/remove_unused_code

    Remove unused code for Django < 2.0
    rtpg authored Dec 9, 2021
    Configuration menu
    Copy the full SHA
    4042b85 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cbfaaa2 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2021

  1. Fix Django 4 compatibility issues (#778)

    * add django 4.0 to tox envs
    
    * make `get_extra_restriction` work across django versions
    
     - add a shim around `get_extra_restriction` so that it works in
       versions of Django >=4 and <4
     - fixes #776
    
    * update changelog & pypi classifiers
    
    * fix typo in version check
    monty5811 authored Dec 16, 2021
    Configuration menu
    Copy the full SHA
    d083396 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2021

  1. Drop Django 3.1 support.

    hramezani committed Dec 21, 2021
    Configuration menu
    Copy the full SHA
    2eff7ed View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6ffa01c View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2021

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/pre-commit/pre-commit-hooks: v4.0.1 → v4.1.0](pre-commit/pre-commit-hooks@v4.0.1...v4.1.0)
    pre-commit-ci[bot] authored and auvipy committed Dec 28, 2021
    Configuration menu
    Copy the full SHA
    34b11b2 View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2021

  1. improved code-blocks

    Myzel394 authored and auvipy committed Dec 30, 2021
    Configuration menu
    Copy the full SHA
    5556944 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2022

  1. Fixed #784 -- Added migrations autodetected by Django 4.0 (#785)

    * Fixed #784 -- Added migrations autodetected by Django 4.0
    
    * [pre-commit.ci] auto fixes from pre-commit.com hooks
    
    for more information, see https://pre-commit.ci
    
    * Fixed import sorting
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    bmispelon and pre-commit-ci[bot] authored Jan 7, 2022
    Configuration menu
    Copy the full SHA
    9d9ca4b View commit details
    Browse the repository at this point in the history

Commits on Jan 24, 2022

  1. Configuration menu
    Copy the full SHA
    da00c5d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    148076e View commit details
    Browse the repository at this point in the history
  3. Merge pull request #787 from jazzband/test-documentation

    Prepare Django Taggit 2.1.0 Release
    rtpg authored Jan 24, 2022
    Configuration menu
    Copy the full SHA
    5f3d0df View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2022

  1. Set transform=repr on assertQuerysetEqual

    The old behaviour of assertQuerysetEqual automatically calling repr is deprecated in Django 3.2 https://docs.djangoproject.com/en/4.0/releases/3.2/#id3 and dropped in Django 4.1.
    gasman committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    3f439f1 View commit details
    Browse the repository at this point in the history
  2. Provide path_infos and reverse_path_infos properties on TaggableManager

    As of django/django@a697424 there are two new cached properties path_infos and reverse_path_infos which Django will use in preference to the get_path_info() and get_reverse_path_info() methods when not passing a filtered_relation argument. TaggableManager is patching these methods, and therefore it now needs to provide these cached properties to match Django's expectations.
    gasman committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    a6aa703 View commit details
    Browse the repository at this point in the history
  3. Make use of cached properties path_infos and reverse_path_infos

    These are introduced in django/django@a697424 to be used in preference to get_path_info / reverse_path_info when not passing filtered_relation.
    gasman committed Feb 22, 2022
    Configuration menu
    Copy the full SHA
    c1954ac View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2022

  1. Merge pull request #791 from gasman/fix/assertquerysetequal

    Set transform=repr on assertQuerysetEqual (Dj4.1 compatibility)
    rtpg authored Feb 23, 2022
    Configuration menu
    Copy the full SHA
    f860b5c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #792 from gasman/fix/cached-pathinfo

    Handle path_infos / reverse_path_infos cached properties (Dj4.1 compatibility)
    rtpg authored Feb 23, 2022
    Configuration menu
    Copy the full SHA
    354c035 View commit details
    Browse the repository at this point in the history

Commits on Apr 7, 2022

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/psf/black: 21.12b0 → 22.3.0](psf/black@21.12b0...22.3.0)
    pre-commit-ci[bot] authored and hramezani committed Apr 7, 2022
    Configuration menu
    Copy the full SHA
    84c34f7 View commit details
    Browse the repository at this point in the history
  2. Docs: replace deprecated/removed `django.utils.translation.ugettext_l…

    …azy`
    
    `django.utils.translation.ugettext_lazy` was deprecated in Django 3.0 and removed in Django 4.0 in favor of `django.utils.translation.gettext_lazy`.
    Abbe98 authored and hramezani committed Apr 7, 2022
    Configuration menu
    Copy the full SHA
    a76ecca View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2022

  1. Drop Django 2.2 support.

    hramezani committed Apr 8, 2022
    Configuration menu
    Copy the full SHA
    9dbba05 View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2022

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/pre-commit/pre-commit-hooks: v4.1.0 → v4.2.0](pre-commit/pre-commit-hooks@v4.1.0...v4.2.0)
    pre-commit-ci[bot] authored Apr 11, 2022
    Configuration menu
    Copy the full SHA
    c06565f View commit details
    Browse the repository at this point in the history

Commits on Apr 12, 2022

  1. Merge pull request #795 from hramezani/drop_django22

    Drop Django 2.2 support.
    rtpg authored Apr 12, 2022
    Configuration menu
    Copy the full SHA
    83fe619 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2022

  1. Merge pull request #796 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored Apr 21, 2022
    Configuration menu
    Copy the full SHA
    5dfc48d View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2022

  1. Preserve unicode when slugifying by default

     This change is motivated by the many many people using non-latin
    languages who experience the (rather baffling) behavior of outright
    stripping characters when generating slugs from stuff that doesn't
    fit into ASCII.
    
     We went through loads of pain as a programming community to get to
    nicely supporting unicode everywhere, it's time to take advantage of
    that fact and just let people have stuff appear in their native
    language as much as possible.
    rtpg committed Apr 25, 2022
    Configuration menu
    Copy the full SHA
    ddb5ce6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #797 from jazzband/unicode-slugify

    Preserve unicode when slugifying by default
    rtpg authored Apr 25, 2022
    Configuration menu
    Copy the full SHA
    191d727 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2022

  1. Configuration menu
    Copy the full SHA
    43b10e8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #801 from jazzband/prepare-3-0-0

    Prepare the release of Version 3.0.0
    rtpg authored May 2, 2022
    Configuration menu
    Copy the full SHA
    558d6b8 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2022

  1. Configuration menu
    Copy the full SHA
    3a5163a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3fb02e8 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2022

  1. Improve readability

    hartungstenio committed May 4, 2022
    Configuration menu
    Copy the full SHA
    e10b6a0 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2022

  1. Add changelog entry

    rtpg committed May 11, 2022
    Configuration menu
    Copy the full SHA
    0327d57 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #802 from hartungstenio/clear-cache

    Clear prefetch cache on tag updates
    rtpg authored May 11, 2022
    Configuration menu
    Copy the full SHA
    79e342c View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2022

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/pre-commit/pre-commit-hooks: v4.2.0 → v4.3.0](pre-commit/pre-commit-hooks@v4.2.0...v4.3.0)
    - [github.com/psf/black: 22.3.0 → 22.6.0](psf/black@22.3.0...22.6.0)
    pre-commit-ci[bot] authored Jul 4, 2022
    Configuration menu
    Copy the full SHA
    350e140 View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2022

  1. Merge pull request #808 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored Jul 6, 2022
    Configuration menu
    Copy the full SHA
    2727ef3 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2022

  1. docs: Fix a few typos

    There are small typos in:
    - docs/faq.rst
    - taggit/managers.py
    - tests/tests.py
    
    Fixes:
    - Should read `stored` rather than `storred`.
    - Should read `intermediary` rather than `intermeidary`.
    - Should read `function` rather than `funtion`.
    
    Signed-off-by: Tim Gates <[email protected]>
    timgates42 committed Jul 22, 2022
    Configuration menu
    Copy the full SHA
    b45b9c2 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. Merge pull request #812 from timgates42/bugfix_typos

    docs: Fix a few typos
    rtpg authored Jul 26, 2022
    Configuration menu
    Copy the full SHA
    eb66e66 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2022

  1. Configuration menu
    Copy the full SHA
    54b74f8 View commit details
    Browse the repository at this point in the history
  2. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/PyCQA/flake8: 4.0.1 → 5.0.4](PyCQA/flake8@4.0.1...5.0.4)
    pre-commit-ci[bot] authored Aug 8, 2022
    Configuration menu
    Copy the full SHA
    f3ce4d8 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2022

  1. Merge pull request #813 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored Aug 9, 2022
    Configuration menu
    Copy the full SHA
    4765cd3 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #814 from sasha0/feature/docs-unicode

    Do not display outdated unicode strings in the documentation.
    rtpg authored Aug 9, 2022
    Configuration menu
    Copy the full SHA
    72c2111 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c707e14 View commit details
    Browse the repository at this point in the history

Commits on Sep 8, 2022

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/psf/black: 22.6.0 → 22.8.0](psf/black@22.6.0...22.8.0)
    pre-commit-ci[bot] authored and hramezani committed Sep 8, 2022
    Configuration menu
    Copy the full SHA
    87ad7ef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a87656f View commit details
    Browse the repository at this point in the history

Commits on Sep 16, 2022

  1. Fix typo

    Xdynix authored Sep 16, 2022
    Configuration menu
    Copy the full SHA
    85884df View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2022

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/psf/black: 22.8.0 → 22.10.0](psf/black@22.8.0...22.10.0)
    pre-commit-ci[bot] authored Oct 10, 2022
    Configuration menu
    Copy the full SHA
    0287694 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2022

  1. Merge pull request #822 from Xdynix/patch-1

    Fix typo
    rtpg authored Oct 21, 2022
    Configuration menu
    Copy the full SHA
    58de321 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #823 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored Oct 21, 2022
    Configuration menu
    Copy the full SHA
    ebf441e View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2022

  1. Configuration menu
    Copy the full SHA
    8564bf4 View commit details
    Browse the repository at this point in the history
  2. update CHANGELOG

    joshuadavidthomas committed Oct 28, 2022
    Configuration menu
    Copy the full SHA
    463954b View commit details
    Browse the repository at this point in the history
  3. Add Django 4.1 support.

    hramezani committed Oct 28, 2022
    Configuration menu
    Copy the full SHA
    b05f648 View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2022

  1. Configuration menu
    Copy the full SHA
    8255781 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #829 from joshuadavidthomas/py311

    Add Python 3.11 to CI, tox, and trove classifiers
    rtpg authored Oct 31, 2022
    Configuration menu
    Copy the full SHA
    b24dfc4 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2022

  1. Configuration menu
    Copy the full SHA
    bdf7236 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2022

  1. Make TagListSerializerField subclass ListField

     This is a tricky change, I tried to confirm that behavior changes
     aren't occuring with this, but really we might end up finding issues
     when the rubber hits the road.
    rtpg committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    ef421fe View commit details
    Browse the repository at this point in the history
  2. Add details about Python/Django support

     This should make it clearer if an upgrade is needed or not.
    rtpg committed Nov 14, 2022
    Configuration menu
    Copy the full SHA
    54cb1cc View commit details
    Browse the repository at this point in the history
  3. Merge pull request #833 from jazzband/to-list-field

    Make TagListSerializerField subclass ListField
    rtpg authored Nov 14, 2022
    Configuration menu
    Copy the full SHA
    0ed92a5 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2022

  1. Prepare 3.1.0 release

     This also updates some of the contributing docs
    rtpg committed Nov 18, 2022
    Configuration menu
    Copy the full SHA
    d416c3a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #834 from jazzband/prepare-3-1-0

    Prepare 3.1.0 release
    rtpg authored Nov 18, 2022
    Configuration menu
    Copy the full SHA
    12f1744 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #816 from hramezani/pre-commit

    Add pyupgrade and django-upgrade pre-commmit hook
    rtpg authored Nov 18, 2022
    Configuration menu
    Copy the full SHA
    f8ff51b View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2022

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/asottile/pyupgrade: v2.37.3 → v3.2.2](asottile/pyupgrade@v2.37.3...v3.2.2)
    - [github.com/adamchainz/django-upgrade: 1.7.0 → 1.12.0](adamchainz/django-upgrade@1.7.0...1.12.0)
    pre-commit-ci[bot] authored Nov 21, 2022
    Configuration menu
    Copy the full SHA
    64bda95 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9b48bd9 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #836 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored Nov 21, 2022
    Configuration menu
    Copy the full SHA
    8dc5ab0 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2023

  1. Fix faq.rst indentation

    hashlash authored May 1, 2023
    Configuration menu
    Copy the full SHA
    786f0b6 View commit details
    Browse the repository at this point in the history

Commits on May 4, 2023

  1. Remove Python 3.6 support

    rtpg committed May 4, 2023
    Configuration menu
    Copy the full SHA
    1fd40e9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9052b23 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3b1be72 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50494e6 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    fa68cdc View commit details
    Browse the repository at this point in the history
  6. Implement get_joining_fields() and get_reverse_joining_fields()

    to support Django 5.0 (unreleased).
    
    The _columns() versions are still retained for compatibility across Django
    versions.
    
    Ref: django/django@8b1ff0d
    rtpg committed May 4, 2023
    Configuration menu
    Copy the full SHA
    9e863a8 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2517448 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3bd824d View commit details
    Browse the repository at this point in the history
  9. Merge pull request #854 from jazzband/django-50

    Update Django Support
    rtpg authored May 4, 2023
    Configuration menu
    Copy the full SHA
    b60cffa View commit details
    Browse the repository at this point in the history
  10. Merge pull request #853 from hashlash/patch-1

    Fix faq.rst indentation
    rtpg authored May 4, 2023
    Configuration menu
    Copy the full SHA
    e5d6736 View commit details
    Browse the repository at this point in the history
  11. Prepare Release 4.0.0

    rtpg committed May 4, 2023
    Configuration menu
    Copy the full SHA
    5d56122 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #855 from jazzband/django-50

    Prepare Release 4.0.0
    rtpg authored May 4, 2023
    Configuration menu
    Copy the full SHA
    63c9a97 View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2023

  1. Configuration menu
    Copy the full SHA
    649c7fb View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2023

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/pre-commit/pre-commit-hooks: v4.3.0 → v4.4.0](pre-commit/pre-commit-hooks@v4.3.0...v4.4.0)
    - [github.com/psf/black: 22.10.0 → 23.7.0](psf/black@22.10.0...23.7.0)
    - [github.com/PyCQA/flake8: 5.0.4 → 6.0.0](PyCQA/flake8@5.0.4...6.0.0)
    - [github.com/asottile/pyupgrade: v3.2.2 → v3.9.0](asottile/pyupgrade@v3.2.2...v3.9.0)
    - [github.com/adamchainz/django-upgrade: 1.12.0 → 1.14.0](adamchainz/django-upgrade@1.12.0...1.14.0)
    pre-commit-ci[bot] authored Jul 17, 2023
    Configuration menu
    Copy the full SHA
    8fa2a2f View commit details
    Browse the repository at this point in the history

Commits on Jul 24, 2023

  1. Merge pull request #860 from dennisv/issue-859

    Fix `tag_kwargs` and case insensitive discrepancy
    rtpg authored Jul 24, 2023
    Configuration menu
    Copy the full SHA
    81ddd40 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #838 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored Jul 24, 2023
    Configuration menu
    Copy the full SHA
    c36bed6 View commit details
    Browse the repository at this point in the history
  3. Add migration files for tests

    rtpg committed Jul 24, 2023
    Configuration menu
    Copy the full SHA
    16db42e View commit details
    Browse the repository at this point in the history
  4. Merge pull request #863 from jazzband/django-upgrade

    Add migration files for tests
    rtpg authored Jul 24, 2023
    Configuration menu
    Copy the full SHA
    32939cd View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2023

  1. Change unique_together declaration to a unique constraint

     This is a database no-op
    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    2e9a592 View commit details
    Browse the repository at this point in the history
  2. rename the index

    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    bbda50f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    40543ac View commit details
    Browse the repository at this point in the history
  4. specify timezone

    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    21e73f7 View commit details
    Browse the repository at this point in the history
  5. use div rendering for test forms

     This shouldn't affect anything outside of tests
    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    7ff7c86 View commit details
    Browse the repository at this point in the history
  6. queryset equal rename

    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    822f1c8 View commit details
    Browse the repository at this point in the history
  7. Revert "use div rendering for test forms"

    This reverts commit 7ff7c86.
    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    41ad0a3 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    2f65f97 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    467792f View commit details
    Browse the repository at this point in the history
  10. remove python 3.7 support

    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    b347c01 View commit details
    Browse the repository at this point in the history
  11. enable warnings in tests

    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    6add0a1 View commit details
    Browse the repository at this point in the history
  12. Remove Django 3.2 support

    rtpg committed Sep 20, 2023
    Configuration menu
    Copy the full SHA
    da33f5a View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    6e75ec4 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    60064a7 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2023

  1. Merge pull request #869 from jazzband/django-upgrade

    Django 4.2 preparation
    rtpg authored Oct 24, 2023
    Configuration menu
    Copy the full SHA
    7feee51 View commit details
    Browse the repository at this point in the history
  2. remove stale version checks

    rtpg committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    e10c762 View commit details
    Browse the repository at this point in the history
  3. Prepare Taggit 5.0.0

    rtpg committed Oct 24, 2023
    Configuration menu
    Copy the full SHA
    fa7e698 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #873 from jazzband/prepare-5-0-0

    Prepare Django Taggit Release 5.0.0
    rtpg authored Oct 24, 2023
    Configuration menu
    Copy the full SHA
    ee1e98c View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Configuration menu
    Copy the full SHA
    ccd0823 View commit details
    Browse the repository at this point in the history
  2. Prepare release 5.0.1

    rtpg committed Oct 26, 2023
    Configuration menu
    Copy the full SHA
    b5ded0d View commit details
    Browse the repository at this point in the history
  3. Merge pull request #877 from jazzband/prepare-5-0-1

    Prepare v5.0.1
    rtpg authored Oct 26, 2023
    Configuration menu
    Copy the full SHA
    1b241a3 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5425d20 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a6271f4 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ed7b5b4 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f18f166 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    d04dcc3 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    e2cffd8 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #879 from jazzband/fix-readthedocs

    Add a readthedocs configuration file
    rtpg authored Oct 26, 2023
    Configuration menu
    Copy the full SHA
    9aaac8f View commit details
    Browse the repository at this point in the history

Commits on Dec 6, 2023

  1. Configuration menu
    Copy the full SHA
    9157a89 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2024

  1. Configuration menu
    Copy the full SHA
    5dded2c View commit details
    Browse the repository at this point in the history

Commits on Jan 30, 2024

  1. Update Chinese translation

    zengqiu committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    febc4cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    75e8f10 View commit details
    Browse the repository at this point in the history
  3. Remove fuzzy

    zengqiu committed Jan 30, 2024
    Configuration menu
    Copy the full SHA
    c0a028c View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. Merge pull request #886 from zengqiu/master

    Update Chinese translation
    rtpg authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    675e805 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.6.0](pre-commit/pre-commit-hooks@v4.4.0...v4.6.0)
    - [github.com/psf/black: 23.7.0 → 24.4.2](psf/black@23.7.0...24.4.2)
    - [github.com/PyCQA/flake8: 6.0.0 → 7.0.0](PyCQA/flake8@6.0.0...7.0.0)
    - [github.com/asottile/pyupgrade: v3.9.0 → v3.15.2](asottile/pyupgrade@v3.9.0...v3.15.2)
    - [github.com/adamchainz/django-upgrade: 1.14.0 → 1.17.0](adamchainz/django-upgrade@1.14.0...1.17.0)
    pre-commit-ci[bot] authored May 13, 2024
    Configuration menu
    Copy the full SHA
    70539fa View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bdfa254 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Merge pull request #866 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored May 29, 2024
    Configuration menu
    Copy the full SHA
    203ee30 View commit details
    Browse the repository at this point in the history

Commits on Jun 2, 2024

  1. add TestTaggableManager

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    f5ba4b5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d96a216 View commit details
    Browse the repository at this point in the history
  3. ensure tag order is preserved

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    e0c8858 View commit details
    Browse the repository at this point in the history
  4. [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci
    pre-commit-ci[bot] authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    0595a42 View commit details
    Browse the repository at this point in the history
  5. missing arg

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    5820930 View commit details
    Browse the repository at this point in the history
  6. clean up tests

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    122112b View commit details
    Browse the repository at this point in the history
  7. fix conditional on ordering arg

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    9697a97 View commit details
    Browse the repository at this point in the history
  8. make test more explicit

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    897ed6a View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    cb7d00c View commit details
    Browse the repository at this point in the history
  10. fix processing logic

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    0a8378b View commit details
    Browse the repository at this point in the history
  11. fixed duplicates issue

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    b297551 View commit details
    Browse the repository at this point in the history
  12. [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci
    pre-commit-ci[bot] authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    311c1e4 View commit details
    Browse the repository at this point in the history
  13. fix most_common test

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    82922eb View commit details
    Browse the repository at this point in the history
  14. a more elegant solution of imposing through table ordering only if fi…

    …ltering on a model instance
    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    8bfa7ed View commit details
    Browse the repository at this point in the history
  15. unused import

    steverecio authored and rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    acff592 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    b23715b View commit details
    Browse the repository at this point in the history
  17. Add changelog entry

    rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    e203e07 View commit details
    Browse the repository at this point in the history
  18. Add note to tricky code

    rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    5ba5934 View commit details
    Browse the repository at this point in the history
  19. fix style issues

    rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    855def6 View commit details
    Browse the repository at this point in the history
  20. ignore .direnv for flake8

    rtpg committed Jun 2, 2024
    Configuration menu
    Copy the full SHA
    15d83bc View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. Add Steve to the AUTHORS

    rtpg committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    1e70249 View commit details
    Browse the repository at this point in the history
  2. remove continue usage

    rtpg committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    e4baf49 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Merge pull request #892 from jazzband/tag-ordering

    Default tag ordering to the primary key
    rtpg authored Jun 19, 2024
    Configuration menu
    Copy the full SHA
    5cdfef7 View commit details
    Browse the repository at this point in the history
  2. Updating test suite with py312

    utilized the django python compatibility chart located here: https://docs.djangoproject.com/en/5.0/faq/install/
    guel-codes committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    10811e8 View commit details
    Browse the repository at this point in the history
  3. updating CHANGELOG

    guel-codes committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    b565d42 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9dae874 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    67bdd55 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    8f785ad View commit details
    Browse the repository at this point in the history
  7. Merge branch '895-update-python-support' of github.com:guel-codes/dja…

    …ngo-taggit into 895-update-python-support
    guel-codes committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    7fddf76 View commit details
    Browse the repository at this point in the history

Commits on Jun 20, 2024

  1. Configuration menu
    Copy the full SHA
    5c41824 View commit details
    Browse the repository at this point in the history
  2. 894 - Add dj50 to envlist

    Trafire committed Jun 20, 2024
    Configuration menu
    Copy the full SHA
    8c16c2c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    327e4d1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5aa078a View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2024

  1. Remove premature version header

    rtpg authored Jun 23, 2024
    Configuration menu
    Copy the full SHA
    f7493ac View commit details
    Browse the repository at this point in the history
  2. Merge pull request #898 from Trafire/894-django5_support

    894 - Add django 5.0 Support
    rtpg authored Jun 23, 2024
    Configuration menu
    Copy the full SHA
    b9a9c97 View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2024

  1. Configuration menu
    Copy the full SHA
    6b5339a View commit details
    Browse the repository at this point in the history
  2. Merge pull request #896 from guel-codes/895-update-python-support

    Updating Test suite with py312
    rtpg authored Jun 24, 2024
    Configuration menu
    Copy the full SHA
    ba03108 View commit details
    Browse the repository at this point in the history
  3. Set up a sample project

    rtpg committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    3961dc6 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    df934d1 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    08eb191 View commit details
    Browse the repository at this point in the history
  6. remove spurious file

    rtpg committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    2ecc9c7 View commit details
    Browse the repository at this point in the history
  7. isort imports

    rtpg committed Jun 24, 2024
    Configuration menu
    Copy the full SHA
    32c87d1 View commit details
    Browse the repository at this point in the history

Commits on Jun 26, 2024

  1. Merge pull request #901 from jazzband/sample-project

    Add A Sample Project
    rtpg authored Jun 26, 2024
    Configuration menu
    Copy the full SHA
    9fe72a9 View commit details
    Browse the repository at this point in the history

Commits on Jul 1, 2024

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/PyCQA/flake8: 7.0.0 → 7.1.0](PyCQA/flake8@7.0.0...7.1.0)
    - [github.com/asottile/pyupgrade: v3.15.2 → v3.16.0](asottile/pyupgrade@v3.15.2...v3.16.0)
    - [github.com/adamchainz/django-upgrade: 1.17.0 → 1.19.0](adamchainz/django-upgrade@1.17.0...1.19.0)
    pre-commit-ci[bot] authored Jul 1, 2024
    Configuration menu
    Copy the full SHA
    af77d0d View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. Merge pull request #893 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored Jul 4, 2024
    Configuration menu
    Copy the full SHA
    1c1e81e View commit details
    Browse the repository at this point in the history

Commits on Jul 6, 2024

  1. Saving progress

    guel-codes committed Jul 6, 2024
    Configuration menu
    Copy the full SHA
    24e2d68 View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2024

  1. Tag merging functionality is done

    - Selected tag ids are appended to url query parameter
    - tag ids are store in the session temporaily
    - tags are merged into new tag name
    - session is cleared of the tag IDs
    guel-codes committed Jul 14, 2024
    Configuration menu
    Copy the full SHA
    0df866d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f7a3741 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    49e99ad View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    8f98db8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1641737 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6aef624 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f68d667 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    f1cc22e View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    8a4f816 View commit details
    Browse the repository at this point in the history
  10. 708 - Update ChangeLog

    Trafire committed Jul 14, 2024
    Configuration menu
    Copy the full SHA
    743e9ae View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2024

  1. updating our merge_tags_view method

    - We do not need to get the tag ids from the query params
    - Instead we just grab from session data
    guel-codes committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    1988558 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    b992366 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f54d8c9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    9639498 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    1da39dc View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0de8a38 View commit details
    Browse the repository at this point in the history

Commits on Jul 17, 2024

  1. Configuration menu
    Copy the full SHA
    cbf9bd2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    46db2d6 View commit details
    Browse the repository at this point in the history
  3. 708 - Remove unused import

    Trafire committed Jul 17, 2024
    Configuration menu
    Copy the full SHA
    558ec17 View commit details
    Browse the repository at this point in the history

Commits on Jul 18, 2024

  1. Addressing PR comments

    - Updated the success message to user
    - cleaned up some print statements
    - updated the form max_length to match the taggit model
    - updated the form html to extend the base so the styling matched
    guel-codes committed Jul 18, 2024
    Configuration menu
    Copy the full SHA
    d0fe810 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    954cb5d View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2024

  1. Configuration menu
    Copy the full SHA
    4437d48 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. 708 - natural_key return type changed to string instead of generator …

    …to allow deserialization with natural-foreign key
    Trafire committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    5ead624 View commit details
    Browse the repository at this point in the history

Commits on Jul 25, 2024

  1. Add documentation details

    rtpg committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    c2147e8 View commit details
    Browse the repository at this point in the history
  2. Clean up documentation

    rtpg committed Jul 25, 2024
    Configuration menu
    Copy the full SHA
    15ed6e5 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #905 from Trafire/708-natural-keys-support

    708 - Add Natural Key Support to Tag model
    rtpg authored Jul 25, 2024
    Configuration menu
    Copy the full SHA
    b2906a9 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2024

  1. Configuration menu
    Copy the full SHA
    c6c7bb2 View commit details
    Browse the repository at this point in the history
  2. isort fix

    rtpg committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    ba48993 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #904 from jazzband/899-merge-tags

    Enable Tag Merging
    rtpg authored Jul 26, 2024
    Configuration menu
    Copy the full SHA
    c02ffe5 View commit details
    Browse the repository at this point in the history
  4. Prepare version 6.0.0

    rtpg committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    e764c3b View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2024

  1. Configuration menu
    Copy the full SHA
    6f1496f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    311f9f4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5423fd1 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a1600c3 View commit details
    Browse the repository at this point in the history
  5. Merge remote-tracking branch 'origin/django-taggit-911' into django-t…

    …aggit-911
    
    # Conflicts:
    #	sample_taggit/library_management/templates/library_management/magazine_list.html
    #	sample_taggit/library_management/templates/library_management/physical_copy_form.html
    Trafire committed Jul 28, 2024
    Configuration menu
    Copy the full SHA
    a8bd958 View commit details
    Browse the repository at this point in the history
  6. django-taggit-911 - linting

    Trafire committed Jul 28, 2024
    Configuration menu
    Copy the full SHA
    6d62e80 View commit details
    Browse the repository at this point in the history
  7. django-taggit-911 - linting

    Trafire committed Jul 28, 2024
    Configuration menu
    Copy the full SHA
    f2dcecf View commit details
    Browse the repository at this point in the history
  8. django-taggit-911 - delinting

    Trafire committed Jul 28, 2024
    Configuration menu
    Copy the full SHA
    3c8ca91 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    5ec2151 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    38758ac View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    97a76bf View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c874f36 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    77af843 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    24f6d6a View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b06b3a3 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    5c2ccf1 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    a17cbca View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    d1903be View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    71f1cd3 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    163a6d9 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    2b43c90 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    6616fb3 View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    4256ce3 View commit details
    Browse the repository at this point in the history

Commits on Jul 29, 2024

  1. Merge pull request #910 from jazzband/prepare-release

    Prepare version 6.0.0
    rtpg authored Jul 29, 2024
    Configuration menu
    Copy the full SHA
    ffa9d60 View commit details
    Browse the repository at this point in the history

Commits on Jul 30, 2024

  1. Configuration menu
    Copy the full SHA
    bd860f5 View commit details
    Browse the repository at this point in the history
  2. adding a note to the CHANGELOG

    guel-codes authored and rtpg committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    874d2d5 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    c668894 View commit details
    Browse the repository at this point in the history
  4. Include orphaned tags tests

    rtpg committed Jul 30, 2024
    Configuration menu
    Copy the full SHA
    3b15951 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #908 from guel-codes/682-orphaned-tags

    [#682] - Remove Orphaned Tags
    rtpg authored Jul 30, 2024
    Configuration menu
    Copy the full SHA
    d8889a6 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. handle MultipleObjectsReturned for duplicates after TAGGIT_CASE_INSEN…

    …SITIVE settings is set to True
    fazeelghafoor committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    a78782e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e0ebafb View commit details
    Browse the repository at this point in the history
  3. update changelog

    fazeelghafoor committed Aug 1, 2024
    Configuration menu
    Copy the full SHA
    7d49bee View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2024

  1. Configuration menu
    Copy the full SHA
    ac87232 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #912 from Trafire/django-taggit-911

    Sample App Enhancements
    rtpg authored Aug 12, 2024
    Configuration menu
    Copy the full SHA
    764664f View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. [pre-commit.ci] pre-commit autoupdate

    updates:
    - [github.com/psf/black: 24.4.2 → 24.8.0](psf/black@24.4.2...24.8.0)
    - [github.com/PyCQA/flake8: 7.1.0 → 7.1.1](PyCQA/flake8@7.1.0...7.1.1)
    - [github.com/asottile/pyupgrade: v3.16.0 → v3.17.0](asottile/pyupgrade@v3.16.0...v3.17.0)
    - [github.com/adamchainz/django-upgrade: 1.19.0 → 1.21.0](adamchainz/django-upgrade@1.19.0...1.21.0)
    pre-commit-ci[bot] authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    3a4944d View commit details
    Browse the repository at this point in the history

Commits on Sep 28, 2024

  1. Merge pull request #916 from jazzband/manifest-changes

    Exclude docs, tests, and the sample project from the package
    rtpg authored Sep 28, 2024
    Configuration menu
    Copy the full SHA
    3d42581 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    150c025 View commit details
    Browse the repository at this point in the history
  3. sort imports

    rtpg committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    0e10963 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e851a84 View commit details
    Browse the repository at this point in the history
  5. Remove unused import

    rtpg committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    f4effb2 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    0e3c865 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #914 from fazeelghafoor/feat/resolve-duplicate-tags

    [#826] - get() returned more than one Tag -- it returned 2!
    rtpg authored Sep 28, 2024
    Configuration menu
    Copy the full SHA
    0cd1f24 View commit details
    Browse the repository at this point in the history
  8. Prepare django-taggit 6.1.0

    rtpg committed Sep 28, 2024
    Configuration menu
    Copy the full SHA
    0436236 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #921 from jazzband/prepare-6-1-0

    Prepare django-taggit 6.1.0
    rtpg authored Sep 28, 2024
    Configuration menu
    Copy the full SHA
    4f3ec30 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2024

  1. Configuration menu
    Copy the full SHA
    1535f06 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #922 from jazzband/6-1-0

    Fix missing template file in packaging
    rtpg authored Sep 29, 2024
    Configuration menu
    Copy the full SHA
    4e5f7de View commit details
    Browse the repository at this point in the history
  3. Merge pull request #906 from jazzband/pre-commit-ci-update-config

    [pre-commit.ci] pre-commit autoupdate
    rtpg authored Sep 29, 2024
    Configuration menu
    Copy the full SHA
    9e84f93 View commit details
    Browse the repository at this point in the history

Commits on Oct 9, 2024

  1. Configuration menu
    Copy the full SHA
    667fa4b View commit details
    Browse the repository at this point in the history
  2. add some error handling

    guel-codes authored and rtpg committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    f19f804 View commit details
    Browse the repository at this point in the history
  3. [pre-commit.ci] auto fixes from pre-commit.com hooks

    for more information, see https://pre-commit.ci
    pre-commit-ci[bot] authored and rtpg committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    5004696 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2181a42 View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. Merge pull request #917 from guel-codes/admin-orphaned-tags

    Add an admin action to remove orphaned tags
    rtpg authored Oct 10, 2024
    Configuration menu
    Copy the full SHA
    f4f82af View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. updating references to 3.8

    guel-codes committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    25e5337 View commit details
    Browse the repository at this point in the history
  2. Revert version bump

    rtpg authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    848cf57 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #925 from guel-codes/900-python38-cleanup

    Remove Python 3.8 from support
    rtpg authored Oct 18, 2024
    Configuration menu
    Copy the full SHA
    e41b5fc View commit details
    Browse the repository at this point in the history