aboutsummaryrefslogtreecommitdiff
path: root/website/data/en/news/news.toml
blob: a439ae169ec8d5b4512619e573c1b13a00d3f647 (plain) (blame)
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
# Sort news by year, month and day

[[news]]
date = "2021-11-18"
title = "FreeBSD 12.3-RC2 Available"
description = "The second RC build for the FreeBSD 12.3 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/archives/freebsd-stable/2021-November/000330.html\">available</a> on most of our <a href=\"https://docs.freebsd.org/en/books/handbook/mirrors/#mirrors-ftp\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-11-15"
title = "July-September 2021 Status Report"
description = "The <a href=\"https://www.freebsd.org/status/report-2021-07-2021-09/\">July to September 2021 Status Report</a> is now available with 42 entries."

[[news]]
date = "2021-11-11"
title = "FreeBSD 12.3-RC1 Available"
description = "The first RC build for the FreeBSD 12.3 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/archives/freebsd-stable/2021-November/000321.html\">available</a> on most of our <a href=\"https://docs.freebsd.org/en/books/handbook/mirrors/#mirrors-ftp\">FreeBSD mirror sites</a>."

[[news]]
date= "2021-11-06"
description = "New committer: <a href=\"mailto:driesm@FreeBSD.org\">Dries Michiels</a> (ports)"

[[news]]
date = "2021-11-04"
title = "FreeBSD 12.3-BETA3 Available"
description = "The third BETA build for the FreeBSD 12.3 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/archives/freebsd-stable/2021-November/000309.html\">available</a> on most of our <a href=\"https://docs.freebsd.org/en/books/handbook/mirrors/#mirrors-ftp\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-10-29"
title = "FreeBSD 12.3-BETA2 Available"
description = "The second BETA build for the FreeBSD 12.3 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/archives/freebsd-stable/2021-October/000289.html\">available</a> on most of our <a href=\"https://docs.freebsd.org/en/books/handbook/mirrors/#mirrors-ftp\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-10-22"
title = "FreeBSD 12.3-BETA1 Available"
description = "The first BETA build for the FreeBSD 12.3 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/archives/freebsd-stable/2021-October/000269.html\">available</a> on most of our <a href=\"https://docs.freebsd.org/en/books/handbook/mirrors/#mirrors-ftp\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-08-27"
description = "New committer: <a href=\"mailto:yasu@FreeBSD.org\">Yasuhiro Kimura</a> (ports)"

[[news]]
date = "2021-07-31"
description = "Enhanced commit privileges: <a href=\"mailto:lwhsu@FreeBSD.org\">Li-Wen Hsu</a> (doc, ports, src)"

[[news]]
date = "2021-07-24"
title = "April-June 2021 Status Report"
description = "The <a href=\"https://www.freebsd.org/status/report-2021-04-2021-06/\">April to June 2021 Status Report</a> is now available with 45 entries."

[[news]]
date = "2021-07-13"
description = "Enhanced commit privileges: <a href=\"mailto:philip@FreeBSD.org\">Philip Paeps</a> (src, ports, doc)"

[[news]]
date = "2021-07-06"
description = "New committer: <a href=\"mailto:diizzy@FreeBSD.org\">Daniel Engberg</a> (ports)"

[[news]]
date = "2021-05-17"
description = "Enhanced commit privileges: <a href=\"mailto:ygy@FreeBSD.org\">Guangyuan Yang</a> (doc, ports)"

[[news]]
date = "2021-05-06"
title = "January-March 2021 Status Report"
description = "The <a href=\"https://www.FreeBSD.org/status/report-2021-01-2021-03/\">January to March 2021 Status Report</a> is now available with 28 entries."

[[news]]
date = "2021-04-29"
description = "New committer: <a href=\"mailto:vishwin@FreeBSD.org\">Charlie Li</a> (ports)"

[[news]]
date = "2021-04-21"
description = "New committer: <a href=\"mailto:oh@FreeBSD.org\">Oskar Holmlund</a> (src)"

[[news]]
date = "2021-04-13"
title = "FreeBSD 13.0-RELEASE Available"
description = "<a href=\"https://www.FreeBSD.org/releases/13.0R/announce/\">FreeBSD 13.0-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.FreeBSD.org/releases/13.0R/relnotes/\">Release Notes</a> and <a href=\"https://www.FreeBSD.org/releases/13.0R/errata/\">Release Errata</a> before installation for any late-breaking news and/or issues with 13.0. More information about FreeBSD releases can be found on the <a href=\"https://www.FreeBSD.org/releases/\">Release Information</a> page."

[[news]]
date = "2021-04-03"
title = "FreeBSD 13.0-RC5 Available"
description = "The fifth RC build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, armv6, armv7, i386, powerpc, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-April/093429.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-03-29"
title = "FreeBSD 13.0-RC4 Available"
description = "The fourth RC build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, armv6, armv7, i386, powerpc, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-March/093374.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-03-21"
title = "Reopening Weblate for translations"
description = "After the migration to Hugo/AsciiDoctor the weblate tool it's opened again. To get more information <a href=\"https://lists.freebsd.org/pipermail/freebsd-translators/2021-March/000364.html\">check the announcement</a>."

[[news]]
date = "2021-03-20"
title = "FreeBSD 13.0-RC3 Available"
description = "The third RC build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, armv6, armv7, i386, powerpc, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-March/093340.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-03-15"
description = "New committer: <a href=\"mailto:khng@FreeBSD.org\">Ka Ho Ng</a> (src)"

[[news]]
date = "2021-03-12"
title = "FreeBSD 13.0-RC2 Available"
description = "The second RC build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, armv6, armv7, i386, powerpc, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-March/093294.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-03-06"
title = "FreeBSD 13.0-RC1 Available"
description = "The first RC build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, armv6, armv7, i386, powerpc, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-March/093272.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-02-27"
title = "FreeBSD 13.0-BETA4 Available"
description = "The fourth BETA build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, armv6, armv7, i386, powerpc, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-February/093233.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-02-20"
title = "FreeBSD 13.0-BETA3 Available"
description = "The third BETA build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, armv6, armv7, i386, powerpc, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-February/093151.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-02-12"
title = "FreeBSD 13.0-BETA2 Available"
description = "The second BETA build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, armv6, armv7, i386, powerpc, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-February/093081.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-02-06"
title = "FreeBSD 13.0-BETA1 Available"
description = "The first BETA build for the FreeBSD 13.0 release cycle is now available. ISO images for the amd64, arm64, powerpc64, powerpcspe, powerpc64le, and riscv64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2021-February/093047.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2021-02-07"
description = "New committer: <a href=\"mailto:fernape@FreeBSD.org\">Fernando Apesteguia Santiago</a> (doc)"

[[news]]
date = "2021-01-27"
description = "New committer: <a href=\"mailto:rajeshasp@FreeBSD.org\">Rajesh Kumar M A</a> (src)"

[[news]]
date = "2021-01-27"
description = "New committer: <a href=\"mailto:eduardo@FreeBSD.org\">Nuno Teixeira</a> (ports)"

[[news]]
date = "2021-01-25"
description = "Website and Documentation converted to Hugo and AsciiDoctor"

[[news]]
date = "2021-01-21"
description = "New committer: <a href=\"mailto:lcook@FreeBSD.org\">Lewis Cook</a> (ports)"

[[news]]
date = "2021-01-16"
title = "October-December 2020 Status Report"
description = "The <a href=\"https://www.FreeBSD.org/status/report-2020-10-2020-12.html\">October to December 2020 Status Report</a> is now available with 42 entries."

[[news]]
date = "2021-01-14"
description = "New committer: <a href=\"mailto:donner@FreeBSD.org\">Lutz Donnerhacke</a> (src)"

[[news]]
date = "2021-01-02"
description = "New committer: <a href=\"mailto:nc@FreeBSD.org\">Neel Chauhan</a> (ports)"

[[news]]
date = "2020-12-19"
description = "FreeBSD src repo to be converted to git. Please see <a href=\"https://wiki.freebsd.org/git\">the git wiki</a> for details."

[[news]]
date = "2020-12-12"
description = "New committer: <a href=\"mailto:otis@FreeBSD.org\">Juraj Lutter</a> (ports)"

[[news]]
date = "2020-12-05"
description = "FreeBSD doc repo converted to git."

[[news]]
date = "2020-10-27"
title = "FreeBSD 12.2-RELEASE Available"
description = "<a href=\"https://www.FreeBSD.org/releases/12.2R/announce.html\">FreeBSD 12.2-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.FreeBSD.org/releases/12.2R/relnotes.html\">Release Notes</a> and <a href=\"https://www.FreeBSD.org/releases/12.2R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 12.2. More information about FreeBSD releases can be found on the <a href=\"https://www.FreeBSD.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2020-10-21"
title = "July-September 2020 Status Report"
description = "The <a href=\"https://www.FreeBSD.org/status/report-2020-07-2020-09.html\">July to September 2020 Status Report</a> is now available with 35 entries."

[[news]]
date = "2020-10-17"
title = "FreeBSD 12.2-RC3 Available"
description = "The third RC build for the FreeBSD 12.2 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-October/092786.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-10-10"
title = "FreeBSD 12.2-RC2 Available"
description = "The second RC build for the FreeBSD 12.2 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-October/092761.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-10-03"
title = "FreeBSD 12.2-RC1 Available"
description = "The first RC build for the FreeBSD 12.2 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-October/092740.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-09-26"
title = "FreeBSD 12.2-BETA3 Available"
description = "The third BETA build for the FreeBSD 12.2 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, and powerpcspe architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-September/092727.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-09-18"
title = "FreeBSD 12.2-BETA2 Available"
description = "The second BETA build for the FreeBSD 12.2 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-September/092702.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-09-12"
title = "FreeBSD 12.2-BETA1 Available"
description = "The first BETA build for the FreeBSD 12.2 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-September/092680.html\">available</a> on most of our <a href=\"https://www.FreeBSD.org/doc/en/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-08-31"
description = "New committer: <a href=\"mailto:rhurlin@FreeBSD.org\">Rainer Hurling</a> (ports)"

[[news]]
date = "2020-07-26"
description = "New committer: <a href=\"mailto:debdrup@FreeBSD.org\">Daniel Ebdrup Jensen</a> (doc)"

[[news]]
date = "2020-07-23"
description = "New committer: <a href=\"mailto:rew@FreeBSD.org\">Robert Wing</a> (src)"

[[news]]
date = "2020-07-15"
title = "April-June 2020 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2020-04-2020-06.html\">April to June 2020 Status Report</a> is now available with 51 entries."

[[news]]
date = "2020-07-01"
title = "New FreeBSD Core Team Elected"
description = "Active committers to the project have elected your eleventh FreeBSD Core Team. For details, refer to the <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2020-July/001962.html\">official announcement</a>."

[[news]]
date = "2020-06-16"
title = "FreeBSD 11.4-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/11.4R/announce.html\">FreeBSD 11.4-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/11.4R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/11.4R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 11.4. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2020-06-09"
title = "FreeBSD has revised its code of conduct to a new LLVM-derived code of conduct."
description = "See <a href=\"https://www.freebsd.org/internal/code-of-conduct.html\">Code of Conduct</a> for the revised policy."

[[news]]
date = "2020-06-08"
description = "New committer: <a href=\"mailto:gbe@FreeBSD.org\">Gordon Bergling</a> (doc)"

[[news]]
date = "2020-06-02"
title = "FreeBSD 2020 Community Survey"
description = "The <a href=\"https://www.research.net/r/freebsd-2020-community-survey\">FreeBSD 2020 Community Survey</a> is now available. Please feel free to share the survey URL with your employer, co-workers, friends, or any other community members interested in FreeBSD. Survey closes 17:00 UTC on June 16th (Tuesday 10am PDT)."

[[news]]
date = "2020-05-29"
title = "FreeBSD 11.4-RC2 Available"
description = "The second RC build for the FreeBSD 11.4 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-May/092320.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-05-22"
title = "FreeBSD 11.4-RC1 Available"
description = "The first RC build for the FreeBSD 11.4 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-May/092304.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-05-16"
title = "FreeBSD 11.4-BETA2 Available"
description = "The second BETA build for the FreeBSD 11.4 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-May/092285.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-05-16"
title = "FreeBSD participates in Google Season of Docs"
description = "The FreeBSD Project is once again <a href=\"https://developers.google.com/season-of-docs/docs/participants/\">participating as a mentoring organization</a> in the <a href=\"https://developers.google.com/season-of-docs\">Google Season of Docs</a> program. The goal of the program is to bring open source and technical writers together. Technical writers spend three months working closely with open source communities to bring their expertise to the project's documentation. The list of available tasks and contact information is available on the <a href=\"https://wiki.freebsd.org/GoogleSeasonOfDocs\">FreeBSD wiki</a>."

[[news]]
date = "2020-05-09"
title = "FreeBSD 11.4-BETA1 Available"
description = "The first BETA build for the FreeBSD 11.4 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2020-May/092284.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2020-04-12"
title = "January-March 2020 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2020-01-2020-03.html\">January to March 2020 Status Report</a> is now available."

[[news]]
date = "2020-04-06"
description = "New committer: <a href=\"mailto:rscheff@FreeBSD.org\">Richard Scheffenegger</a> (src)"

[[news]]
date = "2020-04-01"
description = "New committer: <a href=\"mailto:tagattie@FreeBSD.org\">Hiroki Tagato</a> (ports)"

[[news]]
date = "2020-03-10"
description = "New committer: <a href=\"mailto:afedorov@FreeBSD.org\">Aleksandr Fedorov</a> (src)"

[[news]]
date = "2020-03-09"
description = "New committer: <a href=\"mailto:nick@FreeBSD.org\">Nick O'Brien</a> (src)"

[[news]]
date = "2020-02-18"
description = "New committer: <a href=\"mailto:salvadore@FreeBSD.org\">Lorenzo Salvadore</a> (ports)"

[[news]]
date = "2020-02-10"
description = "New committer: <a href=\"mailto:freqlabs@FreeBSD.org\">Ryan Moeller</a> (src)"

[[news]]
date = "2020-01-27"
description = "New committer: <a href=\"mailto:alfredo@FreeBSD.org\">Alfredo Dal'Ava Júnior</a> (src)"

[[news]]
date = "2020-01-27"
title = "October-December 2019 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2019-10-2019-12.html\">October to December 2019 Status Report</a> is now available."

[[news]]
date = "2020-01-21"
title = "Translate FreeBSD's official articles and books on Weblate"
description = "In order to make the process of translating <a href=\"https://www.freebsd.org/docs/books.html\">FreeBSD's official articles and books</a> more accessible to new contributors, the project is adopting <a href=\"https://weblate.org/\">Weblate</a> as its web-based continuous localization platform. This tool has been in use for some months by some of our translation teams (pt_BR, es_ES and zh_CN) and due to the excellent results obtained and the maturity of the workflow adopted, we believe we are ready to open it to new collaborators. With the adoption of this new tool the translation process has become quite simple, and anyone willing to donate a few minutes to the project can contribute to it! If you are interested in contributing to the documentation project by translating official documents you can get more information at our <a href=\"https://wiki.freebsd.org/DocTranslationOnWeblate\"> wiki</a> and by reading the <a href=\"https://lists.freebsd.org/pipermail/freebsd-translators/2019-December/000161.html\"> announcement</a> sent to freebsd-translators list."

