plain.redirection 0.35.3__tar.gz → 0.35.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/PKG-INFO +1 -1
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/CHANGELOG.md +10 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/templates/admin/plainredirection/redirect_form.html +1 -5
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/pyproject.toml +1 -1
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/.gitignore +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/LICENSE +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/README.md +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/README.md +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/__init__.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/admin.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/chores.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/config.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/default_settings.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/middleware.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/migrations/0001_initial.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/migrations/0002_rename_plainredire_created_d5f0c7_idx_plainredirection_notfoundlog_created_at_idx_and_more.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/migrations/0003_redirectlog_plainredirection_redirectlog_redirect_id_idx.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/migrations/__init__.py +0 -0
- {plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/models.py +0 -0
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# plain-redirection changelog
|
|
2
2
|
|
|
3
|
+
## [0.35.4](https://github.com/dropseed/plain/releases/plain-redirection@0.35.4) (2026-04-30)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- **Switched the redirect admin form to use `<admin.Submit>`** so the Save button picks up the new `admin-btn admin-btn-primary` styling under plain-admin 0.81.0's namespaced classes. ([5f86c86fb7e9](https://github.com/dropseed/plain/commit/5f86c86fb7e9))
|
|
8
|
+
|
|
9
|
+
### Upgrade instructions
|
|
10
|
+
|
|
11
|
+
- If you use `plain.admin`, upgrade it to `>=0.81.0` alongside this release for the namespaced `admin-` CSS classes referenced by the redirect template.
|
|
12
|
+
|
|
3
13
|
## [0.35.3](https://github.com/dropseed/plain/releases/plain-redirection@0.35.3) (2026-04-17)
|
|
4
14
|
|
|
5
15
|
### What's changed
|
|
@@ -11,10 +11,6 @@
|
|
|
11
11
|
<admin.InputField label="Order" field={form.order} />
|
|
12
12
|
<admin.CheckboxField label="Enabled" field={form.enabled} />
|
|
13
13
|
|
|
14
|
-
<
|
|
15
|
-
<button class="mt-5" type="submit">
|
|
16
|
-
Save
|
|
17
|
-
</button>
|
|
18
|
-
</div>
|
|
14
|
+
<admin.Submit>Save</admin.Submit>
|
|
19
15
|
</form>
|
|
20
16
|
{% endblock %}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "plain.redirection"
|
|
3
|
-
version = "0.35.
|
|
3
|
+
version = "0.35.4"
|
|
4
4
|
description = "A flexible URL redirection system with admin interface and logging."
|
|
5
5
|
authors = [{ name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev" }]
|
|
6
6
|
readme = "README.md"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/migrations/0001_initial.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{plain_redirection-0.35.3 → plain_redirection-0.35.4}/plain/redirection/migrations/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|