Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package python-crispy-bootstrap5 for
openSUSE:Factory checked in at 2025-10-03 15:43:24
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-crispy-bootstrap5 (Old)
and /work/SRC/openSUSE:Factory/.python-crispy-bootstrap5.new.11973 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-crispy-bootstrap5"
Fri Oct 3 15:43:24 2025 rev:6 rq:1308663 version:2025.6
Changes:
--------
---
/work/SRC/openSUSE:Factory/python-crispy-bootstrap5/python-crispy-bootstrap5.changes
2025-04-15 16:50:15.517985493 +0200
+++
/work/SRC/openSUSE:Factory/.python-crispy-bootstrap5.new.11973/python-crispy-bootstrap5.changes
2025-10-03 15:44:21.746864243 +0200
@@ -1,0 +2,7 @@
+Wed Oct 1 08:10:03 UTC 2025 - Markéta Machová <[email protected]>
+
+- update to 2025.6
+ * <legend> elements now have fs-6 class so they are the same font
+ size as <labels>.
+
+-------------------------------------------------------------------
Old:
----
crispy-bootstrap5-2025.4.tar.gz
New:
----
crispy-bootstrap5-2025.6.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-crispy-bootstrap5.spec ++++++
--- /var/tmp/diff_new_pack.nlbReV/_old 2025-10-03 15:44:22.598899422 +0200
+++ /var/tmp/diff_new_pack.nlbReV/_new 2025-10-03 15:44:22.598899422 +0200
@@ -1,7 +1,7 @@
#
# spec file for package python-crispy-bootstrap5
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-crispy-bootstrap5
-Version: 2025.4
+Version: 2025.6
Release: 0
Summary: Bootstrap5 template pack for django-crispy-forms
License: MIT
++++++ crispy-bootstrap5-2025.4.tar.gz -> crispy-bootstrap5-2025.6.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/crispy-bootstrap5-2025.4/CHANGELOG.md
new/crispy-bootstrap5-2025.6/CHANGELOG.md
--- old/crispy-bootstrap5-2025.4/CHANGELOG.md 2025-04-02 14:30:33.000000000
+0200
+++ new/crispy-bootstrap5-2025.6/CHANGELOG.md 2025-06-08 09:38:56.000000000
+0200
@@ -1,5 +1,8 @@
# CHANGELOG FOR CRISPY-BOOTSTRAP5
+## 2025.6 (2025-06-08)
+* `<legend>` elements now have `fs-6` class so they are the same font size as
`<labels>`.
+
## 2025.4 (2025-04-02)
* Added Python 3.13 support.
* Added support for Django 5.2. This required the following template changes:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/crispy_bootstrap5/__init__.py
new/crispy-bootstrap5-2025.6/crispy_bootstrap5/__init__.py
--- old/crispy-bootstrap5-2025.4/crispy_bootstrap5/__init__.py 2025-04-02
14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/crispy_bootstrap5/__init__.py 2025-06-08
09:38:56.000000000 +0200
@@ -1 +1 @@
-__version__ = "2025.4"
+__version__ = "2025.6"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/crispy_bootstrap5/templates/bootstrap5/field.html
new/crispy-bootstrap5-2025.6/crispy_bootstrap5/templates/bootstrap5/field.html
---
old/crispy-bootstrap5-2025.4/crispy_bootstrap5/templates/bootstrap5/field.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/crispy_bootstrap5/templates/bootstrap5/field.html
2025-06-08 09:38:56.000000000 +0200
@@ -13,7 +13,7 @@
{% if field.label and not field|is_checkbox and form_show_labels %}
{% if field.use_fieldset %}<fieldset{% if 'form-horizontal' in
form_class %} class="row"{% endif %}{% if field.aria_describedby %}
aria-describedby="{{ field.aria_describedby }}"{% endif %}>{% endif %}
<{% if field.use_fieldset %}legend{% else %}label{% endif %}
- {% if field.id_for_label %}for="{{ field.id_for_label }}"{%
endif %} class="{% if 'form-horizontal' in form_class %}col-form-label pt-0{%
else %}form-label{% endif %}{% if label_class %} {{ label_class }}{% endif %}{%
if field.field.required %} requiredField{% endif %}">
+ {% if field.id_for_label %}for="{{ field.id_for_label }}"{%
endif %} class="{% if 'form-horizontal' in form_class %}col-form-label pt-0{%
else %}form-label{% endif %}{% if label_class %} {{ label_class }}{% endif %}{%
if field.field.required %} requiredField{% endif %}{% if field.use_fieldset %}
fs-6{% endif %}">
{{ field.label }}{% if field.field.required %}<span
class="asteriskField">*</span>{% endif %}
</{% if field.use_fieldset %}legend{% else %}label{% endif %}>
{% endif %}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/crispy_bootstrap5/templates/bootstrap5/layout/checkboxselectmultiple_inline.html
new/crispy-bootstrap5-2025.6/crispy_bootstrap5/templates/bootstrap5/layout/checkboxselectmultiple_inline.html
---
old/crispy-bootstrap5-2025.4/crispy_bootstrap5/templates/bootstrap5/layout/checkboxselectmultiple_inline.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/crispy_bootstrap5/templates/bootstrap5/layout/checkboxselectmultiple_inline.html
2025-06-08 09:38:56.000000000 +0200
@@ -5,7 +5,7 @@
{% if field.label %}
<fieldset{% if field.aria_describedby %} aria-describedby="{{
field.aria_describedby }}"{% endif %}{% if 'form-horizontal' in form_class %}
class="row"{% endif %}>
- <legend for="{{ field.id_for_label }}" class="{{ label_class }}{%
if 'form-horizontal' in form_class %} col-form-label pt-0{% else %}
form-label{% endif %}{% if field.field.required %} requiredField{% endif %}">
+ <legend for="{{ field.id_for_label }}" class="{{ label_class }}
fs-6{% if 'form-horizontal' in form_class %} col-form-label pt-0{% else %}
form-label{% endif %}{% if field.field.required %} requiredField{% endif %}">
{{ field.label }}{% if field.field.required %}<span
class="asteriskField">*</span>{% endif %}
</legend>
{% endif %}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/crispy_bootstrap5/templates/bootstrap5/layout/radioselect_inline.html
new/crispy-bootstrap5-2025.6/crispy_bootstrap5/templates/bootstrap5/layout/radioselect_inline.html
---
old/crispy-bootstrap5-2025.4/crispy_bootstrap5/templates/bootstrap5/layout/radioselect_inline.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/crispy_bootstrap5/templates/bootstrap5/layout/radioselect_inline.html
2025-06-08 09:38:56.000000000 +0200
@@ -5,7 +5,7 @@
{% if field.label %}
<fieldset{% if field.aria_describedby %} aria-describedby="{{
field.aria_describedby }}"{% endif %}{% if 'form-horizontal' in form_class %}
class="row"{% endif %}>
- <legend for="{{ field.id_for_label }}" class="{{ label_class }}{%
if 'form-horizontal' in form_class %} col-form-label pt-0{% else %}
form-label{% endif %}{% if field.field.required %} requiredField{% endif %}">
+ <legend for="{{ field.id_for_label }}" class="{{ label_class }}
fs-6{% if 'form-horizontal' in form_class %} col-form-label pt-0{% else %}
form-label{% endif %}{% if field.field.required %} requiredField{% endif %}">
{{ field.label }}{% if field.field.required %}<span
class="asteriskField">*</span>{% endif %}
</legend>
{% endif %}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/checkboxes.html
new/crispy-bootstrap5-2025.6/tests/results/checkboxes.html
--- old/crispy-bootstrap5-2025.4/tests/results/checkboxes.html 2025-04-02
14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/checkboxes.html 2025-06-08
09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_checkboxes">
<fieldset>
- <legend class="form-label requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
<div>
<div class="form-check">
<input checked="checked" class="form-check-input"
id="id_checkboxes_0" name="checkboxes" type="checkbox"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/inline_checkboxes.html
new/crispy-bootstrap5-2025.6/tests/results/inline_checkboxes.html
--- old/crispy-bootstrap5-2025.4/tests/results/inline_checkboxes.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/inline_checkboxes.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div id="div_id_checkboxes" class="mb-3">
<fieldset>
- <legend for="" class=" form-label requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
+ <legend for="" class=" form-label fs-6
requiredField">Checkboxes<span class="asteriskField">*</span></legend>
<div>
<div class="form-check form-check-inline">
<input type="checkbox" class="form-check-input"
name="checkboxes" value="1" id="id_checkboxes_0" checked>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/inline_checkboxes_failing.html
new/crispy-bootstrap5-2025.6/tests/results/inline_checkboxes_failing.html
--- old/crispy-bootstrap5-2025.4/tests/results/inline_checkboxes_failing.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/inline_checkboxes_failing.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div id="div_id_checkboxes" class="mb-3">
<fieldset aria-describedby="id_checkboxes_error">
- <legend for="" class=" form-label requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
+ <legend for="" class=" form-label fs-6 requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
<div>
<div class="form-check form-check-inline">
<input type="checkbox" class="form-check-input is-invalid"
name="checkboxes" value="1" id="id_checkboxes_0" aria-invalid="true">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/inline_checkboxes_failing_lt50.html
new/crispy-bootstrap5-2025.6/tests/results/inline_checkboxes_failing_lt50.html
---
old/crispy-bootstrap5-2025.4/tests/results/inline_checkboxes_failing_lt50.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/tests/results/inline_checkboxes_failing_lt50.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div id="div_id_checkboxes" class="mb-3">
<fieldset>
- <legend for="" class=" form-label requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
+ <legend for="" class=" form-label fs-6 requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
<div>
<div class="form-check form-check-inline">
<input type="checkbox" class="form-check-input is-invalid"
name="checkboxes" value="1" id="id_checkboxes_0">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/inline_checkboxes_failing_lt52.html
new/crispy-bootstrap5-2025.6/tests/results/inline_checkboxes_failing_lt52.html
---
old/crispy-bootstrap5-2025.4/tests/results/inline_checkboxes_failing_lt52.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/tests/results/inline_checkboxes_failing_lt52.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div id="div_id_checkboxes" class="mb-3">
<fieldset>
- <legend for="" class=" form-label requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
+ <legend for="" class=" form-label fs-6 requiredField">Checkboxes<span
class="asteriskField">*</span></legend>
<div>
<div class="form-check form-check-inline">
<input type="checkbox" class="form-check-input is-invalid"
name="checkboxes" value="1" id="id_checkboxes_0" aria-invalid="true">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/inline_radios.html
new/crispy-bootstrap5-2025.6/tests/results/inline_radios.html
--- old/crispy-bootstrap5-2025.4/tests/results/inline_radios.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/inline_radios.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div id="div_id_inline_radios" class="mb-3">
<fieldset>
- <legend for="" class=" form-label requiredField">Inline
radios<span class="asteriskField">*</span></legend>
+ <legend for="" class=" form-label fs-6 requiredField">Inline
radios<span class="asteriskField">*</span></legend>
<div>
<div class="form-check form-check-inline">
<input type="radio" class="form-check-input"
name="inline_radios" value="option_one" id="id_inline_radios_0" required>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/inline_radios_failing.html
new/crispy-bootstrap5-2025.6/tests/results/inline_radios_failing.html
--- old/crispy-bootstrap5-2025.4/tests/results/inline_radios_failing.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/inline_radios_failing.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post" >
<div id="div_id_inline_radios" class="mb-3">
<fieldset aria-describedby="id_inline_radios_error">
- <legend for="" class=" form-label requiredField">Inline radios<span
class="asteriskField">*</span></legend>
+ <legend for="" class=" form-label fs-6 requiredField">Inline
radios<span class="asteriskField">*</span></legend>
<div>
<div class="form-check form-check-inline">
<input type="radio" class="form-check-input is-invalid"
name="inline_radios" value="option_one" id="id_inline_radios_0" required
aria-invalid="true">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/inline_radios_failing_lt50.html
new/crispy-bootstrap5-2025.6/tests/results/inline_radios_failing_lt50.html
--- old/crispy-bootstrap5-2025.4/tests/results/inline_radios_failing_lt50.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/inline_radios_failing_lt50.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post" >
<div id="div_id_inline_radios" class="mb-3">
<fieldset>
- <legend for="" class=" form-label requiredField">Inline radios<span
class="asteriskField">*</span></legend>
+ <legend for="" class=" form-label fs-6 requiredField">Inline
radios<span class="asteriskField">*</span></legend>
<div>
<div class="form-check form-check-inline">
<input type="radio" class="form-check-input is-invalid"
name="inline_radios" value="option_one" id="id_inline_radios_0" required>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/inline_radios_failing_lt52.html
new/crispy-bootstrap5-2025.6/tests/results/inline_radios_failing_lt52.html
--- old/crispy-bootstrap5-2025.4/tests/results/inline_radios_failing_lt52.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/inline_radios_failing_lt52.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post" >
<div id="div_id_inline_radios" class="mb-3">
<fieldset>
- <legend for="" class=" form-label requiredField">Inline radios<span
class="asteriskField">*</span></legend>
+ <legend for="" class=" form-label fs-6 requiredField">Inline
radios<span class="asteriskField">*</span></legend>
<div>
<div class="form-check form-check-inline">
<input type="radio" class="form-check-input is-invalid"
name="inline_radios" value="option_one" id="id_inline_radios_0" required
aria-invalid="true">
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/crispy-bootstrap5-2025.4/tests/results/radio.html
new/crispy-bootstrap5-2025.6/tests/results/radio.html
--- old/crispy-bootstrap5-2025.4/tests/results/radio.html 2025-04-02
14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/radio.html 2025-06-08
09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div id="div_id_radio" class="mb-3">
<fieldset>
- <legend class="form-label requiredField"> Radio<span
class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField"> Radio<span
class="asteriskField">*</span></legend>
<div>
<div class="form-check">
<input
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes.html
--- old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_checkbox_select_multiple">
<fieldset aria-describedby="id_checkbox_select_multiple_helptext">
- <legend class="form-label requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input class="form-check-input"
id="id_checkbox_select_multiple_0_0"
name="checkbox_select_multiple" type="checkbox"
value="vinyl"><label class="form-check-label"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes_failing.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes_failing.html
---
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes_failing.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes_failing.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_checkbox_select_multiple">
<fieldset aria-describedby="id_checkbox_select_multiple_helptext
id_checkbox_select_multiple_error">
- <legend class="form-label requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input aria-invalid="true"
class="form-check-input is-invalid" id="id_checkbox_select_multiple_0_0"
name="checkbox_select_multiple" type="checkbox"
value="vinyl"><label class="form-check-label"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes_failing_lt50.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes_failing_lt50.html
---
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes_failing_lt50.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes_failing_lt50.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_checkbox_select_multiple">
<fieldset>
- <legend class="form-label requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input class="form-check-input
is-invalid" id="id_checkbox_select_multiple_0_0"
name="checkbox_select_multiple" type="checkbox"
value="vinyl"><label class="form-check-label"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes_failing_lt52.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes_failing_lt52.html
---
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes_failing_lt52.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes_failing_lt52.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_checkbox_select_multiple">
<fieldset>
- <legend class="form-label requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input aria-invalid="true"
class="form-check-input is-invalid" id="id_checkbox_select_multiple_0_0"
name="checkbox_select_multiple" type="checkbox"
value="vinyl"><label class="form-check-label"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes_lt52.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes_lt52.html
---
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_checkboxes_lt52.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_checkboxes_lt52.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_checkbox_select_multiple">
<fieldset>
- <legend class="form-label requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Checkbox select
multiple<span class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input class="form-check-input"
id="id_checkbox_select_multiple_0_0"
name="checkbox_select_multiple" type="checkbox"
value="vinyl"><label class="form-check-label"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_radios.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_radios.html
--- old/crispy-bootstrap5-2025.4/tests/results/test_grouped_radios.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/test_grouped_radios.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_radio">
<fieldset>
- <legend class="form-label requiredField">Radio<span
class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Radio<span
class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input class="form-check-input"
id="id_radio_0_0" name="radio" required type="radio"
value="vinyl"><label class="form-check-label"
for="id_radio_0_0">Vinyl</label></div>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_radios_failing.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_radios_failing.html
--- old/crispy-bootstrap5-2025.4/tests/results/test_grouped_radios_failing.html
2025-04-02 14:30:33.000000000 +0200
+++ new/crispy-bootstrap5-2025.6/tests/results/test_grouped_radios_failing.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_radio">
<fieldset aria-describedby="id_radio_error">
- <legend class="form-label requiredField">Radio<span
class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Radio<span
class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input aria-invalid="true"
class="form-check-input is-invalid" id="id_radio_0_0"
name="radio" required type="radio"
value="vinyl"><label class="form-check-label"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_radios_failing_lt50.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_radios_failing_lt50.html
---
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_radios_failing_lt50.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_radios_failing_lt50.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_radio">
<fieldset>
- <legend class="form-label requiredField">Radio<span
class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Radio<span
class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input class="form-check-input
is-invalid" id="id_radio_0_0"
name="radio" required type="radio"
value="vinyl"><label class="form-check-label"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_radios_failing_lt52.html
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_radios_failing_lt52.html
---
old/crispy-bootstrap5-2025.4/tests/results/test_grouped_radios_failing_lt52.html
2025-04-02 14:30:33.000000000 +0200
+++
new/crispy-bootstrap5-2025.6/tests/results/test_grouped_radios_failing_lt52.html
2025-06-08 09:38:56.000000000 +0200
@@ -1,7 +1,7 @@
<form method="post">
<div class="mb-3" id="div_id_radio">
<fieldset>
- <legend class="form-label requiredField">Radio<span
class="asteriskField">*</span></legend>
+ <legend class="form-label fs-6 requiredField">Radio<span
class="asteriskField">*</span></legend>
<div><strong>Audio</strong>
<div class="form-check"><input aria-invalid="true"
class="form-check-input is-invalid" id="id_radio_0_0"
name="radio" required type="radio"
value="vinyl"><label class="form-check-label"