[[news]]
date = "2020-01-10"
description = "New committer: <a href=\"mailto:mikael@FreeBSD.org\">Mikaël Urankar</a> (ports)"

[[news]]
date = "2020-01-02"
description = "New committer: <a href=\"mailto:lbartoletti@FreeBSD.org\">Loïc Bartoletti</a> (ports)"

[[news]]
date = "2019-11-25"
title = "July-September 2019 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2019-07-2019-09.html\">July to September 2019 Status Report</a> is now available."

[[news]]
date = "2019-11-04"
title = "FreeBSD 12.1-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/12.1R/announce.html\">FreeBSD 12.1-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/12.1R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/12.1R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 12.1. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2019-10-18"
title = "FreeBSD 12.1-RC2 Available"
description = "The second RC build for the FreeBSD 12.1 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-October/091616.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-10-11"
title = "FreeBSD 12.1-RC1 Available"
description = "The first RC build for the FreeBSD 12.1 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-October/091599.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-10-11"
description = "New committer: <a href=\"mailto:samm@FreeBSD.org\">Alex Samorukov</a> (ports)"

[[news]]
date = "2019-10-04"
title = "FreeBSD 12.1-BETA3 Available"
description = "The third BETA build for the FreeBSD 12.1 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-October/091567.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-09-29"
description = "New committer: <a href=\"mailto:0mp@FreeBSD.org\">Mateusz Piotrowski</a> (doc)"

[[news]]
date = "2019-09-28"
title = "FreeBSD 12.1-BETA2 Available"
description = "The second BETA build for the FreeBSD 12.1 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-September/091555.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-09-26"
description = "New committer: <a href=\"mailto:kaktus@FreeBSD.org\">Pawel Biernacki</a> (src)"

[[news]]
date = "2019-09-20"
title = "FreeBSD 12.1-BETA1 Available"
description = "The first BETA build for the FreeBSD 12.1 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-September/091533.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-09-15"
description = "New committer: <a href=\"mailto:dmgk@FreeBSD.org\">Dmitri Goutnik</a> (ports)"

[[news]]
date = "2019-09-10"
description = "New committer: <a href=\"mailto:sg@FreeBSD.org\">Stephen Gregoratto</a> (src). Working to improve the FreeBSD Project's user manuals for <a href=\"https://developers.google.com/season-of-docs/\"> Google's Season of Docs</a>"

[[news]]
date = "2019-08-28"
description = "New committer: <a href=\"mailto:fox@FreeBSD.org\">Santhosh Raju</a> (ports)"

[[news]]
date = "2019-08-25"
title = "April-June 2019 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2019-04-2019-06.html\">April to June 2019 Status Report</a> is now available."

[[news]]
date = "2019-07-16"
title = "FreeBSD.org Outgoing Email System Changes"
description = "Due to circumstances beyond our control, we need to change the outgoing SMTP server address for FreeBSD.org email. We are aware that there are going to be challenges due to SMTP sender reputation systems. Please see <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2019-July/001892.html\">this announcement</a> for additional information."

[[news]]
date = "2019-07-09"
title = "FreeBSD 11.3-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/11.3R/announce.html\">FreeBSD 11.3-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/11.3R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/11.3R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 11.3. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2019-06-28"
title = "FreeBSD 11.3-RC3 Available"
description = "The third RC build for the FreeBSD 11.3 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-June/091312.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-06-21"
title = "FreeBSD 11.3-RC2 Available"
description = "The second RC build for the FreeBSD 11.3 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-June/091293.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-06-14"
title = "FreeBSD 11.3-RC1 Available"
description = "The first RC build for the FreeBSD 11.3 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-June/091281.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-06-07"
title = "FreeBSD 11.3-BETA3 Available"
description = "The third BETA build for the FreeBSD 11.3 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-June/091257.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-06-04"
title = "January-March 2019 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2019-01-2019-03.html\">January to March 2019 Status Report</a> is now available."

[[news]]
date = "2019-05-31"
title = "FreeBSD 11.3-BETA2 Available"
description = "The second BETA build for the FreeBSD 11.3 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-May/091227.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-05-31"
description = "New committer: <a href=\"mailto:bdragon@FreeBSD.org\">Brandon Bergren</a> (src)"

[[news]]
date = "2019-05-29"
description = "New committer: <a href=\"mailto:chs@FreeBSD.org\">Chuck Silvers</a> (src)"

[[news]]
date = "2019-05-28"
description = "New committer: <a href=\"mailto:scottph@FreeBSD.org\">D Scott Phillips</a> (src)"

[[news]]
date = "2019-05-24"
title = "FreeBSD 11.3-BETA1 Available"
description = "The first BETA build for the FreeBSD 11.3 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-May/091210.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2019-05-16"
description = "New committer: <a href=\"mailto:carlavilla@FreeBSD.org\">Sergio Carlavilla Delgado</a> (docs, Spanish translator)"

[[news]]
date = "2019-04-30"
description = "New committer: <a href=\"mailto:dougm@FreeBSD.org\">Doug Moore</a> (src)"

[[news]]
date = "2019-04-28"
title = "<a href=\"https://lists.freebsd.org/pipermail/freebsd-pkgbase/2019-April/000396.html\">CFT     FreeBSD pkg base</a> now available"
description = "FreeBSD is testing a new approach to pkgbase. See the <a href=\"https://lists.freebsd.org/pipermail/freebsd-pkgbase/2019-April/000396.html\">CFT FreeBSD pkg base</a> message for additional details."

[[news]]
date = "2019-04-27"
title = "FreeBSD 2019 Community Survey"
description = "The FreeBSD 2019 Community Survey is now available (update: closed on 2019-05-13). Please feel free to share the survey URL with your employer, co-workers, friends, or any other community members interested in FreeBSD. Survey closes midnight May 13 UTC (Monday 5pm PDT)."

[[news]]
date = "2019-04-19"
title = "<a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-April/090915.html\">CFT   FreeBSD + New Upstream ZFS (ZoL)</a>"
description = "FreeBSD is testing a new upstream for its ZFS implementation, ZFS on Linux. Images for FreeBSD 12-STABLE and 13-CURRENT images are now available for testing FreeBSD + ZoL (ZFS on Linux). Please see the <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2019-April/090915.html\">CFT FreeBSD + ZoL</a> for testing details."

[[news]]
date = "2019-04-14"
description = "New committer: <a href=\"mailto:pkubaj@FreeBSD.org\">Piotr Kubaj</a> (ports)"

[[news]]
date = "2019-04-14"
description = "Enhanced commit privileges: <a href=\"mailto:pfg@FreeBSD.org\">Pedro Giffuni</a> (ports, src)"

[[news]]
date = "2019-03-20"
description = "New committer: <a href=\"mailto:mhorne@FreeBSD.org\">Mitchell Horne</a> (src)"

[[news]]
date = "2019-02-01"
description = "New committer: <a href=\"mailto:kai@FreeBSD.org\">Kai Knoblich</a> (ports)"

[[news]]
date = "2019-01-19"
description = "New committer: <a href=\"mailto:johalun@FreeBSD.org\">Johannes Lundberg</a> (src)"

[[news]]
date = "2018-12-24"
title = "January-September 2018 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2018-01-2018-09.html\">January to September 2018 Status Report</a> is now available."

[[news]]
date = "2018-12-11"
title = "FreeBSD 12.0-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/12.0R/announce.html\">FreeBSD 12.0-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/12.0R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/12.0R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 12.0. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2018-12-11"
title = "Cirrus CI Support for FreeBSD"
description = "FreeBSD support was recently added to the <a href=\"https://cirrus-ci.org/\">Cirrus CI</a> system. Cirrus CI makes your development cycle fast, efficient, and secure by leveraging modern cloud technologies. Cirrus CI scales with your team and makes shipping software faster and cheaper. Follow the <a href=\"https://cirrus-ci.org/guide/FreeBSD/\">FreeBSD Virtual Machines</a> guide to find out more."

[[news]]
date = "2018-12-01"
title = "FreeBSD 12.0-RC3 Available"
description = "The third RC build for the FreeBSD 12.0 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-December/090138.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-11-25"
title = "FreeBSD 12.0-RC2 Available"
description = "The second RC build for the FreeBSD 12.0 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-November/090068.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-11-17"
title = "FreeBSD 12.0-RC1 Available"
description = "The first RC build for the FreeBSD 12.0 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-November/090020.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-11-10"
title = "FreeBSD 12.0-BETA4 Available"
description = "The fourth BETA build for the FreeBSD 12.0 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-November/089982.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-11-03"
title = "FreeBSD 12.0-BETA3 Available"
description = "The third BETA build for the FreeBSD 12.0 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-November/089945.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-10-27"
title = "FreeBSD 12.0-BETA2 Available"
description = "The second BETA build for the FreeBSD 12.0 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-October/089897.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-10-20"
title = "FreeBSD 12.0-BETA1 Available"
description = "The first BETA build for the FreeBSD 12.0 release cycle is now available. ISO images for the amd64, armv6, armv7, arm64, i386, powerpc, powerpc64, powerpcspe and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-October/089821.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-10-16"
description = "New committer: <a href=\"mailto:tmunro@FreeBSD.org\">Thomas Munro</a> (src)"

[[news]]
date = "2018-10-09"
description = "New committer: <a href=\"mailto:yuripv@FreeBSD.org\">Yuri Pankov</a> (src)"

[[news]]
date = "2018-10-08"
description = "New committer: <a href=\"mailto:egypcio@FreeBSD.org\">Vinícius Zavam</a> (ports)"

[[news]]
date = "2018-10-01"
description = "New committer: <a href=\"mailto:rigoletto@FreeBSD.org\">Alexandre C. Guimaraes</a> (ports)"

[[news]]
date = "2018-09-21"
description = "New committer: <a href=\"mailto:skozlov@FreeBSD.org\">Sergey Kozlov</a> (ports)"

[[news]]
date = "2018-09-06"
description = "New committer: <a href=\"mailto:manu@FreeBSD.org\">Emmanuel Vadot</a> (ports)"

[[news]]
date = "2018-09-02"
description = "New committer: <a href=\"mailto:kbowling@FreeBSD.org\">Kevin Bowling</a> (ports)"

[[news]]
date = "2018-08-09"
description = "Enhanced commit privileges: <a href=\"mailto:lwhsu@FreeBSD.org\">Li-Wen Hsu</a> (ports, src)"

[[news]]
date = "2018-07-16"
description = "New committer: <a href=\"mailto:jhixson@FreeBSD.org\">John Hixson</a> (ports)"

[[news]]
date = "2018-07-04"
title = "New FreeBSD Core Team Elected"
description = "Active committers to the project have elected your tenth FreeBSD Core Team. For details, refer to the <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2018-July/001836.html\">official announcement</a>."

[[news]]
date = "2018-06-30"
description = "New committer: <a href=\"mailto:jsm@FreeBSD.org\">Jesper Schmitz Mouridsen</a> (ports)"

[[news]]
date = "2018-06-27"
title = "FreeBSD 11.2-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/11.2R/announce.html\">FreeBSD 11.2-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/11.2R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/11.2R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 11.2. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2018-06-27"
description = "New committer: <a href=\"mailto:bwidawsk@FreeBSD.org\">Ben Widawsky</a> (src)"

[[news]]
date = "2018-06-19"
title = "National FreeBSD Day: FreeBSD is 25 years old today!"
description = "On June 19, 1993 the name FreeBSD was officially agreed on and has been used ever since. <a href=\"http://www.nationalfreebsdday.org\">Find out more</a> about how to celebrate this important day with us."

[[news]]
date = "2018-06-16"
title = "FreeBSD 11.2-RC3 Available"
description = "The third RC build for the FreeBSD 11.2 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-June/089116.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-06-16"
description = "New committer: <a href=\"mailto:0mp@FreeBSD.org\">Mateusz Piotrowski</a> (ports)"

[[news]]
date = "2018-06-09"
title = "FreeBSD 11.2-RC2 Available"
description = "The second RC build for the FreeBSD 11.2 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-June/089099.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-06-08"
title = "Service outage"
description = "Portions of the FreeBSD cluster will be offline Saturday, June 9th for an extended maintenance window for electrical work. Services will be affected, most notably mailing list traffic and a portion of our web services. The maintenance window begins June 9th at 11:00 UTC (04:00 US-Pacific) and extends though 20:00 UTC (13:00 US-Pacific)"

[[news]]
date = "2018-06-02"
title = "FreeBSD 11.2-RC1 Available"
description = "The first RC build for the FreeBSD 11.2 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-June/089053.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-05-26"
title = "FreeBSD 11.2-BETA3 Available"
description = "The third BETA build for the FreeBSD 11.2 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-May/089001.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-05-22"
description = "New committer: <a href=\"mailto:leitao@FreeBSD.org\">Breno Leitao</a> (src)"

[[news]]
date = "2018-05-21"
description = "New committer: <a href=\"mailto:luporl@FreeBSD.org\">Leandro Lupori</a> (src)"

[[news]]
date = "2018-05-19"
title = "FreeBSD 11.2-BETA2 Available"
description = "The second BETA build for the FreeBSD 11.2 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-May/088958.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-05-15"
description = "New committer: <a href=\"mailto:arrowd@FreeBSD.org\">Gleb Popov</a> (ports)"

[[news]]
date = "2018-05-12"
title = "FreeBSD 11.2-BETA1 Available"
description = "The first BETA build for the FreeBSD 11.2 release cycle is now available. ISO images for the amd64, armv6, arm64, i386, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2018-May/088899.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2018-04-17"
description = "New committer: <a href=\"mailto:sef@freeBSD.org\">Sean Eric Fagan</a> (src)"

[[news]]
date = "2018-04-07"
description = "New committer: <a href=\"mailto:thj@FreeBSD.org\">Tom Jones</a> (src)"

[[news]]
date = "2018-04-04"
description = "New committer: <a href=\"mailto:ram@FreeBSD.org\">Ram Kishore Vegesna </a> (src)"

[[news]]
date = "2018-03-23"
description = "New committer: <a href=\"mailto:mfechner@FreeBSD.org\">Matthias Fechner</a> (ports)"

[[news]]
date = "2018-03-17"
description = "New committer: <a href=\"mailto:ericbsd@FreeBSD.org\">Eric Turgeon</a> (ports)"

[[news]]
date = "2018-03-16"
description = "New committer: <a href=\"mailto:vmaffione@FreeBSD.org\">Vincenzo Maffione</a> (src)"

[[news]]
date = "2018-03-14"
description = "New committer: <a href=\"mailto:meta@FreeBSD.org\">Koichiro Iwao</a> (ports)"

[[news]]
date = "2018-03-03"
description = "New committer: <a href=\"mailto:fernape@FreeBSD.org\">Fernando Apesteguia</a> (ports)"

[[news]]
date = "2018-03-01"
description = "New committer: <a href=\"mailto:dteske@FreeBSD.org\">Devin Teske</a> (ports)"

[[news]]
date = "2018-02-14"
title = "FreeBSD Project to participate in Google Summer of Code 2018"
description = "The FreeBSD Project is pleased to announce its participation in Google's 2018 Summer of Code program, which funds summer students to participate in open source projects. This will be the FreeBSD Project's fourteenth year in the program, having mentored over 210 successful students through summer-long coding projects between 2005 and 2017. Past successful projects have included improvements to Linux ABI emulation, NFSv4 ACLs, TCP regression testing, FUSE file system support, and countless other projects. Many students go on to become FreeBSD developers, as well as participating in FreeBSD developer events around the world through continuing support from the FreeBSD Foundation. Prospective participants are invited to apply; more information is available, including proposal and deadline information, on the <a href=\"https://www.freebsd.org/projects/summerofcode.html\">FreeBSD Summer Projects page</a>."

