Skip to content

Releases: cfpb/wagtail-inventory

3.0.1

23 Sep 17:20
8d75299
Compare
Choose a tag to compare

What's Changed

  • Fix missing coverage files in GitHub Actions by @chosak in #85

Full Changelog: 3.0...3.0.1

3.0

23 Sep 16:55
6a81357
Compare
Choose a tag to compare
3.0

What's Changed

  • Update for Wagtail 6.2 universal listing reports by @willbarton in #84

This release drops support for Wagtail < 6.2.

Full Changelog: 2.6...3.0

2.6

27 Feb 15:32
Compare
Choose a tag to compare
2.6

What's Changed

Full Changelog: 2.5...2.6

2.5

17 Nov 14:40
bb078d5
Compare
Choose a tag to compare
2.5

What's Changed

Full Changelog: 2.4...2.5

2.4

06 Oct 17:02
bff2c8c
Compare
Choose a tag to compare
2.4

What's Changed

Full Changelog: 2.3...2.4

2.3

05 Oct 18:46
d4a4900
Compare
Choose a tag to compare
2.3

What's Changed

  • Add ability to limit block inventory permission by @chosak in #77
  • Add page type filtering to the inventory report by @chosak in #76

Full Changelog: 2.2...2.3

2.2

31 Jul 15:36
ed644f8
Compare
Choose a tag to compare
2.2

What's Changed

  • Add support for Wagtail 5.0 and Django 4.2 by @katdom13 in #73

Full Changelog: 2.1...2.2

2.1

24 Jul 21:08
Compare
Choose a tag to compare
2.1

What's Changed

  • Add ruff to pre-commit config by @chosak in #70
  • Exempt PageBlock from Wagtail's reference index by @chosak in #75

Full Changelog: 2.0.0...2.1

2.0.0

09 Mar 13:28
30d6fcf
Compare
Choose a tag to compare
  • Convert inventory view to a Wagtail report #68

The Wagtail block inventory is moved from "Settings" to "Reports" with new filter options and Excel/CSV downloads.

This release adds a requirement of django-autocomplete-light, which can be pip-installed:

pip install django-autocomplete-light

And it requires dal and dal_select2 to be added to INSTALLED_APPS in your settings.py file:

# in settings.py
INSTALLED_APPS = (
    ...
    'dal',
    'dal_select2',
    'wagtailinventory',
    ...
)

1.7.0

03 Mar 14:32
33b324a
Compare
Choose a tag to compare
  • Add support for Wagtail 4.2 #66 (thanks, @katdom13!)
  • Switch to pyproject.toml #67