-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathnews.html.tmpl
154 lines (153 loc) · 4.83 KB
/
news.html.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[%# News file for the FreeBSD bugzilla instance #%]
[% news = [
{
date => '2025-01-04',
text => '<ul>
<li>Bugzilla is in the process of being updated to 5.0.4.1. This
is a security and minor bugfix update.</li>
<li>A fix for <a href="https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=281371">Bug 281371</a>
has been committed.
</ul>'
},
{
date => '2024-11-23',
text => '<ul>
<li>Version 14.2-RELEASE of product Base System was created.</li>
</ul>'
},
{
date => '2024-11-03',
text => '<ul>
<li>Version 14.2-STABLE of product Base System was created.</li>
</ul>'
},
{
date => '2024-08-02',
text => '<ul>
<li>Version 13.4-STABLE of product Base System was created.</li>
</ul>'
},
{
date => '2024-07-01',
text => '<ul>
<li>As support for them have ended, Base System versions 13.2-* were
disabled for new bugs.</li>
<li>Belatedly, version 13.3-STABLE of product Base System was created.</li>
</ul>'
},
{
date => '2024-06-15',
text => '<ul>
<li>Versions 14.1-RELEASE and 14.1-STABLE of product Base System were
created.</li>
<li>As an experiment, the keyword "vendor" has been created. Set this
to flag a PR as filed from an upstream or downstream of FreeBSD.</li>
</ul>'
},
{
date => '2024-01-20',
text => '<ul>
<li>As an experiment, the flag "needs-errata" has been created. Set this
to ? to ask Release Engineering or Secteam to evaluate whether an
<a href="https://www.freebsd.org/security/notices/">Errata Notice</a>
should be created for an existing release.</li>
</ul>'
},
{
date => '2024-01-04',
text => '<ul>
<li>As support for it has ended, Base System version 12.4 was disabled
for new bugs.</li>
<li>The weekly reminder script was updated to deselect mfc-stable12.</li>
<li>The Dashboard MFC query was similarly updated.</li>
</ul>'
},
{
date => '2023-12-17',
text => '<ul>
<li>The weekly reminder script was belatedly updated to:
<ul>
<li>deselect mfc-stable8 through 11.</li>
<li>select mfc-stable12 through 14.</li>
</ul>
<li>The Dashboard MFC query was belatedly fixed as above.</li>
<li>Note that mfc-stable12 will be removed 20240101.</li>
</ul>'
},
{
date => '2023-11-30',
text => '<ul>
<li>A stale query was removed from the Dashboard (PR 215844).</li>
<li><code>max_search_results</code> was updated from 10000 to 12500.
This was limiting the totals from certain queries.</li>
</ul>'
},
{
date => '2023-08-30',
text => '<ul>
<li>To reflect the prelease state of FreeBSD 14.0, the following were
done:
<ul>
<li>Version 14.0-STABLE of product Base System was created.</li>
<li>Version 15.0-CURRENT of product Base System was created.</li>
<li>The flag type mfc-stable14 was created.</li>
</ul>
<li>As support for them has ended, Base System versions 12.0-*, 12.1-*,
12.2-*, 12.3-*, 13.0-*, and 13.1-* were disabled for new bugs.</li>
</ul>'
},
{
date => '2021-01-24',
text => '<ul>
<li>To reflect the prelease state of FreeBSD 13.0, the following were
done:
<ul>
<li>Version 13.0-STABLE of product Base System was created.</li>
<li>The flag type mfc-stable13 was created.</li>
</ul>
<li>As support for them has ended, Base System versions 12.0-RELEASE
and 12.0-STABLE were disabled for new bugs.</li>
<li>Hardware value sparc64 has been disabled for new bugs.</li>
</ul>'
},
{
date => '2020-07-12',
text => '<ul>
<li>In order to lay the groundwork for future changes/improvements,
and to make it easier to search for things that are not assigned,
we have modified the <code>Real Name</code> of all bugzilla accounts
that are default assignees as such:<br>
<code>Assignee: freebsd-net (Nobody)</code>.<br>
This is to make it more obvious that default assignees are assigned to
<code>Nobody</code> and encourages self-assignment (to real people) to
make resolution more consistent.</li>
</ul>'
},
{
date => '2020-07-11',
text => '<ul>
<li>To help support the 202007 Bug Squash, all of the PRs containing
patches were audited so that:
<ul>
<li>Each attachment that has its <code>Patch</code> flag set has
been verified to contain a patch.</li>
<li>If an attachment filename ends in <code>.diff</code> or
<code>.patch</code>, its <code>Patch</code> flag has been
verified to be set.</li>
<li>The remaining attachment filenames end in <code>.shar</code>.</li>
</ul>
</li>
<li>This officially obsoletes the use of the the <code>Keywords</code>
field value of <code>patch</code>. This value had to be added by hand
and as a result was applied inconsistently.</li>
</ul>'
},
]
%]
[% FOREACH item IN news %]
[% BREAK IF loop.count() > 5 %]
<div class="entry">
<span class="date">[% item.date FILTER html %]</span>
<p>[% item.text %]</p>
</div>
[% END %]