[[news]]
date = "2018-02-08"
description = "New committer: <a href=\"mailto:slavash@FreeBSD.org\">Slava Shwartsman</a> (src)"

[[news]]
date = "2018-01-25"
description = "New committer: <a href=\"mailto:jeb@FreeBSD.org\">Jeb Cramer</a> (src)"

[[news]]
date = "2018-01-04"
title = "About the Meltdown and Spectre attacks"
description = "About the <a href=\"https://meltdownattack.com/\">Meltdown</a> and <a href=\"https://spectreattack.com/\">Spectre</a> attacks: FreeBSD was made aware of the problems in late December 2017. We're working with CPU vendors and the published papers on these attacks to mitigate them on FreeBSD. Due to the fundamental nature of the attacks, no estimate is yet available for the publication date of patches."

[[news]]
date = "2017-12-25"
title = "July-September 2017 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2017-07-2017-09.html\">July to September 2017 Status Report</a> is now available."

[[news]]
date = "2017-11-11"
description = "New committer: <a href=\"mailto:jwb@FreeBSD.org\">Jason W. Bacon</a> (ports)"

[[news]]
date = "2017-10-30"
description = "New committer: <a href=\"mailto:arichardson@FreeBSD.org\">Alex Richardson</a> (src)"

[[news]]
date = "2017-10-29"
description = "New committer: <a href=\"mailto:yuri@FreeBSD.org\">Yuri Victorovich</a> (ports)"

[[news]]
date = "2017-10-04"
title = "FreeBSD 10.4-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/10.4R/announce.html\">FreeBSD 10.4-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/10.4R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/10.4R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 10.4. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2017-09-27"
title = "April-June 2017 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2017-04-2017-06.html\">April to June 2017 Status Report</a> is now available."

[[news]]
date = "2017-09-23"
title = "FreeBSD 10.4-RC2 Available"
description = "The second RC build for the FreeBSD 10.4 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-September/087848.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-09-19"
description = "New committer: <a href=\"mailto:eugen@FreeBSD.org\">Eugene Grosbein</a> (src)"

[[news]]
date = "2017-09-18"
description = "New committer: <a href=\"mailto:ygy@FreeBSD.org\">Guangyuan Yang</a> (doc)"

[[news]]
date = "2017-09-17"
title = "FreeBSD 10.4-RC1 Available"
description = "The first RC build for the FreeBSD 10.4 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-September/087817.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-09-11"
description = "New committer: <a href=\"mailto:leres@FreeBSD.org\">Craig Leres</a> (ports)"

[[news]]
date = "2017-09-09"
description = "New committer: <a href=\"mailto:dch@FreeBSD.org\">Dave Cottlehuber</a> (ports)"

[[news]]
date = "2017-09-09"
title = "FreeBSD 10.4-BETA4 Available"
description = "The fourth BETA build for the FreeBSD 10.4 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-September/087791.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-09-08"
description = "New committer: <a href=\"mailto:adridg@FreeBSD.org\">Adriaan de Groot</a> (ports)"

[[news]]
date = "2017-09-06"
description = "New committer: <a href=\"mailto:chuck@FreeBSD.org\">Chuck Tuffli</a> (src)"

[[news]]
date = "2017-09-02"
description = "New committer: <a href=\"mailto:shurd@FreeBSD.org\">Stephen Hurd</a> (src)"

[[news]]
date = "2017-09-02"
title = "FreeBSD 10.4-BETA3 Available"
description = "The third BETA build for the FreeBSD 10.4 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-September/087748.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-09-02"
description = "New committer: <a href=\"mailto:kibab@FreeBSD.org\">Ilya Bakulin</a> (src)"

[[news]]
date = "2017-08-28"
description = "New committer: <a href=\"mailto:fsu@FreeBSD.org\">Fedor Uporov</a> (src)"

[[news]]
date = "2017-08-26"
title = "FreeBSD 10.4-BETA2 Available"
description = "The second BETA build for the FreeBSD 10.4 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-August/087708.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-08-25"
description = "New committer: <a href=\"mailto:pizzamig@FreeBSD.org\">Luca Pizzamiglio</a> (ports)"

[[news]]
date = "2017-08-19"
title = "FreeBSD 10.4-BETA1 Available"
description = "The first BETA build for the FreeBSD 10.4 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-August/087682.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-07-26"
title = "FreeBSD 11.1-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/11.1R/announce.html\">FreeBSD 11.1-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/11.1R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/11.1R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 11.1. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2017-07-18"
description = "New committer: <a href=\"mailto:mw@FreeBSD.org\">Marcin Wojtas</a> (src)"

[[news]]
date = "2017-07-15"
title = "FreeBSD 11.1-RC3 Available"
description = "The third RC build for the FreeBSD 11.1 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-July/087407.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-07-12"
description = "New committer: <a href=\"mailto:mjoras@FreeBSD.org\">Matt Joras</a> (src)"

[[news]]
date = "2017-07-08"
title = "FreeBSD 11.1-RC2 Available"
description = "The second RC build for the FreeBSD 11.1 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-July/087368.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-07-01"
title = "FreeBSD 11.1-RC1 Available"
description = "The first RC build for the FreeBSD 11.1 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-July/087340.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-06-24"
title = "FreeBSD 11.1-BETA3 Available"
description = "The third BETA build for the FreeBSD 11.1 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-June/087303.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-06-20"
description = "New committer: <a href=\"mailto:kevans@FreeBSD.org\">Kyle Evans</a> (src)"

[[news]]
date = "2017-06-17"
title = "FreeBSD 11.1-BETA2 Available"
description = "The second BETA build for the FreeBSD 11.1 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-June/087277.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-06-10"
title = "FreeBSD 11.1-BETA1 Available"
description = "The first BETA build for the FreeBSD 11.1 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2017-June/087242.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2017-06-07"
description = "New committer: <a href=\"mailto:rlibby@FreeBSD.org\">Ryan Libby</a> (src)"

[[news]]
date = "2017-05-31"
description = "New committer: <a href=\"mailto:ultima@FreeBSD.org\">Richard Gallamore</a> (ports)"

[[news]]
date = "2017-05-16"
description = "New committer: <a href=\"mailto:joneum@FreeBSD.org\">Jochen Neumeister</a> (ports)"

[[news]]
date = "2017-05-15"
title = "January-March 2017 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2017-01-2017-03.html\">January to March 2017 Status Report</a> is now available."

[[news]]
date = "2017-05-03"
description = "New committer: <a href=\"mailto:dbaio@FreeBSD.org\">Danilo G. Baio</a> (ports)"

[[news]]
date = "2017-04-27"
description = "New committer: <a href=\"mailto:wulf@FreeBSD.org\">Vladimir Kondratyev</a> (src)"

[[news]]
date = "2017-04-18"
description = "New committer: <a href=\"mailto:bhughes@FreeBSD.org\">Bradley T. Hughes</a> (ports)"

[[news]]
date = "2017-03-04"
description = "New committer: <a href=\"mailto:eugen@FreeBSD.org\">Eugene Grosbein</a> (ports)"

[[news]]
date = "2017-03-03"
description = "Returning committer: <a href=\"mailto:rgrimes@FreeBSD.org\">Rodney W. Grimes</a> (src)"

[[news]]
date = "2017-02-27"
title = "FreeBSD Project to participate in Google Summer of Code 2017"
description = "The FreeBSD Project is pleased to announce its participation in Google's 2017 Summer of Code program, which funds summer students to participate in open source projects. This will be the FreeBSD Project's thirteenth year in the program, having mentored over 200 successful students through summer-long coding projects between 2005 and 2016. Past successful projects have included improvements to Linux ABI emulation, NFSv4 ACLs, TCP regression testing, FUSE file system support, and countless other projects. Many students go on to become FreeBSD developers, as well as participating in FreeBSD developer events around the world through continuing support from the FreeBSD Foundation. Prospective participants are invited to apply; more information is available, including proposal and deadline information, on the <a href=\"https://www.freebsd.org/projects/summerofcode.html\">FreeBSD Summer Projects page</a>."

[[news]]
date = "2017-02-13"
title = "October-December 2016 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2016-10-2016-12.html\">October to December 2016 Status Report</a> is now available."

[[news]]
date = "2017-02-10"
description = "New committer: <a href=\"mailto:mmokhi@FreeBSD.org\">Mahdi Mokhtari</a> (ports)"

[[news]]
date = "2017-02-08"
description = "New committer: <a href=\"mailto:tobik@FreeBSD.org\">Tobias Kortkamp</a> (ports)"

[[news]]
date = "2017-01-10"
description = "Enhanced commit privileges: <a href=\"mailto:dumbbell@FreeBSD.org\">Jean-Sébastien Pédron</a> (ports)"

[[news]]
date = "2017-01-09"
description = "New committer: <a href=\"mailto:rezny@FreeBSD.org\">Matthew Rezny</a> (ports)"

[[news]]
date = "2017-01-09"
description = "New committer: <a href=\"mailto:ler@FreeBSD.org\">Larry Rosenman</a> (ports)"

[[news]]
date = "2017-01-09"
description = "New committer: <a href=\"mailto:jmd@FreeBSD.org\">Johannes Dieterich</a> (ports)"

[[news]]
date = "2016-12-11"
description = "New committer: <a href=\"mailto:pstef@FreeBSD.org\">Piotr Paweł Stefaniak</a> (src)"

[[news]]
date = "2016-12-11"
description = "New committer: <a href=\"mailto:lifanov@FreeBSD.org\">Nikolai Lifanov</a> (ports)"

[[news]]
date = "2016-11-15"
description = "New committer: <a href=\"mailto:misha@FreeBSD.org\">Mikhail Pchelin</a> (ports)"

[[news]]
date = "2016-11-13"
title = "July-September 2016 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2016-07-2016-09.html\">July to September 2016 Status Report</a> is now available."

[[news]]
date = "2016-11-02"
description = "New committer: <a href=\"mailto:def@FreeBSD.org\">Konrad Witaszczyk</a> (src)"

[[news]]
date = "2016-11-02"
description = "New committer: <a href=\"mailto:dexterf@FreeBSD.org\">Michael Dexter</a> (doc)"

[[news]]
date = "2016-10-22"
description = "New committer: <a href=\"mailto:dab@FreeBSD.org\">David Bright</a> (src)"

[[news]]
date = "2016-10-10"
title = "FreeBSD 11.0-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/11.0R/announce.html\">FreeBSD 11.0-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/11.0R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/11.0R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 11.0. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2016-09-16"
description = "New committer: <a href=\"mailto:sevan@FreeBSD.org\">Sevan Janiyan</a> (doc)"

[[news]]
date = "2016-09-28"
title = "FreeBSD 11.0-RELEASE Status Update"
description = "The final 11.0-RELEASE is going to be rebuilt in order to address a few last-minute items that were discovered after the release tag. Please see the <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2016-September/001753.html\">official announcement</a> from the Release Engineering team for more information."

[[news]]
date = "2016-09-17"
description = "New committer: <a href=\"mailto:rcyu@FreeBSD.org\">Ruey-Cherng Yu</a> (doc)"

[[news]]
date = "2016-09-17"
description = "New committer: <a href=\"mailto:jrm@FreeBSD.org\">Joseph Mingrone</a> (ports)"

[[news]]
date = "2016-09-17"
title = "FreeBSD 11.0-RC3 Available"
description = "The third RC build for the FreeBSD 11.0 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-September/085645.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-08-25"
title = "FreeBSD 11.0-RC2 Available"
description = "The second RC build for the FreeBSD 11.0 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-August/085365.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-08-13"
title = "FreeBSD 11.0-RC1 Available"
description = "The first RC build for the FreeBSD 11.0 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-August/085277.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-08-10"
description = "New committer: <a href=\"mailto:tsoome@FreeBSD.org\">Toomas Soome</a> (src)"

[[news]]
date = "2016-08-10"
description = "The FreeBSD Core Team has released a <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2016-August/001739.html\">statement</a> about the recent freebsd-update and related vulnerabilities."

[[news]]
date = "2016-08-06"
title = "FreeBSD 11.0-BETA4 Available"
description = "The fourth BETA build for the FreeBSD 11.0 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-August/085186.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-07-30"
title = "FreeBSD 11.0-BETA3 Available"
description = "The third BETA build for the FreeBSD 11.0 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-July/085114.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-07-27"
title = "April-June 2016 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2016-04-2016-06.html\">April to June 2016 Status Report</a> is now available."

[[news]]
date = "2016-07-24"
title = "FreeBSD 11.0-BETA2 Available"
description = "The second BETA build for the FreeBSD 11.0 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-July/085059.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-07-19"
description = "New committer: <a href=\"mailto:mizhka@FreeBSD.org\">Michael Zhilin</a> (src)"

[[news]]
date = "2016-07-19"
description = "New committer: <a href=\"mailto:ivadasz@FreeBSD.org\">Imre Vadasz</a> (src)"

[[news]]
date = "2016-07-18"
description = "New committer: <a href=\"mailto:stevek@FreeBSD.org\">Stephen J. Kiernan</a> (src)"

[[news]]
date = "2016-07-11"
description = "New committer: <a href=\"mailto:cpm@FreeBSD.org\">Carlos J. Puga Medina</a> (ports)"

[[news]]
date = "2016-07-10"
title = "FreeBSD 11.0-BETA1 Available"
description = "The first BETA build for the FreeBSD 11.0 release cycle is now available. ISO images for the amd64, armv6, i386, aarch64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-July/084918.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-07-06"
title = "New FreeBSD Core Team elected"
description = "The FreeBSD Project is pleased to announce the completion of the 2016 Core Team election. The FreeBSD Core Team acts as the project's \"board of directors\" and is responsible for approving new src committers, resolving disputes between developers, appointing sub-committees for specific purposes (security officer, release engineering, port managers, webmaster, etc...), and making any other administrative or policy decisions as needed. The Core Team has been elected by FreeBSD developers every two years since 2000. The FreeBSD Core Team is glad to announce that <a href=\"mailto:matthew@FreeBSD.org\">Matthew Seaman</a> will continue the role of <a href=\"mailto:core-secretary@FreeBSD.org\">Core Team Secretary</a>. More information about the election (together with a list of the new members of the Core Team) can be found in the official <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2016-July/001732.html\">announcement</a>."

[[news]]
date = "2016-07-06"
description = "New committer: <a href=\"mailto:tcberner@FreeBSD.org\">Tobias C. Berner</a> (ports)"

[[news]]
date = "2016-07-01"
description = "New committer: <a href=\"mailto:badger@FreeBSD.org\">Eric Badger</a> (src)"

[[news]]
date = "2016-06-09"
description = "New committer: <a href=\"mailto:karels@FreeBSD.org\">Mike Karels</a> (src)"

[[news]]
date = "2016-06-04"
description = "New committer: <a href=\"mailto:tz@FreeBSD.org\">Torsten Zuehlsdorff</a> (ports)"

[[news]]
date = "2016-05-31"
description = "New committer: <a href=\"mailto:landonf@FreeBSD.org\">Landon Fuller</a> (src)"

