Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: codingjoe/django-select2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8.2.1
Choose a base ref
...
head repository: codingjoe/django-select2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 8.2.2
Choose a head ref
  • 5 commits
  • 3 files changed
  • 3 contributors

Commits on Sep 25, 2024

  1. Bump bandit from 1.7.9 to 1.7.10

    Bumps [bandit](https://github.com/PyCQA/bandit) from 1.7.9 to 1.7.10.
    - [Release notes](https://github.com/PyCQA/bandit/releases)
    - [Commits](PyCQA/bandit@1.7.9...1.7.10)
    
    ---
    updated-dependencies:
    - dependency-name: bandit
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and codingjoe committed Sep 25, 2024
    Configuration menu
    Copy the full SHA
    458ff01 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2024

  1. Bump black from 24.8.0 to 24.10.0

    Bumps [black](https://github.com/psf/black) from 24.8.0 to 24.10.0.
    - [Release notes](https://github.com/psf/black/releases)
    - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
    - [Commits](psf/black@24.8.0...24.10.0)
    
    ---
    updated-dependencies:
    - dependency-name: black
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and codingjoe committed Oct 8, 2024
    Configuration menu
    Copy the full SHA
    59798d2 View commit details
    Browse the repository at this point in the history

Commits on Nov 15, 2024

  1. Bump codecov/codecov-action from 4 to 5

    Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5.
    - [Release notes](https://github.com/codecov/codecov-action/releases)
    - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
    - [Commits](codecov/codecov-action@v4...v5)
    
    ---
    updated-dependencies:
    - dependency-name: codecov/codecov-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and codingjoe committed Nov 15, 2024
    Configuration menu
    Copy the full SHA
    de441b6 View commit details
    Browse the repository at this point in the history

Commits on Nov 27, 2024

  1. Bump bandit from 1.7.10 to 1.8.0

    Bumps [bandit](https://github.com/PyCQA/bandit) from 1.7.10 to 1.8.0.
    - [Release notes](https://github.com/PyCQA/bandit/releases)
    - [Commits](PyCQA/bandit@1.7.10...1.8.0)
    
    ---
    updated-dependencies:
    - dependency-name: bandit
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored and codingjoe committed Nov 27, 2024
    Configuration menu
    Copy the full SHA
    12e2d60 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2024

  1. Fix #297 -- Add Django admin' inline formset support (#300)

    As described in #249 and #297 django-select2 does not currently work
    with selects added dynamically in the Django admin.
    
    The solution was implemented in #249 and all credit should go to Jurrian
    Tromp. I only added a small correction:
    
    ```diff
    - jqRow.find('.select2-container').remove()
    + jqRow.find('.django-select2').parent().find('.select2-container').remove()
    ```
    
    to only remove `.select2-container` when it is a sibling of
    `.django-select2`. Otherwise the wrong `.select2-container` might get
    deleted.
    
    ---------
    
    Co-authored-by: Johannes Maron <[email protected]>
    mardukbp and codingjoe authored Dec 10, 2024
    Configuration menu
    Copy the full SHA
    352811b View commit details
    Browse the repository at this point in the history
Loading