Skip to content

Commit 9c76b21

Browse files
committed
Merge tag 'v1.8.0' into develop
Changes: - Added: Add Python 3.14 support (@marteinn) - Added: Add Django 6.0 support (@marteinn) - Added: Add Wagtail 7.3 support (@marteinn) - Fixed: Fix potential xss vulnerability in PolyfillColorInputWidget by escaping field id (@marteinn) - Fixed: Remove dead code for Wagtail < 6.0 support (@marteinn) - Fixed: Pin all GitHub Actions to commit SHAs and upgrade psf/black from 22.3.0 to 26.3.1 (@marteinn) - Fixed: Add top-level read-only permissions to GitHub Actions workflow (@marteinn) - Fixed: Require environment approval for PyPI publish in GitHub Actions workflow (@marteinn) - Fixed: Restrict GitHub Actions push trigger to main branches and release tags (@marteinn) - Fixed: Pin isort to specific version in CI (@marteinn) - Fixed: Fix broken jQuery selector in PolyfillColorInputWidget caused by missing # prefix after XSS fix (@marteinn) - Fixed: Only run publish job in CI on tag pushes (@marteinn) - Fixed: Update actions/checkout and actions/setup-python actions to latest version (@marteinn) - Fixed: Cache pip dependencies in CI test job (@marteinn) - Removed: Drop support for EOL python 3.9 (@marteinn) - Removed: Drop Django 5.1 support (@marteinn) - Removed: Drop Wagtail 7.1 support (@marteinn)
2 parents 60120dd + 4884204 commit 9c76b21

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88
### Added
9+
### Changed
10+
### Fixed
11+
### Removed
12+
13+
## [1.8.0] - 2026-04-12
14+
### Added
915
- Add Python 3.14 support (@marteinn)
1016
- Add Django 6.0 support (@marteinn)
1117
- Add Wagtail 7.3 support (@marteinn)
1218

13-
### Changed
1419
### Fixed
1520
- Fix potential xss vulnerability in PolyfillColorInputWidget by escaping field id (@marteinn)
1621
- Remove dead code for Wagtail < 6.0 support (@marteinn)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2020-2025 Martin Sandström
3+
Copyright (c) 2020-2026 Martin Sandström
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

wagtail_color_panel/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__title__ = "wagtail_color_panel"
2-
__version__ = "1.7.1"
3-
__build__ = 12
2+
__version__ = "1.8.0"
3+
__build__ = 13
44
__author__ = "Martin Sandström"
55
__license__ = "MIT"
66
__copyright__ = "Copyright 2020-present Martin Sandström"

0 commit comments

Comments
 (0)