[[news]]
date = "2016-05-09"
description = "New committer: <a href=\"mailto:woodsb02@FreeBSD.org\">Ben Woods</a> (ports)"

[[news]]
date = "2016-05-01"
title = "January-March 2016 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2016-01-2016-03.html\">January to March 2016 Status Report</a> is now available."

[[news]]
date = "2016-04-23"
description = "New committer: <a href=\"mailto:manu@FreeBSD.org\">Emmanuel Vadot</a> (src)"

[[news]]
date = "2016-04-04"
title = "FreeBSD 10.3-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/10.3R/announce.html\">FreeBSD 10.3-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/10.3R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/10.3R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 10.3. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2016-03-20"
title = "FreeBSD 10.3-RC3 Available"
description = "The third Release Candidate build for the FreeBSD 10.3 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-March/084424.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-03-13"
title = "FreeBSD 10.3-RC2 Available"
description = "The second Release Candidate build for the FreeBSD 10.3 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-March/084384.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-03-05"
title = "FreeBSD 10.3-RC1 Available"
description = "The first Release Candidate build for the FreeBSD 10.3 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-March/084296.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-03-01"
description = "New committer: <a href=\"mailto:cmt@FreeBSD.org\">Christoph Moench-Tegeder</a> (ports)"

[[news]]
date = "2016-03-01"
title = "FreeBSD Project to participate in Google Summer of Code 2016"
description = "The FreeBSD Project is pleased to announce its participation in Google's 2016 Summer of Code program, which funds summer students to participate in open source projects. This will be the FreeBSD Project's twelfth year in the program, having mentored over 180 successful students through summer-long coding projects between 2005 and 2015. Past successful projects have included improvements to Linux ABI emulation, NFSv4 ACLs, TCP regression testing, FUSE file system support, and countless other projects. Many students go on to become FreeBSD developers, as well as participating in FreeBSD developer events around the world through continuing support from the FreeBSD Foundation. Prospective participants are invited to apply; more information is available, including proposal and deadline information, on the <a href=\"https://www.freebsd.org/projects/summerofcode.html\">FreeBSD Summer Projects page</a>."

[[news]]
date = "2016-02-28"
description = "New committer: <a href=\"mailto:phil@FreeBSD.org\">Phil Shafer</a> (src)"

[[news]]
date = "2016-02-28"
title = "FreeBSD 10.3-BETA3 Available"
description = "The third BETA build for the FreeBSD 10.3 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-February/084238.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-02-24"
description = "New committer: <a href=\"mailto:jmcneill@FreeBSD.org\">Jared McNeill</a> (src)"

[[news]]
date = "2016-02-24"
description = "New committer: <a href=\"mailto:sgalabov@FreeBSD.org\">Stanislav Galabov</a> (src)"

[[news]]
date = "2016-02-17"
title = "FreeBSD and glibc (CVE-2015-7547)"
description = "Dag-Erling Smørgrav posts some information about <a href=\"https://blog.des.no/2016/02/freebsd-and-cve-2015-7547/\">FreeBSD and the recent glibc CVE-2015-7547 vulnerability</a>."

[[news]]
date = "2016-02-17"
title = "Analysis of FreeBSD Kernel by PVS-Studio"
description = "The development team of the PVS-Studio static code analyzer checked the FreeBSD kernel and <a href=\"http://www.viva64.com/en/b/0377/\">published an article</a> describing the most suspicious fragments."

[[news]]
date = "2016-02-14"
title = "FreeBSD 10.3-BETA2 Available"
description = "The second BETA build for the FreeBSD 10.3 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-February/084145.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-02-06"
title = "FreeBSD 10.3-BETA1 Available"
description = "The first BETA build for the FreeBSD 10.3 release cycle is now available. ISO images for the amd64, armv6, i386, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2016-February/084088.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2016-02-02"
description = "New committer: <a href=\"mailto:olivier@FreeBSD.org\">Olivier Cochard-Labbé</a> (ports)"

[[news]]
date = "2016-02-01"
title = "October–December Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2015-10-2015-12.html\">October–December, 2015 Status Report</a> is now available."

[[news]]
date = "2016-01-18"
description = "New committer: <a href=\"mailto:wma@FreeBSD.org\">Wojciech Macek</a> (src)"

[[news]]
date = "2016-01-06"
title = "FreeBSD Foundation Statement on Harassment"
description = "The FreeBSD Foundation has released its <a href=\"http://freebsdfoundation.blogspot.com/2016/01/freebsd-foundation-statement-on.html\">initial statement</a> about harassment in the FreeBSD community."

[[news]]
date = "2016-01-03"
description = "The FreeBSD Core team has released an <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2016-January/001691.html\">Initial Statement</a> about harassment in the FreeBSD Community"

[[news]]
date = "2015-12-13"
description = "New committer: <a href=\"mailto:anish@FreeBSD.org\">Anish Gupta</a> (src)"

[[news]]
date = "2015-11-13"
description = "New committer: <a href=\"mailto:rpokala@FreeBSD.org\">Ravi Pokala</a> (src)"

[[news]]
date = "2015-11-01"
description = "New committer: <a href=\"mailto:mmel@FreeBSD.org\">Michal Meloun</a> (src)"

[[news]]
date = "2015-10-26"
description = "New committer: <a href=\"mailto:jtl@FreeBSD.org\">Jonathan T. Looney</a> (src)"

[[news]]
date = "2015-10-25"
title = "July–September Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2015-07-2015-09.html\">July–September, 2015 Status Report</a> is now available."

[[news]]
date = "2015-10-23"
description = "New committer: <a href=\"mailto:skra@FreeBSD.org\">Svatopluk Kraus</a> (src)"

[[news]]
date = "2015-10-21"
description = "New committer: <a href=\"mailto:lidl@FreeBSD.org\">Kurt Lidl</a> (src)"

[[news]]
date = "2015-09-24"
description = "New committer: <a href=\"mailto:avos@FreeBSD.org\">Andriy Voskoboinyk</a> (src)"

[[news]]
date = "2015-08-13"
title = "FreeBSD 10.2-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/10.2R/announce.html\">FreeBSD 10.2-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/10.2R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/10.2R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 10.2. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2015-08-08"
description = "Enhanced commit privileges: <a href=\"mailto:araujo@FreeBSD.org\">Marcelo Araujo</a> (ports, src)"

[[news]]
date = "2015-08-07"
title = "FreeBSD 10.2-RC3 Available"
description = "The third RC build for the FreeBSD 10.2 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2015-August/083031.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2015-08-01"
title = "FreeBSD 10.2-RC2 Available"
description = "The second RC build for the FreeBSD 10.2 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2015-August/082966.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2015-07-30"
description = "Enhanced commit privileges: <a href=\"mailto:allanjude@FreeBSD.org\">Allan Jude</a> (src)"

[[news]]
date = "2015-07-27"
description = "New committer: <a href=\"mailto:junovitch@FreeBSD.org\">Jason Unovitch</a> (ports)"

[[news]]
date = "2015-07-26"
title = "April–June, 2015 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2015-04-2015-06.html\">April–June, 2015 Status Report</a> is now available."

[[news]]
date = "2015-07-24"
title = "FreeBSD 10.2-RC1 Available"
description = "The first RC build for the FreeBSD 10.2 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2015-July/082903.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2015-07-17"
title = "FreeBSD 10.2-BETA2 Available"
description = "The second BETA build for the FreeBSD 10.2 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2015-July/082771.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2015-07-11"
title = "FreeBSD 10.2-BETA1 Available"
description = "The first BETA build for the FreeBSD 10.2 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2015-July/082704.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2015-07-05"
description = "New committer: <a href=\"mailto:cem@FreeBSD.org\">Conrad Meyer</a> (src)"

[[news]]
date = "2015-06-26"
title = "Leap Seconds and FreeBSD Article"
description = "A new article, <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/articles/leap-seconds/article.html\">FreeBSD Support for Leap Seconds</a>, gives a quick overview of leap second handling. The next leap second will occur at 2015-Jun-30 23:59:60 UTC."

[[news]]
date = "2015-05-24"
description = "New committer: <a href=\"mailto:brnrd@FreeBSD.org\">Bernard Spil</a> (ports)"

[[news]]
date = "2015-04-30"
title = "January–March, 2015 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2015-01-2015-03.html\">January–March, 2015 Status Report</a> is now available."

[[news]]
date = "2015-04-27"
description = "New committer: <a href=\"mailto:oshogbo@FreeBSD.org\">Mariusz Zaborski</a> (src)"

[[news]]
date = "2015-04-21"
description = "New committer: <a href=\"mailto:mmoll@FreeBSD.org\">Michael Moll</a> (ports)"

[[news]]
date = "2015-04-02"
description = "Enhanced commit privileges: <a href=\"mailto:mat@FreeBSD.org\">Mathieu Arnold</a> (ports, doc)"

[[news]]
date = "2015-03-31"
description = "New committer: <a href=\"mailto:mahrens@FreeBSD.org\">Matthew Ahrens</a> (src)"

[[news]]
date = "2015-03-22"
description = "New committer: <a href=\"mailto:kp@FreeBSD.org\">Kristof Provost</a> (src)"

[[news]]
date = "2015-03-08"
description = "New committer: <a href=\"mailto:vangyzen@FreeBSD.org\">Eric van Gyzen</a> (src)"

[[news]]
date = "2015-03-08"
description = "New committer: <a href=\"mailto:jah@FreeBSD.org\">Jason Harmening</a> (src)"

[[news]]
date = "2015-02-11"
description = "New committer: <a href=\"mailto:whu@FreeBSD.org\">Wei Hu</a> (src)"

[[news]]
date = "2015-01-19"
description = "New committer: <a href=\"mailto:jbeich@FreeBSD.org\">Jan Beich</a> (ports)"

[[news]]
date = "2015-01-15"
title = "October–December, 2014 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2014-10-2014-12.html\">October–December, 2014 Status Report</a> is now available."

[[news]]
date = "2014-12-14"
description = "New committer: <a href=\"mailto:bofh@FreeBSD.org\">Muhammad Moinur Rahman</a> (ports)"

[[news]]
date = "2014-12-14"
description = "New committer: <a href=\"mailto:erj@FreeBSD.org\">Eric Joyner</a> (src)"

[[news]]
date = "2014-11-14"
title = "FreeBSD 10.1-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/10.1R/announce.html\">FreeBSD 10.1-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/10.1R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/10.1R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 10.1. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2014-11-02"
title = "FreeBSD 10.1-RC4 Available"
description = "The fourth RC build for the FreeBSD 10.1 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-November/080872.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-11-02"
title = "FreeBSD turns 21 today!"
description = "FreeBSD 1.0, the first official release of FreeBSD was announced 21 years ago today, on November 2nd, 1993. See the original announcement <a href=\"https://www.freebsd.org/releases/1.0/announce.html\">here</a>."

[[news]]
date = "2014-10-23"
title = "FreeBSD 10.1-RC3 Available"
description = "The third RC build for the FreeBSD 10.1 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-October/080701.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-10-23"
description = "New committer: <a href=\"mailto:bhd@FreeBSD.org\">Björn Heidotting</a> (doc)"

[[news]]
date = "2014-10-14"
title = "July–September, 2014 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2014-07-2014-09.html\">July–September, 2014 Status Report</a> is now available."

[[news]]
date = "2014-10-13"
title = "FreeBSD 10.1-RC2 Available"
description = "The second RC build for the FreeBSD 10.1 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-October/080555.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-10-12"
description = "New committer: <a href=\"mailto:arybchik@FreeBSD.org\">Andrew Rybchenko</a> (src)"

[[news]]
date = "2014-10-04"
title = "FreeBSD 10.1-RC1 Available"
description = "The first RC build for the FreeBSD 10.1 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-October/080453.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-09-28"
title = "FreeBSD 10.1-BETA3 Available"
description = "The third BETA build for the FreeBSD 10.1 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-September/080264.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-09-24"
description = "New committer: <a href=\"mailto:jch@FreeBSD.org\">Julien Charbon</a> (src)"

[[news]]
date = "2014-09-21"
title = "FreeBSD 10.1-BETA2 Available"
description = "The second BETA build for the FreeBSD 10.1 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-September/080177.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-09-14"
title = "FreeBSD 10.1-BETA1 Available"
description = "The first BETA build for the FreeBSD 10.1 release cycle is now available. ISO images for the amd64, armv6, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-September/080106.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-09-09"
description = "New committer: <a href=\"mailto:kami@FreeBSD.org\">Dominic Fandrey</a> (ports)"

[[news]]
date = "2014-08-21"
title = "FreeBSD ports tree was born twenty years ago, let's celebrate!"
description = "It all started with this commit from Jordan Hubbard on August 21, 1994: \"Commit my new ports make macros. Still not 100% complete yet by any means but fairly usable at this stage.\" A <a href=\"http://youtu.be/LiFq5D-zmBs\">video</a> was prepared to celebrate the event!"

[[news]]
date = "2014-08-14"
description = "New committer: <a href=\"mailto:alonso@FreeBSD.org\">Alonso Schaich</a> (ports)"

[[news]]
date = "2014-08-10"
description = "New committer: <a href=\"mailto:dvl@FreeBSD.org\">Dan Langille</a> (ports)"

[[news]]
date = "2014-07-31"
title = "The FreeBSD Foundation Semi-Annual Newsletter is Now Available"
description = "We are pleased to announce the publication of our 2014 Semi-Annual Newsletter! This is a chance for you to read about what we are doing to help make FreeBSD the best operating system available. Read about funded development projects to improve FreeBSD , sponsored conferences, developer and vendor summits to create face-to-face opportunities, research, how we are doing on our fundraising efforts, and so much more! The 2014 semi-annual newsletter is available online <a href=\"https://www.freebsdfoundation.org/press/2014jul-newsletter\">here</a>."

[[news]]
date = "2014-07-27"
description = "New committer: <a href=\"mailto:ngie@FreeBSD.org\">Ngie Cooper</a> (src)"

[[news]]
date = "2014-07-24"
title = "April-June, 2014 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2014-04-2014-06.html\">April-June, 2014 Status Report</a> is now available with 24 entries."

[[news]]
date = "2014-07-16"
title = "FreeBSD 9.2 EoL pushed back"
description = "To facilitate the upgrade process from FreeBSD 9.1 and 9.2 to FreeBSD 9.3, the EoL date for FreeBSD 9.2 has been pushed back to December 31, 2014."

[[news]]
date = "2014-07-16"
title = "FreeBSD 9.3-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/9.3R/announce.html\">FreeBSD 9.3-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/9.3R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/9.3R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 9.3. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2014-07-09"
title = "New Core Team Secretary: <a href=\"mailto:matthew@FreeBSD.org\">Matthew     Seaman</a>"
description = "The FreeBSD Core Team is glad to announce that <a href=\"mailto:matthew@FreeBSD.org\">Matthew Seaman</a> has assumed the role of <a href=\"mailto:core-secretary@FreeBSD.org\">Core Team Secretary</a>."

[[news]]
date = "2014-07-09"
title = "New FreeBSD Core Team elected"
description = "The FreeBSD Project is pleased to announce the completion of the 2014 Core Team election. The FreeBSD Core Team acts as the project's \"board of directors\" and is responsible for approving new src committers, resolving disputes between developers, appointing sub-committees for specific purposes (security officer, release engineering, port managers, webmaster, etc...), and making any other administrative or policy decisions as needed. The Core Team has been elected by FreeBSD developers every two years since 2000. More information about the election (together with a list of the new members of the Core Team) can be found in the official <a href=\"https://docs.FreeBSD.org/cgi/mid.cgi?20140709125554.7abb9ee4\">announcement</a>."

[[news]]
date = "2014-07-06"
title = "FreeBSD 9.3-RC3 Available"
description = "The third RC build for the FreeBSD -9.3 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-July/079239.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-07-04"
title = "Temporary WITH_NEW_XORG repositories available for FreeBSD 9 and 10"
description = "For people needing WITH_NEW_XORG, an alternate pkg(8) repository is now online. It contains a subset of packages affected by this knob. Please see the <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2014-July/001570.html\">announce mail</a> for more details."

[[news]]
date = "2014-06-28"
title = "FreeBSD 9.3-RC2 Available"
description = "The second RC build for the FreeBSD -9.3 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-June/079092.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-06-21"
title = "FreeBSD 9.3-RC1 Available"
description = "The first RC build for the FreeBSD -9.3 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-June/079024.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-06-17"
description = "New committer: <a href=\"mailto:robak@FreeBSD.org\">Bartek Rutkowski</a> (ports)"

[[news]]
date = "2014-06-14"
title = "FreeBSD 9.3-BETA3 Available"
description = "The third BETA build for the FreeBSD -9.3 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-June/078959.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-06-11"
description = "New committer: <a href=\"mailto:shurd@FreeBSD.org\">Stephen Hurd</a> (ports)"

[[news]]
date = "2014-06-07"
title = "FreeBSD 9.3-BETA2 Available"
description = "The second BETA build for the FreeBSD -9.3 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-June/078864.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-06-01"
title = "FreeBSD 9.3-BETA1 Available"
description = "The first BETA build for the FreeBSD -9.3 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-June/078827.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-05-29"
description = "New committer: <a href=\"mailto:pkelsey@FreeBSD.org\">Patrick Kelsey</a> (src)"

[[news]]
date = "2014-05-17"
description = "New committer: <a href=\"mailto:allanjude@FreeBSD.org\">Allan Jude</a> (doc)"

[[news]]
date = "2014-05-07"
description = "New committer: <a href=\"mailto:kadesai@FreeBSD.org\">Kashyap Desai</a> (src)"

[[news]]
date = "2014-05-07"
description = "New committer: <a href=\"mailto:slm@FreeBSD.org\">Stephen McConnell</a> (src)"

[[news]]
date = "2014-04-24"
description = "New committer: <a href=\"mailto:pi@FreeBSD.org\">Kurt Jaeger</a> (ports)"

[[news]]
date = "2014-04-17"
title = "January-March, 2014 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2014-01-2014-03.html\">January-March, 2014 Status Report</a> is now available with 41 entries."

[[news]]
date = "2014-04-07"
description = "New committer: <a href=\"mailto:xmj@FreeBSD.org\">Johannes Jost Meixner</a> (ports)"

[[news]]
date = "2014-03-11"
title = "FreeBSD Project to participate in Google Summer of Code 2014"
description = "The FreeBSD Project is pleased to announce its participation in Google's 2014 Summer of Code program, which funds summer students to participate in open source projects. This will be the FreeBSD Project's tenth year in the program, having mentored over 160 successful students through summer-long coding projects between 2005 and 2013. Past successful projects have included improvements to Linux ABI emulation, NFSv4 ACLs, TCP regression testing, FUSE file system support, and countless other projects. Many students go on to become FreeBSD developers, as well as participating in FreeBSD developer events around the world through continuing support from the FreeBSD Foundation. Prospective participants are invited to apply; more information is available, including proposal and deadline information, on the <a href=\"https://www.freebsd.org/projects/summerofcode.html\">FreeBSD Summer Projects page</a>."

[[news]]
date = "2014-02-10"
title = "FreeBSD Journal First Edition Available"
description = "We are pleased to announce the availability of the FreeBSD Journal! It is the new online Journal, that the FreeBSD Foundation is publishing, that is all about FreeBSD. Click <a href=\"http://freebsdjournal.com/\">here</a> to find out how to get the first issue that is focused on FreeBSD 10."

[[news]]
date = "2014-01-25"
title = "October-December, 2013 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2013-10-2013-12.html\">October-December, 2013 Status Report</a> is now available with 37 entries."

[[news]]
date = "2014-01-23"
description = "New committer: <a href=\"mailto:rodrigo@FreeBSD.org\">Rodrigo Osorio</a> (ports)"

[[news]]
date = "2014-01-21"
description = "New committer: <a href=\"mailto:tychon@FreeBSD.org\">Tycho Nightingale</a> (src)"

[[news]]
date = "2014-01-21"
description = "New committer: <a href=\"mailto:grembo@FreeBSD.org\">Michael Gmelin</a> (ports)"

[[news]]
date = "2014-01-20"
title = "FreeBSD 10.0-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/10.0R/announce.html\">FreeBSD 10.0-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/10.0R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/10.0R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 10.0. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2014-01-20"
description = "Enhanced commit privileges: <a href=\"mailto:jgh@FreeBSD.org\">Jason Helfman</a> (ports, doc)"

[[news]]
date = "2014-01-15"
description = "Enhanced commit privileges: <a href=\"mailto:skreuzer@FreeBSD.org\">Steven Kreuzer</a> (ports, doc)"

[[news]]
date = "2014-01-13"
description = "Returning committer: <a href=\"mailto:bmah@FreeBSD.org\">Bruce A. Mah</a> (ports)"

[[news]]
date = "2014-01-10"
description = "New committer: <a href=\"mailto:riggs@FreeBSD.org\">Thomas Zander</a> (ports)"

[[news]]
date = "2014-01-09"
title = "FreeBSD 10.0-RC5 Available"
description = "The fifth RC build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-January/076800.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2014-01-02"
title = "FreeBSD 10.0-RC4 Available"
description = "The fourth RC build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2014-January/076681.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-12-26"
title = "FreeBSD 10.0-RC3 Available"
description = "The third RC build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-December/076590.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-12-18"
description = "Enhanced commit privileges: <a href=\"mailto:ganbold@FreeBSD.org\">Ganbold Tsagaankhuu</a> (doc, src)"

[[news]]
date = "2013-12-16"
description = "New committer: <a href=\"mailto:milki@FreeBSD.org\">Jonathan Chu</a> (ports)"

[[news]]
date = "2013-12-16"
description = "Enhanced commit privileges: <a href=\"mailto:bdrewery@FreeBSD.org\">Bryan Drewery</a> (ports, src)"

[[news]]
date = "2013-12-16"
title = "FreeBSD 10.0-RC2 Available"
description = "The second RC build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-December/076480.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-12-09"
title = "FreeBSD 10.0-RC1 Available"
description = "The first RC build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-December/076231.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-12-09"
title = "EuroBSDcon 2013 Developer Summit Report"
description = "A <a href=\"https://www.freebsd.org/news/status/report-2013-09-devsummit.html\">special status report on the EuroBSDcon 2013 FreeBSD Developer Summit</a> is now available with 13 entries."

[[news]]
date = "2013-12-03"
title = "FreeBSD 10.0-BETA4 Available"
description = "The fourth BETA build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-December/076040.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-11-27"
description = "New committer: <a href=\"mailto:royger@FreeBSD.org\">Roger Pau Monné</a> (src)"

[[news]]
date = "2013-11-08"
description = "New committer: <a href=\"mailto:alexey@FreeBSD.org\">Alexey Degtyarev</a> (ports)"

[[news]]
date = "2013-11-05"
title = "FreeBSD 10.0-BETA3 Available"
description = "The third BETA build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-November/075704.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-11-02"
description = "New committer: <a href=\"mailto:jmmv@FreeBSD.org\">Julio Merino</a> (src)"

[[news]]
date = "2013-10-30"
title = "Official Binary Packages for Pkg Available"
description = "Official binary packages are now available for Pkg for FreeBSD 8.3, 8.4, 9.1, 9.2, 10.0 and head. See the <a href=\"https://lists.freebsd.org/pipermail/freebsd-pkg/2013-October/000107.html\">announcement</a> for more information."

[[news]]
date = "2013-10-28"
title = "FreeBSD 10.0-BETA2 Available"
description = "The second BETA build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-October/075591.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-10-20"
title = "July-September, 2013 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2013-07-2013-09.html\">July-September, 2013 Status Report</a> is now available with 30 entries."

[[news]]
date = "2013-10-14"
title = "FreeBSD 10.0-BETA1 Available"
description = "The first BETA build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-October/075504.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-10-09"
description = "New committer: <a href=\"mailto:edavis@FreeBSD.org\">Eric Davis</a> (src)"

[[news]]
date = "2013-10-07"
title = "FreeBSD 10.0-ALPHA5 Available"
description = "The fifth ALPHA build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-current/2013-October/045097.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-09-30"
title = "FreeBSD 9.2-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/9.2R/announce.html\">FreeBSD 9.2-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/9.2R/relnotes.html\">Release Notes</a> <a href=\"https://www.freebsd.org/releases/9.2R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 9.2. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2013-09-29"
title = "FreeBSD 10.0-ALPHA4 Available"
description = "The fourth ALPHA build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-current/2013-September/044951.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-09-23"
description = "New committer: <a href=\"mailto:danilo@FreeBSD.org\">Danilo Egêa Gondolfo</a> (ports)"

[[news]]
date = "2013-09-18"
title = "FreeBSD 10.0-ALPHA2 Available"
description = "The second ALPHA build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-current/2013-September/044676.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-09-13"
title = "FreeBSD 10.0-ALPHA1 Available"
description = "The first ALPHA build for the FreeBSD -10.0 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-current/2013-September/044522.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-09-12"
title = "FreeBSD 9.2-RC4 Available"
description = "The fourth RC build for the FreeBSD -9.2 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-September/075163.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-09-02"
description = "New committer: <a href=\"mailto:br@FreeBSD.org\">Ruslan Bukin</a> (src)"

[[news]]
date = "2013-09-02"
description = "New committer: <a href=\"mailto:zbb@FreeBSD.org\">Zbigniew Bodek</a> (src)"

[[news]]
date = "2013-08-26"
title = "FreeBSD 9.2-RC3 Available"
description = "The third RC build for the FreeBSD -9.2 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-August/074920.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-08-16"
title = "FreeBSD 9.2-RC2 Available"
description = "The second RC build for the FreeBSD -9.2 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-August/074756.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-08-06"
title = "The FreeBSD Foundation Semi-Annual Newsletter is Now Available"
description = "We are pleased to announce the publication of our 2013 Semi-Annual Newsletter! This is a chance for you to read about what we are doing to help make FreeBSD the best operating system available. Read about funded development projects to improve FreeBSD , sponsored conferences, developer and vendor summits to create face-to-face opportunities, research, how we are doing on our fundraising efforts, and so much more! The 2013 semi-annual newsletter is available online <a href=\"https://www.freebsdfoundation.org/press/2013Jul-newsletter\">here</a>."

[[news]]
date = "2013-08-05"
title = "FreeBSD 9.2-RC1 Available"
description = "The first RC build for the FreeBSD -9.2 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-August/074589.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-07-31"
description = "New committer: <a href=\"mailto:nemysis@FreeBSD.org\">Rusmir Dusko</a> (ports)"

[[news]]
date = "2013-07-29"
title = "FreeBSD 9.2-BETA2 Available"
description = "The second BETA build for the FreeBSD -9.2 release cycle is now available. ISO images for the amd64, i386, powerpc64 and sparc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-July/074440.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-07-22"
title = "FreeBSD 9.2-BETA1 Available"
description = "The first BETA build for the FreeBSD -9.2 release cycle is now available. ISO images for the amd64, i386 and ia64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-July/074377.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-07-16"
title = "April-June, 2013 Status Report"
description = "The <a href=\"https://www.freebsd.org/news/status/report-2013-04-2013-06.html\">April-June, 2013 Status Report</a> is now available with 33 entries."

[[news]]
date = "2013-07-04"
description = "New committer: <a href=\"mailto:marino@FreeBSD.org\">John Marino</a> (ports)"

[[news]]
date = "2013-07-03"
description = "New committer: <a href=\"mailto:loos@FreeBSD.org\">Luiz Otavio O Souza</a> (src)"

[[news]]
date = "2013-07-02"
title = "BSDCan 2013 DevSummit Report"
description = "A special status report on the results of the BSDCan 2013 FreeBSD Developer Summit is <a href=\"https://www.freebsd.org/news/status/report-2013-05-devsummit.html\">now available</a> with 6 entries."

[[news]]
date = "2013-06-25"
description = "New committer: <a href=\"mailto:feld@FreeBSD.org\">Mark Felder</a> (ports)"

[[news]]
date = "2013-06-19"
title = "Happy Birthday FreeBSD !"
description = "FreeBSD celebrated its <a href=\"https://www.FreeBSD.org/news/1993/freebsd-coined.html\">20th birthday</a> today. On June 19, 1993, Jordan Hubbard, Rod Grimes, and David Greenman announced to the world the creation of their new fork of the BSD 4.3 operating system. FreeBSD was derived from the 386BSD 0.1 release from Bill and Lynne Jolitz with its 1.0 release in Nov 1993. Its stated goals were to create a fast, stable, reliable server OS for i386 systems. Since then, it has become the backbone of countless products and has grown to supporting 64bit computing, embedded devices, and desktop users."

[[news]]
date = "2013-06-11"
description = "New committer: <a href=\"mailto:vg@FreeBSD.org\">Veniamin Gvozdikov</a> (ports)"

[[news]]
date = "2013-06-07"
title = "FreeBSD 8.4-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/8.4R/announce.html\">FreeBSD 8.4-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/8.4R/relnotes.html\">Release Notes</a> (<a href=\"https://www.freebsd.org/releases/8.4R/relnotes-detailed.html\">detailed version</a>) and <a href=\"https://www.freebsd.org/releases/8.4R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 8.4. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2013-06-04"
description = "Enhanced commit privileges: <a href=\"mailto:gjb@FreeBSD.org\">Glen Barber</a> (doc, ports, src)"

[[news]]
date = "2013-05-27"
description = "Enhanced commit privileges: <a href=\"mailto:crees@FreeBSD.org\">Chris Rees</a> (doc, ports)"

[[news]]
date = "2013-05-14"
title = "Binary Packages Are Available Again"
description = "Six months have passed since the November security incident which brought the Project's binary package building capacity offline; we are pleased to announce that all services are now restored. Read the official announcement <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2013-May/001476.html\">here</a>."

[[news]]
date = "2013-05-12"
title = "January-March 2013 Status Report"
description = "The January to March 2013 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2013-01-2013-03.html\">now available</a> with 31 entries."

[[news]]
date = "2013-05-09"
title = "FreeBSD Foundation Announces Ed Maste as New Director of Project Development"
description = "The FreeBSD Foundation is pleased to announce Ed Maste's new role as the Foundation's part-time Director of Project Development. Ed has served on the Foundation's board for two years, and has stepped down in order to accept this new position. <a href=\"http://freebsdfoundation.blogspot.com/2013/05/freebsd-foundation-announces-ed-maste.html\">Read more...</a>"

[[news]]
date = "2013-05-08"
title = "FreeBSD 8.4-RC3 Available"
description = "The third RC build for the FreeBSD -8.4 release cycle is now available. ISO images for the amd64, i386 and pc98 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-May/073389.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-04-29"
title = "New FreeBSD Foundation Technical Staff Member: Edward Tomasz Napierała"
description = "The FreeBSD Foundation is pleased to announce that Edward Tomasz Napierała has joined as its second member of technical staff. This is a continuation of the Foundation's plan to invest in staff in 2013. <a href=\"http://freebsdfoundation.blogspot.com/2013/04/freebsd-foundation-announces-second.html\">Read more...</a>"

[[news]]
date = "2013-04-24"
description = "New committer: <a href=\"mailto:asomers@FreeBSD.org\">Alan Somers</a> (src)"

[[news]]
date = "2013-04-24"
title = "FreeBSD Project to participate in Google Summer of Code 2013"
description = "The FreeBSD Project is pleased to announce its participation in Google's 2013 Summer of Code program, which funds summer students to participate in open source projects. This will be the FreeBSD Project's ninth year in the program, having mentored over 150 successful students through summer-long coding projects between 2005 and 2012. Past successful projects have included improvements to Linux ABI emulation, NFSv4 ACLs, TCP regression testing, FUSE file system support, and countless other projects. Many students go on to become FreeBSD developers, as well as participating in FreeBSD developer events around the world through continuing support from the FreeBSD Foundation. Prospective participants are invited to apply; more information is available, including proposal and deadline information, on the <a href=\"https://www.freebsd.org/projects/summerofcode.html\">FreeBSD Summer Projects page</a>."

[[news]]
date = "2013-04-22"
title = "FreeBSD 8.4-RC2 Available"
description = "The second RC build for the FreeBSD -8.4 release cycle is now available. ISO images for the amd64, i386 and pc98 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-April/073198.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-04-18"
description = "Enhanced commit privileges: <a href=\"mailto:cy@FreeBSD.org\">Cy Schubert</a> (src, ports)"

[[news]]
date = "2013-04-12"
description = "New committer: <a href=\"mailto:hiren@FreeBSD.org\">Hiren Panchasara</a> (src)"

[[news]]
date = "2013-04-10"
title = "FreeBSD 8.4-RC1 Available"
description = "The first RC build for the FreeBSD -8.4 release cycle is now available. ISO images for the amd64, i386 and pc98 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-April/073070.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-04-03"
description = "Enhanced commit privileges: <a href=\"mailto:antoine@FreeBSD.org\">Antoine Brodin</a> (src, ports)"

[[news]]
date = "2013-04-01"
description = "New committer: <a href=\"mailto:wg@FreeBSD.org\">William Grzybowski</a> (ports)"

[[news]]
date = "2013-03-27"
description = "Enhanced commit privileges: <a href=\"mailto:tijl@FreeBSD.org\">Tijl Coosemans</a> (src, ports)"

[[news]]
date = "2013-03-22"
title = "FreeBSD 8.4-BETA1 Available"
description = "The first BETA build for the FreeBSD -8.4 release cycle is now available. ISO images for the amd64, i386 and pc98 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2013-March/072913.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2013-03-14"
title = "New FreeBSD Foundation Technical Staff Member: Konstantin Belousov"
description = "The FreeBSD Foundation is pleased to announce that Konstantin Belousov has been hired as its first full-time member of technical staff, a key milestone of the Foundation's investment in staff for 2013. <a href=\"http://freebsdfoundation.blogspot.com/2013/03/foundation-announces-new-technical.html\">Read more...</a>"

[[news]]
date = "2013-03-12"
description = "New member for the Ports Management team: <a href=\"mailto:bdrewery@FreeBSD.org\">Bryan Drewery</a>"

[[news]]
date = "2013-03-03"
title = "October-December 2012 Status Report"
description = "The October to December 2012 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2012-10-2012-12.html\">now available</a> with 27 entries."

[[news]]
date = "2013-03-03"
title = "July-September 2012 Status Report"
description = "The July to September 2012 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2012-07-2012-09.html\">now available</a> with 12 entries."

[[news]]
date = "2013-02-10"
description = "New committer: <a href=\"mailto:pclin@FreeBSD.org\">Po-Chien Lin</a> (ports)"

[[news]]
date = "2013-02-01"
description = "New committer: <a href=\"mailto:tmseck@FreeBSD.org\">Thomas-Martin Seck</a> (ports)"

[[news]]
date = "2013-01-23"
description = "New committer: <a href=\"mailto:achim@FreeBSD.org\">Achim Leubner</a> (src)"

[[news]]
date = "2013-01-22"
description = "New committer: <a href=\"mailto:dru@FreeBSD.org\">Dru Lavigne</a> (doc)"

[[news]]
date = "2013-01-16"
description = "New committer: <a href=\"mailto:carl@FreeBSD.org\">Carl Delsey</a> (src)"

[[news]]
date = "2013-01-15"
description = "Enhanced commit privileges: <a href=\"mailto:rene@FreeBSD.org\">René Ladan</a> (ports, full doc/www)"

[[news]]
date = "2013-01-14"
description = "New committer: <a href=\"mailto:dbn@FreeBSD.org\">David Naylor</a> (ports)"

[[news]]
date = "2013-01-13"
title = "April-June, 2012 Status Report"
description = "The April-June, 2012 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2012-04-2012-06.html\">now available</a> with 17 entries."

[[news]]
date = "2013-01-10"
title = "Ports CVS End of Life on February 28th 2013"
description = "The development of FreeBSD ports is done in Subversion nowadays. By February 28th 2013, the FreeBSD ports tree will no longer be exported to CVS. Therefore ports tree updates via CVS, CVSup or csup(1) will no longer be available after that date. All users who use CVS, CVSup or csup(1) to update the ports tree are encouraged to switch to portsnap(8) or for users which need more control over their ports collection checkout, use Subversion directly. More information are available in the announcement mail on the <a href=\"https://lists.freebsd.org/pipermail/freebsd-ports-announce/2012-September/000026.html\">FreeBSD ports announce mailing list</a>. A migration guide from CVSup or csup(1) to portsnap(8) is also available in <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/ports-using.html#cvsup-migration\">the FreeBSD Handbook</a>."

[[news]]
date = "2013-01-08"
title = "Faces of FreeBSD ‐ Thomas Abthorpe"
description = "We are excited to share our next story for our Faces of FreeBSD Series. This is a chance for us to spotlight different people who contribute to FreeBSD and have received funding from us to work on development projects, run conferences, travel to conferences, and advocate for FreeBSD. Let us introduce you to Thomas Abthorpe. We helped him attend BSDCan 2009, 2011, and 2012 by helping with his travel expenses. Read his story <a href=\"http://freebsdfoundation.blogspot.com/2013/01/faces-of-freebsd-thomas-abthorpe.html\">here.</a>"

[[news]]
date = "2013-01-07"
description = "New committer: <a href=\"mailto:ian@FreeBSD.org\">Ian Lepore</a> (src)"

[[news]]
date = "2012-12-31"
title = "FreeBSD 9.1-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/9.1R/announce.html\">FreeBSD 9.1-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/9.1R/relnotes.html\">Release Notes</a> (<a href=\"https://www.freebsd.org/releases/9.1R/relnotes-detailed.html\">detailed version</a>) and <a href=\"https://www.freebsd.org/releases/9.1R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 9.1. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2012-12-24"
description = "New committer: <a href=\"mailto:koobs@FreeBSD.org\">Kubilay Kocak</a> (ports)"

[[news]]
date = "2012-12-20"
title = "The FreeBSD Foundation End-of-Year Newsletter is Now Available."
description = "We are pleased to announce the publication of The FreeBSD Foundation's 2012 <a href=\"https://www.freebsdfoundation.org/press/2012Dec-newsletter.shtml\">End-of-Year Newsletter.</a>"

[[news]]
date = "2012-12-18"
description = "New committer: <a href=\"mailto:markj@FreeBSD.org\">Mark Johnston</a> (src)"

[[news]]
date = "2012-12-18"
title = "PC-BSD 9.1 is Released"
description = "The PC-BSD Team <a href=\"http://blog.pcbsd.org/2012/12/pc-bsd-9-1-now-available/\">announces</a> the availablilty of PC-BSD 9.1."

[[news]]
date = "2012-12-18"
description = "New committer: <a href=\"mailto:smh@FreeBSD.org\">Steven Hartland</a> (src)"

[[news]]
date = "2012-12-17"
title = "Faces of FreeBSD ‐ Dan Langille"
description = "We are excited to share our next story for our Faces of FreeBSD Series. This is a chance for us to spotlight different people who contribute to FreeBSD and have received funding from us to work on development projects, run conferences, travel to conferences, and advocate for FreeBSD. Let us introduce you to Dan Langille. We helped him by sponsoring BSDCan since 2006. Read his story <a href=\"http://freebsdfoundation.blogspot.com/2012/12/faces-of-freebsd-dan-langille_17.html\">here.</a>"

[[news]]
date = "2012-12-12"
title = "Stunning News Website Fundraising Contribution: Over 650 new donations raise $43,200 in three days!"
description = "Astute readers of our blog know that The FreeBSD Foundation's annual year-end fundraising drive began last week. Every year over 50% of our donations arrive during this campaign. <a href=\"http://freebsdfoundation.blogspot.com/2012/12/stunning-news-website-fundraising.html\">Read more...</a>"

[[news]]
date = "2012-12-10"
title = "Faces of FreeBSD ‐ Alberto Mijares"
description = "Are you aware of the tangible benefits derived from our support of the FreeBSD community? In conjunction with our year-end fundraising drive we are going to be spotlighting different people on our website, blog, and Facebook page who have received funding to work on development projects, run conferences, travel to conferences, and advocate for FreeBSD. <a href=\"http://freebsdfoundation.blogspot.com/2012/12/faces-of-freebsd-alberto-mijares.html\">Read more...</a>"

[[news]]
date = "2012-12-05"
title = "FreeBSD Year-End Fundraising Campaign"
description = "Your donations have helped make FreeBSD the best OS available! By investing in The FreeBSD Foundation you have helped us keep FreeBSD a high-performance, secure, and stable operating system. Thanks to people like you, the FreeBSD Foundation has been proudly supporting the FreeBSD Project and community for 12 years now. <a href=\"http://freebsdfoundation.blogspot.com/2012/12/year-end-fundraising-campaign.html\">Read more...</a>"

[[news]]
date = "2012-12-05"
title = "FreeBSD Project Website is Using Google Analytics"
description = "The FreeBSD Project has enabled Google Analytics to collect anonymised statistics on web site use. More information can be found in the official <a href=\"https://lists.freebsd.org/pipermail/freebsd-announce/2012-December/001441.html\">announcement</a>."

[[news]]
date = "2012-11-26"
description = "New committer: <a href=\"mailto:syuu@FreeBSD.org\">Takuya ASADA</a> (src)"

[[news]]
date = "2012-11-25"
description = "New committer: <a href=\"mailto:bar@FreeBSD.org\">Barbara Guida</a> (ports)"

[[news]]
date = "2012-11-17"
title = "Security Incident on FreeBSD Infrastructure"
description = "On Sunday 11th of November, an intrusion was detected on two machines within the FreeBSD.org cluster. We have found no evidence of any modifications that would put any end user at risk. However, we do urge all users to read the report available at <a href=\"/news/2012-compromise.html\">https://www.freebsd.org/news/2012-compromise.html</a> and decide on any required actions themselves."

[[news]]
date = "2012-11-05"
description = "New committer: <a href=\"mailto:bryanv@FreeBSD.org\">Bryan Venteicher</a> (src)"

[[news]]
date = "2012-11-04"
description = "New committer: <a href=\"mailto:gblach@FreeBSD.org\">Grzegorz Blach</a> (ports)"

[[news]]
date = "2012-11-03"
title = "FreeBSD 9.1-RC3 Available"
description = "The third RC build for the FreeBSD -9.1 release cycle is now available. ISO images for the amd64, i386, sparc64, and powerpc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2012-November/070401.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2012-10-24"
description = "Enhanced commit privileges: <a href=\"mailto:erwin@FreeBSD.org\">Erwin Lansing</a> (src, ports)"

[[news]]
date = "2012-10-23"
description = "New committer: <a href=\"mailto:sjg@FreeBSD.org\">Simon J. Gerraty</a> (src)"

[[news]]
date = "2012-10-20"
description = "Enhanced commit privileges: <a href=\"mailto:eadler@FreeBSD.org\">Eitan Adler</a> (src, ports, doc)"

[[news]]
date = "2012-10-19"
description = "New member for the Ports Management team: <a href=\"mailto:decke@FreeBSD.org\">Bernhard Fröhlich</a>."

[[news]]
date = "2012-10-10"
title = "FreeBSD 9.1-RC2 Available"
description = "The second RC build for the FreeBSD -9.1 release cycle is now available. ISO images for the amd64, i386, ia64, powerpc, and powerpc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2012-October/069998.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2012-09-15"
description = "New committer: <a href=\"mailto:peterj@FreeBSD.org\">Peter Jeremy</a> (src)"

[[news]]
date = "2012-09-13"
description = "New committer: <a href=\"mailto:ebrandi@FreeBSD.org\">Edson Brandi</a> (doc/pt_BR, www/pt_BR)"

[[news]]
date = "2012-09-10"
description = "New committer: <a href=\"mailto:jhale@FreeBSD.org\">Jason E. Hale</a> (ports)"

[[news]]
date = "2012-08-23"
title = "FreeBSD 9.1-RC1 Available"
description = "The first RC build for the FreeBSD -9.1 release cycle is now available. ISO images for the amd64, i386 and powerpc64 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2012-August/069233.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2012-08-21"
description = "New committer: <a href=\"mailto:zont@FreeBSD.org\">Andrey Zonov</a> (src)"

[[news]]
date = "2012-08-01"
description = "New committer: <a href=\"mailto:bdrewery@FreeBSD.org\">Bryan Drewery</a> (ports)"

[[news]]
date = "2012-07-24"
title = "New Core Team Secretary: <a href=\"mailto:pgj@FreeBSD.org\">Gábor     Páli</a>"
description = "The FreeBSD Core Team is glad to announce that <a href=\"mailto:pgj@FreeBSD.org\">Gábor Páli</a> has assumed the role of <a href=\"mailto:core-secretary@FreeBSD.org\">Core Team Secretary</a>."

[[news]]
date = "2012-07-16"
title = "FreeBSD 9.1-BETA1 Available"
description = "The first BETA build for the FreeBSD -9.1 release cycle is now available. ISO images for the architectures amd64, i386, powerpc64, and sparc64 are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2012-July/068830.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2012-07-11"
title = "New FreeBSD Core Team elected"
description = "The FreeBSD Project is pleased to announce the completion of the 2012 Core Team election. The FreeBSD Core Team acts as the project's \"board of directors\" and is responsible for approving new src committers, resolving disputes between developers, appointing sub-committees for specific purposes (security officer, release engineering, port managers, webmaster, etc...), and making any other administrative or policy decisions as needed. The Core Team has been elected by FreeBSD developers every two years since 2000. More information about the election (together with a list of the new members of the Core Team) can be found in the official <a href=\"https://docs.FreeBSD.org/cgi/mid.cgi?1342030291.6001.80.camel\">announcement</a>."

[[news]]
date = "2012-07-03"
description = "New committer: <a href=\"mailto:zeising@FreeBSD.org\">Niclas Zeising</a> (doc/www, ports)"

[[news]]
date = "2012-06-19"
description = "Enhanced commit privileges: <a href=\"mailto:gjb@FreeBSD.org\">Glen Barber</a> (doc, ports)"

[[news]]
date = "2012-06-04"
description = "New committer: <a href=\"mailto:mjg@FreeBSD.org\">Mateusz Guzik</a> (src)"

[[news]]
date = "2012-05-30"
description = "New committer: <a href=\"mailto:jase@FreeBSD.org\">Jase Thew</a> (ports)"

[[news]]
date = "2012-05-29"
description = "New committer: <a href=\"mailto:olivierd@FreeBSD.org\">Olivier Duchateau</a> (ports)"

[[news]]
date = "2012-05-28"
description = "New committer: <a href=\"mailto:tj@FreeBSD.org\">Tom Judge</a> (ports)"

[[news]]
date = "2012-05-12"
title = "January-March, 2012 Status Report"
description = "The January-March, 2012 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2012-01-2012-03.html\">now available</a> with 27 entries."

[[news]]
date = "2012-04-26"
description = "New committer: <a href=\"mailto:issyl0@FreeBSD.org\">Isabell Long</a> (doc/www)"

[[news]]
date = "2012-04-22"
description = "New committer: <a href=\"mailto:jlh@FreeBSD.org\">Jeremie Le Hen</a> (src)"

[[news]]
date = "2012-04-18"
title = "FreeBSD 8.3-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/8.3R/announce.html\">FreeBSD 8.3-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/8.3R/relnotes-detailed.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/8.3R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 8.3. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2012-04-18"
description = "New committer: <a href=\"mailto:dteske@FreeBSD.org\">Devin Teske</a> (src)"

[[news]]
date = "2012-04-15"
description = "New committer: <a href=\"mailto:sperber@FreeBSD.org\">Armin Pirkovitsch</a> (ports)"

[[news]]
date = "2012-04-13"
description = "New committer: <a href=\"mailto:monthadar@FreeBSD.org\">Monthadar Al Jaberi</a> (src)"

[[news]]
date = "2012-04-12"
description = "New committer: <a href=\"mailto:madpilot@FreeBSD.org\">Guido Falsi</a> (ports)"

[[news]]
date = "2012-04-02"
title = "FreeBSD 8.3-RC2 Available"
description = "The second release candidate build for the FreeBSD -8.3 release cycle is now available. ISO images for the amd64, i386, and pc98 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2012-April/067067.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2012-03-23"
description = "New committer: <a href=\"mailto:cherry@FreeBSD.org\">Cherry G. Mathew</a> (src)"

[[news]]
date = "2012-03-12"
description = "New committer: <a href=\"mailto:bjk@FreeBSD.org\">Benjamin Kaduk</a> (doc/www)"

[[news]]
date = "2012-03-06"
title = "FreeBSD 8.3-RC1 Available"
description = "The first RC build for the FreeBSD -8.3 release cycle is now available. ISO images for the amd64, i386, and pc98 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2012-March/066722.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2012-03-01"
description = "New committer: <a href=\"mailto:ak@FreeBSD.org\">Alex Kozlov</a> (ports)"

[[news]]
date = "2012-02-20"
title = "FreeBSD 8.3-BETA1 Available"
description = "The first test build for the FreeBSD -8.3 release cycle is now available. ISO images for the amd64, i386, and pc98 architectures are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2012-February/066340.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2012-02-16"
description = "New committer: <a href=\"mailto:dmarion@FreeBSD.org\">Damjan Marion</a> (src)"

[[news]]
date = "2012-02-16"
description = "New committer: <a href=\"mailto:bgray@FreeBSD.org\">Ben Gray</a> (src)"

[[news]]
date = "2012-02-14"
description = "Enhanced commit privileges: <a href=\"mailto:pluknet@FreeBSD.org\">Sergey Kandaurov</a> (src, doc)"

[[news]]
date = "2012-02-07"
description = "New committer: <a href=\"mailto:matthew@FreeBSD.org\">Matthew Seaman</a> (ports)"

[[news]]
date = "2012-01-27"
description = "New committer: <a href=\"mailto:davide@FreeBSD.org\">Davide Italiano</a> (src)"

[[news]]
date = "2012-01-27"
title = "October-December, 2011 Status Report"
description = "The October-December, 2011 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2011-10-2011-12.html\">now available</a> with 32 entries."

[[news]]
date = "2012-01-12"
title = "FreeBSD 9.0-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/9.0R/announce.html\">FreeBSD 9.0-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/9.0R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/9.0R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 9.0. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2011-12-16"
description = "New committer: <a href=\"mailto:jgh@FreeBSD.org\">Jason Helfman</a> (ports)"

[[news]]
date = "2011-12-09"
title = "FreeBSD 9.0-RC3 Available"
description = "The third (and probably last) RC build for the FreeBSD -9.0 release cycle is now available. ISO images for the architectures amd64, i386, ia64, powerpc, powerpc64, and sparc64 are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-December/064770.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. One of the many new features in 9.0 we would like to be tested is the new installer, so we encourage our users to do fresh installation on test systems. Alternatively, users upgrading existing systems may now do so using the freebsd-update(8) utility."

[[news]]
date = "2011-12-08"
description = "New committer: <a href=\"mailto:pfg@FreeBSD.org\">Pedro Giffuni</a> (src)"

[[news]]
date = "2011-12-02"
description = "New member for the Ports Management team: <a href=\"mailto:beat@FreeBSD.org\">Beat Gätzi</a>"

[[news]]
date = "2011-11-30"
description = "New committer: <a href=\"mailto:jhibbits@FreeBSD.org\">Justin Hibbits</a> (src)"

[[news]]
date = "2011-11-17"
title = "FreeBSD 9.0-RC2 Available"
description = "The second RC build for the FreeBSD -9.0 release cycle is now available. ISO images for the architectures amd64, i386, ia64, powerpc, powerpc64, and sparc64 are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-November/064609.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. One of the many new features in 9.0 we would like to be tested is the new installer, so we encourage our users to do fresh installation on test systems. Alternatively, users upgrading existing systems may now do so using the freebsd-update(8) utility."

[[news]]
date = "2011-11-12"
description = "New committer: <a href=\"mailto:scheidell@FreeBSD.org\">Michael Scheidell</a> (ports)"

[[news]]
date = "2011-11-11"
description = "New committer: <a href=\"mailto:theraven@FreeBSD.org\">David Chisnall</a> (src)"

[[news]]
date = "2011-11-09"
description = "New committer: <a href=\"mailto:rm@FreeBSD.org\">Ruslan Makhmatkhanov</a> (ports)"

[[news]]
date = "2011-11-08"
title = "July-September, 2011 Status Report"
description = "The July-September, 2011 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2011-07-2011-09.html\">now available</a> with 28 entries."

[[news]]
date = "2011-10-23"
title = "FreeBSD 9.0-RC1 Available"
description = "The first RC build for the FreeBSD -9.0 release cycle is now available. ISO images for the architectures amd64, i386, ia64, powerpc, powerpc64, and sparc64 are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-October/064321.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. One of the many new features in 9.0 we would like to be tested is the new installer, so we encourage our users to do fresh installation on test systems. Alternatively, users upgrading existing systems may now do so using the freebsd-update(8) utility."

[[news]]
date = "2011-10-06"
description = "New committer: <a href=\"mailto:melifaro@FreeBSD.org\">Alexander V. Chernikov</a> (src)"

[[news]]
date = "2011-09-28"
title = "FreeBSD 9.0-BETA3 Available"
description = "The third BETA build for the FreeBSD -9.0 release cycle is now available. ISO images for the architectures amd64, i386, ia64, powerpc, powerpc64, and sparc64 are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-September/064030.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. One of the many new features in 9.0 we would like to be tested is the new installer, so we encourage our users to do fresh installation on test systems."

[[news]]
date = "2011-09-27"
description = "New committer: <a href=\"mailto:jceel@FreeBSD.org\">Jakub Klama</a> (src)"

[[news]]
date = "2011-09-19"
description = "New committer: <a href=\"mailto:gleb@FreeBSD.org\">Gleb Kurtsou</a> (src)"

[[news]]
date = "2011-09-18"
description = "New committer: <a href=\"mailto:rmh@FreeBSD.org\">Robert Millan</a> (src)"

[[news]]
date = "2011-09-14"
description = "New committer: <a href=\"mailto:wblock@FreeBSD.org\">Warren Block</a> (doc/www)"

[[news]]
date = "2011-09-14"
title = "April-June, 2011 Status Report"
description = "The April-June, 2011 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2011-04-2011-06.html\">now available</a> with 36 entries."

[[news]]
date = "2011-09-13"
description = "New committer: <a href=\"mailto:cs@FreeBSD.org\">Carlo Strub</a> (ports)"

[[news]]
date = "2011-09-07"
title = "FreeBSD 9.0-BETA2 Available"
description = "The second BETA build for the FreeBSD -9.0 release cycle is now available. ISO images for the architectures amd64, i386, powerpc, powerpc64, and sparc64 are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-September/063841.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. One of the many new features in 9.0 we would like to be tested is the new installer, so we encourage our users to do fresh installation on test systems."

[[news]]
date = "2011-08-22"
description = "New committer: <a href=\"mailto:rakuco@FreeBSD.org\">Raphael Kubo da Costa</a> (ports)"

[[news]]
date = "2011-08-17"
description = "New committer: <a href=\"mailto:eadler@FreeBSD.org\">Eitan Adler</a> (ports)"

[[news]]
date = "2011-08-09"
title = "FreeBSD Foundation August 2011 Newsletter"
description = "The FreeBSD Foundation has published their first <a href=\"https://www.freebsdfoundation.org/press/2011Aug-newsletter.shtml\">Semi-Annual 2011 newsletter</a> which summarizes what they have done to help the FreeBSD Project and community."

[[news]]
date = "2011-08-01"
title = "FreeBSD 9.0-BETA1 Available"
description = "The first test build for the FreeBSD -9.0 release cycle is now available. ISO images for the architectures amd64, i386, ia64, powerpc, powerpc64, and sparc64 are <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-August/063457.html\">available</a> on most of our <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. One of the many new features in 9.0 we would like to be tested is the new installer, so we encourage our users to do fresh installation on test systems."

[[news]]
date = "2011-07-17"
description = "Enhanced commit privileges: <a href=\"mailto:gavin@FreeBSD.org\">Gavin Atkinson</a> (src, doc)"

[[news]]
date = "2011-07-15"
description = "New committer: <a href=\"mailto:zi@FreeBSD.org\">Ryan Steinmetz</a> (ports)"

[[news]]
date = "2011-06-14"
description = "New committer: <a href=\"mailto:gber@FreeBSD.org\">Grzegorz Bernacki</a> (src)"

[[news]]
date = "2011-06-13"
description = "New committer: <a href=\"mailto:stephen@FreeBSD.org\">Stephen Montgomery-Smith</a> (ports)"

[[news]]
date = "2011-06-11"
description = "New committer: <a href=\"mailto:crees@FreeBSD.org\">Chris Rees</a> (ports)"

[[news]]
date = "2011-06-06"
title = "IPv6-only FreeBSD test images"
description = "FreeBSD Foundation and iXsystems <a href=\"http://www.prweb.com/releases/2011/6/prweb8529718.htm\"> announce</a> IPv6-only test images of FreeBSD and PC-BSD."

[[news]]
date = "2011-06-06"
description = "New committer: <a href=\"mailto:jlaffaye@FreeBSD.org\"> Julien Laffaye</a> (ports)"

[[news]]
date = "2011-05-25"
description = "New committer: <a href=\"mailto:ray@FreeBSD.org\">Aleksandr Rybalko</a> (src)"

[[news]]
date = "2011-05-18"
description = "New committer: <a href=\"mailto:benl@FreeBSD.org\">Ben Laurie</a> (src)"

[[news]]
date = "2011-05-12"
title = "New Port Manager"
description = "The Ports Management Team is pleased to announce <a href=\"mailto:bapt@FreeBSD.org\">Baptiste Daroussin</a> as a new member."

[[news]]
date = "2011-04-27"
title = "January-March, 2011 Status Report"
description = "The January-March, 2011 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2011-01-2011-03.html\">now available</a> with 34 entries."

[[news]]
date = "2011-03-29"
description = "New committer: <a href=\"mailto:art@FreeBSD.org\">Artem Belevich</a> (src)"

[[news]]
date = "2011-03-27"
title = "FreeBSD Project to participate in Google Summer of Code 2011"
description = "The FreeBSD Project is pleased to announce its participation In Google's 2011 Summer of Code program, which funds summer students to participate in open source projects. This will be the FreeBSD Project's seventh year in the program, having mentored over 100 successful students through summer-long coding projects between 2005 and 2010.  Past successful projects have included improvements to Linux ABI emulation, NFSv4 ACLs, TCP regression testing, FUSE file system support, and countless other projects. Many students go on to become FreeBSD developers, as well as participating in FreeBSD developer events around the world through continuing support from the FreeBSD Foundation. Prospective participants are invited to apply; more information is available, including proposal and deadline information, on the <a href=\"https://www.freebsd.org/projects/summerofcode.html\">FreeBSD Summer Projects page</a>."

[[news]]
date = "2011-03-18"
description = "New committer: <a href=\"mailto:sbz@FreeBSD.org\"> Sofian Brabez</a> (ports)"

[[news]]
date = "2011-03-13"
description = "New committer: <a href=\"mailto:pawel@FreeBSD.org\"> Pawel Pekala</a> (ports)"

[[news]]
date = "2011-03-10"
description = "The FreeBSD Ports Management Team is pleased to announce <a href=\"mailto:tabthorpe@FreeBSD.org\"> Thomas Abthorpe</a> as a full voting member."

[[news]]
date = "2011-03-05"
description = "New committer: <a href=\"mailto:kargl@FreeBSD.org\"> Steven G. Kargl</a> (src)"

[[news]]
date = "2011-02-24"
title = "FreeBSD 8.2-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/8.2R/announce.html\">FreeBSD 8.2-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/8.2R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/8.2R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 8.2. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2011-02-24"
title = "FreeBSD 7.4-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/7.4R/announce.html\">FreeBSD 7.4-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/7.4R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/7.4R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 7.4. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2011-02-18"
description = "Enhanced commit privileges: <a href=\"mailto:miwi@FreeBSD.org\">Martin Wilke</a> (src, ports, doc)"

[[news]]
date = "2011-02-03"
title = "FreeBSD 7.4/8.2-RC3 Available"
description = "The third (and probably last) Release Candidate builds for the FreeBSD -7.4/8.2 release cycles are now available. For 8.2-RC3 the amd64, i386, ia64, pc98, powerpc, and sparc64 architectures are available. For 7.4-RC3 the amd64, i386, pc98, and sparc64 architectures are available. ISO images for these architectures can be downloaded from most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. Please see the official <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-February/061353.html\">announcement</a> for further details about these releases."

[[news]]
date = "2011-01-25"
title = "October-December, 2010 Status Report"
description = "The October-December, 2010 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2010-10-2010-12.html\">now available</a> with 37 entries."

[[news]]
date = "2011-01-23"
title = "FreeBSD 7.4-RC2 Available"
description = "The second Release Candidate build for the FreeBSD -7.4 release cycle is now available. ISO images for Tier-1 architectures can be downloaded from most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. Please see the official <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-January/061218.html\">announcement</a> for further details about this release."

[[news]]
date = "2011-01-16"
title = "FreeBSD 8.2-RC2 Available"
description = "The second Release Candidate build for the FreeBSD -8.2 release cycle is now available. ISO images for Tier-1 architectures can be downloaded from most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. Please see the official <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2011-January/061131.html\">announcement</a> for further details about this release."

[[news]]
date = "2010-12-27"
title = "FreeBSD 7.4/8.2-RC1 Available"
description = "The first Release Candidate builds for the FreeBSD -7.4/8.2 release cycles are now available. ISO images for Tier-1 architectures can be downloaded from most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. Please see the official <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2010-December/060757.html\">announcement</a> for further details about these releases."

[[news]]
date = "2010-12-16"
title = "FreeBSD Foundation December 2010 Newsletter"
description = "The FreeBSD Foundation has published their <a href=\"https://www.freebsdfoundation.org/press/2010Dec-newsletter.shtml\">End-of-Year newsletter</a> which summarizes what they have done in 2010 to help the FreeBSD Project and community."

[[news]]
date = "2010-12-11"
title = "FreeBSD 7.4/8.2-BETA1 Available"
description = "The first of the test builds for the FreeBSD -7.4/8.2 release cycles is now available. ISO images for Tier-1 architectures are now <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2010-December/060541.html\">available</a> on most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2010-12-07"
description = "New committer: <a href=\"mailto:flo@FreeBSD.org\">Florian Smeets</a> (ports)"

[[news]]
date = "2010-11-15"
description = "New committer: <a href=\"mailto:rea@FreeBSD.org\">Eygene Ryabinkin</a> (ports)"

[[news]]
date = "2010-11-05"
description = "New committer: <a href=\"mailto:zack@FreeBSD.org\">Zack Kirsch</a> (src)"

[[news]]
date = "2010-10-27"
title = "July-September, 2010 Status Report"
description = "The July-September, 2010 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2010-07-2010-09.html\">now available</a> with 55 entries."

[[news]]
date = "2010-10-16"
description = "New committer: <a href=\"mailto:culot@FreeBSD.org\">Frederic Culot</a> (ports)"

[[news]]
date = "2010-10-07"
description = "New committer: <a href=\"mailto:jonathan@FreeBSD.org\">Jonathan Anderson</a> (src)"

[[news]]
date = "2010-10-05"
description = "New committer: <a href=\"mailto:pluknet@FreeBSD.org\">Sergey Kandaurov</a> (src)"

[[news]]
date = "2010-09-25"
description = "New committer: <a href=\"mailto:martymac@FreeBSD.org\">Ganael Laplanche</a> (ports)"

[[news]]
date = "2010-09-21"
description = "New committer: <a href=\"mailto:sunpoet@FreeBSD.org\">Po-Chuan Hsieh</a> (ports)"

[[news]]
date = "2010-09-05"
description = "New committer: <a href=\"mailto:andreast@FreeBSD.org\">Andreas Tobler</a> (src)"

[[news]]
date = "2010-09-03"
description = "New committer: <a href=\"mailto:swills@FreeBSD.org\">Steve Wills</a> (ports)"

[[news]]
date = "2010-08-31"
description = "New committer: <a href=\"mailto:gjb@FreeBSD.org\">Glen Barber</a> (full doc/www)"

[[news]]
date = "2010-08-30"
description = "New committer: <a href=\"mailto:dim@FreeBSD.org\">Dimitry Andric</a> (src)"

[[news]]
date = "2010-08-01"
description = "New committer: <a href=\"mailto:ohauer@FreeBSD.org\">Oliver Hauer</a> (ports)"

[[news]]
date = "2010-07-27"
title = "FreeBSD Foundation July 2010 Newsletter"
description = "The FreeBSD Foundation has published their <a href=\"https://www.freebsdfoundation.org/press/2010Jul-newsletter.shtml\">Semi-Annual July 2010 newsletter</a> which summarizes what they have done to help the FreeBSD Project and community."

[[news]]
date = "2010-07-27"
description = "New committer: <a href=\"mailto:bapt@FreeBSD.org\">Baptiste Daroussin</a> (ports)"

[[news]]
date = "2010-07-23"
title = "FreeBSD 8.1-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/8.1R/announce.html\">FreeBSD 8.1-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/8.1R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/8.1R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 8.1. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2010-07-22"
title = "April-June, 2010 Status Report"
description = "The April-June, 2010 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2010-04-2010-06.html\">now available</a> with 47 entries."

[[news]]
date = "2010-07-21"
description = "New committer: <a href=\"mailto:andrew@FreeBSD.org\">Andrew Turner</a> (src)"

[[news]]
date = "2010-07-20"
title = "PC-BSD 8.1 Released"
description = "PC-BSD 8.1 has been released. PC-BSD is a successful desktop operating system based on FreeBSD that focuses on providing an easy to use desktop system for casual computer users. A list of new features/updates since the last version can be found <a href=\"http://www.pcbsd.org/content/view/170/11/\">here</a>. The new release can be <a href=\"http://www.pcbsd.org\">downloaded</a> or <a href=\"http://www.freebsdmall.com\">purchased</a> on DVD."

[[news]]
date = "2010-07-17"
description = "New committer: <a href=\"mailto:tijl@FreeBSD.org\">Tijl Coosemans</a> (src)"

[[news]]
date = "2010-07-15"
description = "New committer: <a href=\"mailto:jsa@FreeBSD.org\">Joseph S. Atkinson</a> (ports)"

[[news]]
date = "2010-07-14"
title = "New FreeBSD Core Team elected"
description = "The FreeBSD Project is pleased to announce the completion of the 2010 Core Team election. The FreeBSD Core Team acts as the project's \"board of directors\" and is responsible for approving new src committers, resolving disputes between developers, appointing sub-committees for specific purposes (security officer, release engineering, port managers, webmaster, etc...), and making any other administrative or policy decisions as needed. The Core Team has been elected by FreeBSD developers every 2 years since 2000. More information about the election (together with a list of the new members of the Core Team) can be found in the official <a href=\"https://docs.freebsd.org/cgi/mid.cgi?20100714193552.GS32232\">announcement</a>."

[[news]]
date = "2010-07-02"
title = "FreeBSD 8.1-RC2 available"
description = "The second (and most likely final) Release Candidate build for the FreeBSD -8.1 release cycle is now available. CD ISO images for the amd64, i386, ia64, powerpc, and sparc64 architectures can be downloaded from most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. Please see the official <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2010-July/057552.html\">announcement</a> for further details about this release."

[[news]]
date = "2010-06-18"
title = "FreeBSD 8.1-RC1 Available"
description = "The first Release Candidate build for the FreeBSD -8.1 release cycle is now available. ISO images for Tier-1 architectures can be downloaded from most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>. Please see the official <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2010-June/057320.html\">announcement</a> for further details about this release."

[[news]]
date = "2010-06-10"
description = "New committer: <a href=\"mailto:ashish@FreeBSD.org\">Ashish SHUKLA</a> (ports)"

[[news]]
date = "2010-06-09"
description = "New committer: <a href=\"mailto:bf@FreeBSD.org\">Brendan Fabeny</a> (ports)"

[[news]]
date = "2010-06-04"
description = "New committer: <a href=\"mailto:mdf@FreeBSD.org\">Matthew Fleming</a> (src)"

[[news]]
date = "2010-06-03"
description = "New committer: <a href=\"mailto:ae@FreeBSD.org\">Andrey V. Elsukov</a> (src)"

[[news]]
date = "2010-06-03"
description = "New committer: <a href=\"mailto:taras@FreeBSD.org\">Taras Korenko</a> (doc/ru, www/ru)"

[[news]]
date = "2010-05-29"
title = "FreeBSD 8.1-BETA1 Available"
description = "The first of the test builds for the FreeBSD -8.1 release cycle is now available. ISO images for Tier-1 architectures are now <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2010-May/057040.html\">available</a> on most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2010-05-24"
title = "Google Summer of Code Projects started"
description = "The FreeBSD Project again received many high quality applications from students participating in <a href=\"http://code.google.com/soc\">Google's Summer of Code</a> program. This year 18 student proposals to work with the FreeBSD Project were accepted as part of this program. For those with projects that were not accepted this year, we'd like to note that the FreeBSD Project is always willing to help mentor students so they can learn more about operating system development through our normal community mailing lists and development forums. Please read the official <a href=\"https://docs.freebsd.org/cgi/mid.cgi?20100526034329.GA40980\">announcement</a> for more information. The complete list of student projects selected for funding can be found in the FreeBSD <a href=\"https://wiki.freebsd.org/SummerOfCode2010Projects\">Summer of Code wiki</a>. Coding started on May 24, so please join us in welcoming the 18 new students to our community."

[[news]]
date = "2010-05-19"
description = "New committer: <a href=\"mailto:jchandra@FreeBSD.org\">Jayachandran C.</a> (src)"

[[news]]
date = "2010-04-29"
description = "Enhanced commit privileges: <a href=\"mailto:mm@FreeBSD.org\">Martin Matuška</a> (src, ports)"

[[news]]
date = "2010-04-22"
title = "January-March, 2010 Status Report"
description = "The January-March, 2010 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2010-01-2010-03.html\">now available</a> with 46 entries."

[[news]]
date = "2010-04-20"
description = "New committer: <a href=\"mailto:randi@FreeBSD.org\">Randi Harper</a> (src)"

[[news]]
date = "2010-04-19"
description = "New committer: <a href=\"mailto:rstone@FreeBSD.org\">Ryan Stone</a> (src)"

[[news]]
date = "2010-04-14"
description = "New committer: <a href=\"mailto:anchie@FreeBSD.org\">Ana Kukec</a> (src)"

[[news]]
date = "2010-04-11"
description = "Enhanced commit privileges: <a href=\"mailto:rene@FreeBSD.org\">René Ladan</a> (doc-nl, ports)"

[[news]]
date = "2010-04-11"
description = "New committer: <a href=\"mailto:sahil@FreeBSD.org\">Sahil Tandon</a> (ports)"

[[news]]
date = "2010-04-05"
description = "New committer: <a href=\"mailto:jacula@FreeBSD.org\">Giuseppe Pilichi</a> (ports)"

[[news]]
date = "2010-04-04"
title = "The FreeBSD Project Participates in the Google Summer of Code 2010 Program"
description = "FreeBSD Project is <a href=\"https://docs.freebsd.org/cgi/getmsg.cgi?fetch=0+0+archive/2010/freebsd-announce/20100404.freebsd-announce\">participating in Google's Summer of Code programme</a> for a sixth year. Undergraduate and graduate students are invited to apply for a grant to spend the summer improving the FreeBSD operating system! More information available on the <a href=\"https://www.freebsd.org/projects/summerofcode.html\">FreeBSD Summer of code page</a>, including a poster to hang up at a university near you!"

[[news]]
date = "2010-03-31"
description = "New committer: <a href=\"mailto:decke@FreeBSD.org\">Bernhard Fröhlich</a> (ports)"

[[news]]
date = "2010-03-23"
title = "FreeBSD 7.3-RELEASE Available"
description = "<a href=\"https://www.freebsd.org/releases/7.3R/announce.html\">FreeBSD 7.3-RELEASE</a> is now available. Please be sure to check the <a href=\"https://www.freebsd.org/releases/7.3R/relnotes.html\">Release Notes</a> and <a href=\"https://www.freebsd.org/releases/7.3R/errata.html\">Release Errata</a> before installation for any late-breaking news and/or issues with 7.3. More information about FreeBSD releases can be found on the <a href=\"https://www.freebsd.org/releases/index.html\">Release Information</a> page."

[[news]]
date = "2010-03-18"
title = "New Ports Management Team Secretary: <a href=\"mailto:tabthorpe@FreeBSD.org\">Thomas Abthorpe</a>"
description = "The FreeBSD Ports Management Team is pleased to announce <a href=\"mailto:tabthorpe@FreeBSD.org\">Thomas Abthorpe</a> has assumed the role of <a href=\"mailto:portmgr-secretary@FreeBSD.org\">Ports Management Team Secretary</a>."

[[news]]
date = "2010-03-07"
description = "Returning committer: <a href=\"mailto:niels@FreeBSD.org\">Niels Heinen</a> (ports)"

[[news]]
date = "2010-03-04"
title = "FreeBSD 7.3-RC2 Available"
description = "The second Release Candidate build for the FreeBSD -7.3 release cycle is now available. ISO images for Tier-1 architectures are now <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2010-March/055596.html\">available</a> on most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2010-03-03"
description = "New committer: <a href=\"mailto:neel@FreeBSD.org\">Neel Natu</a> (src)"

[[news]]
date = "2010-02-22"
title = "PC-BSD 8.0 Released"
description = "PC-BSD 8.0 has been released. PC-BSD is a successful desktop operating system based on FreeBSD that focuses on providing an easy to use desktop system for casual computer users. A list of new features/updates since the last version can be found <a href=\"http://www.pcbsd.org/content/view/151/11/\">here</a>. The new release can be <a href=\"http://www.pcbsd.org\">downloaded</a> or <a href=\"http://www.freebsdmall.com\">purchased</a> on DVD."

[[news]]
date = "2010-02-15"
title = "FreeBSD 7.3-RC1 Available"
description = "The first Release Candidate build for the FreeBSD -7.3 release cycle is now available. ISO images for Tier-1 architectures are now <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2010-February/055146.html\">available</a> on most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2010-02-12"
description = "Enhanced commit privileges: <a href=\"mailto:bcr@FreeBSD.org\">Benedict Reuschling</a> (full doc/www)"

[[news]]
date = "2010-02-06"
description = "New committer: <a href=\"mailto:bschmidt@FreeBSD.org\">Bernhard Schmidt</a> (src)"

[[news]]
date = "2010-02-02"
title = "Enhanced commit privileges: <a href=\"mailto:gabor@FreeBSD.org\">Gábor Kövesdán</a> (src, ports, doc)"
description = "<a href=\"mailto:gabor@FreeBSD.org\">Gábor Kövesdán</a> participated in <a href=\"http://code.google.com/soc\">Google Summer of Code</a> 2008/2009 and for his work he has been given commit access to the source code. His first pieces of work will be bringing in the result of his summer work into the tree."

[[news]]
date = "2010-01-30"
title = "FreeBSD 7.3-BETA1 Available"
description = "The first BETA build for the FreeBSD -7.3 release cycle is now available. ISO images for Tier-1 architectures are now <a href=\"https://lists.freebsd.org/pipermail/freebsd-stable/2010-January/054608.html\">available</a> on most of the <a href=\"https://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/mirrors-ftp.html\">FreeBSD mirror sites</a>."

[[news]]
date = "2010-01-29"
description = "New committer: <a href=\"mailto:brucec@FreeBSD.org\">Bruce Cran</a> (src)"

[[news]]
date = "2010-01-28"
description = "New committer: <a href=\"mailto:uqs@FreeBSD.org\">Ulrich Spörlein</a> (src)"

[[news]]
date = "2010-01-26"
description = "New committer: <a href=\"mailto:romain@FreeBSD.org\">Romain Tartière</a> (ports)"

[[news]]
date = "2010-01-26"
description = "New committer: <a href=\"mailto:avilla@FreeBSD.org\">Alberto Villa</a> (ports)"

[[news]]
date = "2010-01-17"
title = "October-December, 2009 Status Report"
description = "The October-December, 2009 Status Report is <a href=\"https://www.freebsd.org/news/status/report-2009-10-2009-12.html\">now available</a> with 38 entries."