GraphicsMagick: Updated the news.
GraphicsMagick Commits <[email protected]>
| Newsgroups | gmane.comp.video.graphicsmagick.cvs |
|---|---|
| Message-ID | <mailman.36638.1672071342.1567.graphicsmagick-commit@lists.sourceforge.net> |
changeset 98057dd948cd in /hg/GraphicsMagick details: http://hg.GraphicsMagick.org/hg/GraphicsMagick?cmd=changeset;node=98057dd948cd summary: Updated the news. diffstat: ChangeLog | 6 +- NEWS.txt | 36 +++-- VisualMagick/installer/inc/version.isx | 4 +- magick/version.h | 4 +- www/Changelog.html | 12 + www/NEWS.html | 205 +++++++++++++++++--------------- 6 files changed, 151 insertions(+), 116 deletions(-) diffs (truncated from 724 to 500 lines): diff -r 7911eb52ab6c -r 98057dd948cd ChangeLog --- a/ChangeLog Mon Dec 26 16:05:30 2022 +0100 +++ b/ChangeLog Mon Dec 26 10:15:30 2022 -0600 @@ -1,6 +1,10 @@ +2022-12-26 Bob Friesenhahn <[email protected]> + + * NEWS.txt: Updated the news. + 2022-12-25 Fojtik Jaroslav <[email protected]> - * jp2/src/appl/jasper.c Link problem with jasper utility fixed. + * jp2/src/appl/jasper.c: Link problem with jasper utility fixed. 2022-12-25 Bob Friesenhahn <[email protected]> diff -r 7911eb52ab6c -r 98057dd948cd NEWS.txt --- a/NEWS.txt Mon Dec 26 16:05:30 2022 +0100 +++ b/NEWS.txt Mon Dec 26 10:15:30 2022 -0600 @@ -6,7 +6,7 @@ GraphicsMagick News =================== -This file was last updated to reflect changes up to December 10, 2022 +This file was last updated to reflect changes up to December 26, 2022 Please note that this file records news for the associated development branch and that each development branch has its own NEWS file. See the @@ -19,7 +19,7 @@ .. contents:: :local: -1.3.39 (???? ??, 2022) +1.3.39 (December 26, 2022) ========================== Special Issues: @@ -50,16 +50,18 @@ * ALL: Replace strcpy() with strlcpy(), replace strcat() with strlcat(), replace sprintf() with snprintf(). Prefer using bounded - string functions. + string functions. This change is made for the purpose of increasing + safety than to address any existing demonstrated concern. Bug fixes: * Coverity: Several fixes for issues found by Coverity to reduce the number of reported issues back down to zero. -* Clang Analyzer: Fix most discovered issues. - -* PNG: Fix possible use of uninitialized 'ping_num_trans' value in ReadOnePNGImage(). +* Clang Analyzer 12: Fix most discovered issues. + +* PNG: Fix possible use of uninitialized 'ping_num_trans' value in + ReadOnePNGImage(). * MinGW: Eliminate overwrite of existing _MSC_VER value in MinGW compile. @@ -83,7 +85,7 @@ as converted to Image attributes. * WebP: Add configure.ac updates to check for libsharpyuv so that - builds with development version work again. + builds with the development version work again. * Visual Studio Build (VisualMagick): Fix project file generation. Improve portability of code for configure.exe. @@ -107,7 +109,8 @@ performance hit if any logging is enabled at all and logging statements are executed which are filtered and produce no output. -* FITS: Support storing multiple scenes in one file (non-standard extension). +* FITS: Support storing multiple scenes in one file (non-standard + extension). * JPEG: Optionally enable arithmetic coder in JPG images using '-define jpeg:arithmetic-coding=true'. @@ -142,8 +145,8 @@ * JXL: The JXL coder is updated to compile with what will likely become JXL 0.8.0. Support for 16-bit 'short' samples, 16-bit - 'float' samples, and 32-bit float samples added. Suppor for reading - and writing ICC, EXIF, and XMP profiles added. + 'float' samples, and 32-bit float samples added. Support for + reading and writing ICC, EXIF, and XMP profiles added. * MIME: GM "magick" to MIME mappings have been added for apng, avif, bmp, ico, and webp (regardless of if they are supported). @@ -157,15 +160,22 @@ Windows Delegate Updates/Additions: -* Update bundled libjasper to version 1.900.26. +* Update bundled libjasper to version 1.900.26. Please note that 4.0.0 + is the latest version at this time and fixes a great many security + and stability issues which are present in 1.900.26. * Update bundled libjpeg to version 9e. -* Update bundled libtiff to version 4.5.0 (but still compilable using MSVC2008!). +* Update bundled libtiff to version 4.5.0. Build Changes: -* MSVC: Added porting function to emulate C'99 snprintf for MSVC older than 2015. +* MSVC: Added porting function to emulate C'99 snprintf for MSVC older + than 2015. + +* MSVC: Successfully compiles using Visual Studio 2008 and 2019. + Compiles successfully using Visual Studio 2022 if optimization is + disabled (otherwise there is an internal compiler error in effect.c). Behavior Changes: diff -r 7911eb52ab6c -r 98057dd948cd VisualMagick/installer/inc/version.isx --- a/VisualMagick/installer/inc/version.isx Mon Dec 26 16:05:30 2022 +0100 +++ b/VisualMagick/installer/inc/version.isx Mon Dec 26 10:15:30 2022 -0600 @@ -10,5 +10,5 @@ #define public MagickPackageName "GraphicsMagick" #define public MagickPackageVersion "1.4" -#define public MagickPackageVersionAddendum ".020221225" -#define public MagickPackageReleaseDate "snapshot-20221225" +#define public MagickPackageVersionAddendum ".020221226" +#define public MagickPackageReleaseDate "snapshot-20221226" diff -r 7911eb52ab6c -r 98057dd948cd magick/version.h --- a/magick/version.h Mon Dec 26 16:05:30 2022 +0100 +++ b/magick/version.h Mon Dec 26 10:15:30 2022 -0600 @@ -38,8 +38,8 @@ #define MagickLibVersion 0x272400 #define MagickLibVersionText "1.4" #define MagickLibVersionNumber 27,24,0 -#define MagickChangeDate "20221225" -#define MagickReleaseDate "snapshot-20221225" +#define MagickChangeDate "20221226" +#define MagickReleaseDate "snapshot-20221226" /* The MagickLibInterfaceNewest and MagickLibInterfaceOldest defines diff -r 7911eb52ab6c -r 98057dd948cd www/Changelog.html --- a/www/Changelog.html Mon Dec 26 16:05:30 2022 +0100 +++ b/www/Changelog.html Mon Dec 26 10:15:30 2022 -0600 @@ -37,6 +37,18 @@ </div> <div class="document"> +<p>2022-12-26 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p> +<blockquote> +<ul class="simple"> +<li><p>NEWS.txt: Updated the news.</p></li> +</ul> +</blockquote> +<p>2022-12-25 Fojtik Jaroslav <<a class="reference external" href="mailto:JaFojtik%40yandex.com">JaFojtik<span>@</span>yandex<span>.</span>com</a>></p> +<blockquote> +<ul class="simple"> +<li><p>jp2/src/appl/jasper.c: Link problem with jasper utility fixed.</p></li> +</ul> +</blockquote> <p>2022-12-25 Bob Friesenhahn <<a class="reference external" href="mailto:bfriesen%40simple.dallas.tx.us">bfriesen<span>@</span>simple<span>.</span>dallas<span>.</span>tx<span>.</span>us</a>></p> <blockquote> <ul class="simple"> diff -r 7911eb52ab6c -r 98057dd948cd www/NEWS.html --- a/www/NEWS.html Mon Dec 26 16:05:30 2022 +0100 +++ b/www/NEWS.html Mon Dec 26 10:15:30 2022 -0600 @@ -41,7 +41,7 @@ <!-- -*- mode: rst -*- --> <!-- This text is in reStucturedText format, so it may look a bit odd. --> <!-- See http://docutils.sourceforge.net/rst.html for details. --> -<p>This file was last updated to reflect changes up to December 10, 2022</p> +<p>This file was last updated to reflect changes up to December 26, 2022</p> <p>Please note that this file records news for the associated development branch and that each development branch has its own NEWS file. See the ChangeLog file, and/or the Mercurial changesets, for full details.</p> @@ -50,53 +50,53 @@ release and not attempt to patch older releases.</p> <div class="contents local topic" id="contents"> <ul class="simple"> -<li><p><a class="reference internal" href="#id1" id="id3">1.3.39 (???? ??, 2022)</a></p></li> -<li><p><a class="reference internal" href="#march-26-2022" id="id4">1.3.38 (March 26, 2022)</a></p></li> -<li><p><a class="reference internal" href="#december-12-2021" id="id5">1.3.37 (December 12, 2021)</a></p></li> -<li><p><a class="reference internal" href="#december-26-2020" id="id6">1.3.36 (December 26, 2020)</a></p></li> -<li><p><a class="reference internal" href="#february-23-2020" id="id7">1.3.35 (February 23, 2020)</a></p></li> -<li><p><a class="reference internal" href="#december-24-2019" id="id8">1.3.34 (December 24, 2019)</a></p></li> -<li><p><a class="reference internal" href="#july-20-2019" id="id9">1.3.33 (July 20, 2019)</a></p></li> -<li><p><a class="reference internal" href="#june-15-2019" id="id10">1.3.32 (June 15, 2019)</a></p></li> -<li><p><a class="reference internal" href="#november-17-2018" id="id11">1.3.31 (November 17, 2018)</a></p></li> -<li><p><a class="reference internal" href="#june-23-2018" id="id12">1.3.30 (June 23, 2018)</a></p></li> -<li><p><a class="reference internal" href="#april-29-2018" id="id13">1.3.29 (April 29, 2018)</a></p></li> -<li><p><a class="reference internal" href="#january-20-2018" id="id14">1.3.28 (January 20, 2018)</a></p></li> -<li><p><a class="reference internal" href="#december-9-2017" id="id15">1.3.27 (December 9, 2017)</a></p></li> -<li><p><a class="reference internal" href="#july-4-2017" id="id16">1.3.26 (July 4, 2017)</a></p></li> -<li><p><a class="reference internal" href="#september-5-2016" id="id17">1.3.25 (September 5, 2016)</a></p></li> -<li><p><a class="reference internal" href="#may-30-2016" id="id18">1.3.24 (May 30, 2016)</a></p></li> -<li><p><a class="reference internal" href="#november-7-2015" id="id19">1.3.23 (November 7, 2015)</a></p></li> -<li><p><a class="reference internal" href="#october-4-2015" id="id20">1.3.22 (October 4, 2015)</a></p></li> -<li><p><a class="reference internal" href="#february-28-2015" id="id21">1.3.21 (February 28, 2015)</a></p></li> -<li><p><a class="reference internal" href="#august-16-2014" id="id22">1.3.20 (August 16, 2014)</a></p></li> -<li><p><a class="reference internal" href="#december-31-2013" id="id23">1.3.19 (December 31, 2013)</a></p></li> -<li><p><a class="reference internal" href="#march-10-2013" id="id24">1.3.18 (March 10, 2013)</a></p></li> -<li><p><a class="reference internal" href="#october-13-2012" id="id25">1.3.17 (October 13, 2012)</a></p></li> -<li><p><a class="reference internal" href="#june-24-2012" id="id26">1.3.16 (June 24, 2012)</a></p></li> -<li><p><a class="reference internal" href="#april-28-2012" id="id27">1.3.15 (April 28, 2012)</a></p></li> -<li><p><a class="reference internal" href="#february-25-2012" id="id28">1.3.14 (February 25, 2012)</a></p></li> -<li><p><a class="reference internal" href="#december-24-2011" id="id29">1.3.13 (December 24, 2011)</a></p></li> -<li><p><a class="reference internal" href="#march-8-2010" id="id30">1.3.12 (March 8, 2010)</a></p></li> -<li><p><a class="reference internal" href="#february-21-2010" id="id31">1.3.11 (February 21, 2010)</a></p></li> -<li><p><a class="reference internal" href="#february-10-2010" id="id32">1.3.10 (February 10, 2010)</a></p></li> -<li><p><a class="reference internal" href="#february-4-2010" id="id33">1.3.9 (February 4, 2010)</a></p></li> -<li><p><a class="reference internal" href="#january-21-2010" id="id34">1.3.8 (January 21, 2010)</a></p></li> -<li><p><a class="reference internal" href="#september-17-2009" id="id35">1.3.7 (September 17, 2009)</a></p></li> -<li><p><a class="reference internal" href="#july-25-2009" id="id36">1.3.6 (July 25, 2009)</a></p></li> -<li><p><a class="reference internal" href="#january-26-2009" id="id37">1.3.5 (January 26, 2009)</a></p></li> -<li><p><a class="reference internal" href="#january-13-2009" id="id38">1.3.4 (January 13, 2009)</a></p></li> -<li><p><a class="reference internal" href="#december-9-2008" id="id39">1.3.3 (December 9, 2008)</a></p></li> -<li><p><a class="reference internal" href="#november-29-2008" id="id40">1.3.2 (November 29, 2008)</a></p></li> -<li><p><a class="reference internal" href="#november-17-2008" id="id41">1.3.1 (November 17, 2008)</a></p></li> -<li><p><a class="reference internal" href="#november-9-2008" id="id42">1.3 (November 9, 2008)</a></p></li> -<li><p><a class="reference internal" href="#april-29-2008" id="id43">1.2 (April 29, 2008)</a></p></li> -<li><p><a class="reference internal" href="#released-april-4-2004" id="id44">1.1 (Released April 4, 2004)</a></p></li> -<li><p><a class="reference internal" href="#released-in-may-2003" id="id45">1.0 (Released in May, 2003)</a></p></li> +<li><p><a class="reference internal" href="#december-26-2022" id="id2">1.3.39 (December 26, 2022)</a></p></li> +<li><p><a class="reference internal" href="#march-26-2022" id="id3">1.3.38 (March 26, 2022)</a></p></li> +<li><p><a class="reference internal" href="#december-12-2021" id="id4">1.3.37 (December 12, 2021)</a></p></li> +<li><p><a class="reference internal" href="#december-26-2020" id="id5">1.3.36 (December 26, 2020)</a></p></li> +<li><p><a class="reference internal" href="#february-23-2020" id="id6">1.3.35 (February 23, 2020)</a></p></li> +<li><p><a class="reference internal" href="#december-24-2019" id="id7">1.3.34 (December 24, 2019)</a></p></li> +<li><p><a class="reference internal" href="#july-20-2019" id="id8">1.3.33 (July 20, 2019)</a></p></li> +<li><p><a class="reference internal" href="#june-15-2019" id="id9">1.3.32 (June 15, 2019)</a></p></li> +<li><p><a class="reference internal" href="#november-17-2018" id="id10">1.3.31 (November 17, 2018)</a></p></li> +<li><p><a class="reference internal" href="#june-23-2018" id="id11">1.3.30 (June 23, 2018)</a></p></li> +<li><p><a class="reference internal" href="#april-29-2018" id="id12">1.3.29 (April 29, 2018)</a></p></li> +<li><p><a class="reference internal" href="#january-20-2018" id="id13">1.3.28 (January 20, 2018)</a></p></li> +<li><p><a class="reference internal" href="#december-9-2017" id="id14">1.3.27 (December 9, 2017)</a></p></li> +<li><p><a class="reference internal" href="#july-4-2017" id="id15">1.3.26 (July 4, 2017)</a></p></li> +<li><p><a class="reference internal" href="#september-5-2016" id="id16">1.3.25 (September 5, 2016)</a></p></li> +<li><p><a class="reference internal" href="#may-30-2016" id="id17">1.3.24 (May 30, 2016)</a></p></li> +<li><p><a class="reference internal" href="#november-7-2015" id="id18">1.3.23 (November 7, 2015)</a></p></li> +<li><p><a class="reference internal" href="#october-4-2015" id="id19">1.3.22 (October 4, 2015)</a></p></li> +<li><p><a class="reference internal" href="#february-28-2015" id="id20">1.3.21 (February 28, 2015)</a></p></li> +<li><p><a class="reference internal" href="#august-16-2014" id="id21">1.3.20 (August 16, 2014)</a></p></li> +<li><p><a class="reference internal" href="#december-31-2013" id="id22">1.3.19 (December 31, 2013)</a></p></li> +<li><p><a class="reference internal" href="#march-10-2013" id="id23">1.3.18 (March 10, 2013)</a></p></li> +<li><p><a class="reference internal" href="#october-13-2012" id="id24">1.3.17 (October 13, 2012)</a></p></li> +<li><p><a class="reference internal" href="#june-24-2012" id="id25">1.3.16 (June 24, 2012)</a></p></li> +<li><p><a class="reference internal" href="#april-28-2012" id="id26">1.3.15 (April 28, 2012)</a></p></li> +<li><p><a class="reference internal" href="#february-25-2012" id="id27">1.3.14 (February 25, 2012)</a></p></li> +<li><p><a class="reference internal" href="#december-24-2011" id="id28">1.3.13 (December 24, 2011)</a></p></li> +<li><p><a class="reference internal" href="#march-8-2010" id="id29">1.3.12 (March 8, 2010)</a></p></li> +<li><p><a class="reference internal" href="#february-21-2010" id="id30">1.3.11 (February 21, 2010)</a></p></li> +<li><p><a class="reference internal" href="#february-10-2010" id="id31">1.3.10 (February 10, 2010)</a></p></li> +<li><p><a class="reference internal" href="#february-4-2010" id="id32">1.3.9 (February 4, 2010)</a></p></li> +<li><p><a class="reference internal" href="#january-21-2010" id="id33">1.3.8 (January 21, 2010)</a></p></li> +<li><p><a class="reference internal" href="#september-17-2009" id="id34">1.3.7 (September 17, 2009)</a></p></li> +<li><p><a class="reference internal" href="#july-25-2009" id="id35">1.3.6 (July 25, 2009)</a></p></li> +<li><p><a class="reference internal" href="#january-26-2009" id="id36">1.3.5 (January 26, 2009)</a></p></li> +<li><p><a class="reference internal" href="#january-13-2009" id="id37">1.3.4 (January 13, 2009)</a></p></li> +<li><p><a class="reference internal" href="#december-9-2008" id="id38">1.3.3 (December 9, 2008)</a></p></li> +<li><p><a class="reference internal" href="#november-29-2008" id="id39">1.3.2 (November 29, 2008)</a></p></li> +<li><p><a class="reference internal" href="#november-17-2008" id="id40">1.3.1 (November 17, 2008)</a></p></li> +<li><p><a class="reference internal" href="#november-9-2008" id="id41">1.3 (November 9, 2008)</a></p></li> +<li><p><a class="reference internal" href="#april-29-2008" id="id42">1.2 (April 29, 2008)</a></p></li> +<li><p><a class="reference internal" href="#released-april-4-2004" id="id43">1.1 (Released April 4, 2004)</a></p></li> +<li><p><a class="reference internal" href="#released-in-may-2003" id="id44">1.0 (Released in May, 2003)</a></p></li> </ul> </div> -<div class="section" id="id1"> -<h1><a class="toc-backref" href="#id3">1.3.39 (???? ??, 2022)</a></h1> +<div class="section" id="december-26-2022"> +<h1><a class="toc-backref" href="#id2">1.3.39 (December 26, 2022)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>GraphicsMagick really does need some additional productive @@ -124,14 +124,16 @@ <li><p>oss-fuzz: Several security fixes originating from oss-fuzz testing.</p></li> <li><p>ALL: Replace strcpy() with strlcpy(), replace strcat() with strlcat(), replace sprintf() with snprintf(). Prefer using bounded -string functions.</p></li> +string functions. This change is made for the purpose of increasing +safety than to address any existing demonstrated concern.</p></li> </ul> <p>Bug fixes:</p> <ul class="simple"> <li><p>Coverity: Several fixes for issues found by Coverity to reduce the number of reported issues back down to zero.</p></li> -<li><p>Clang Analyzer: Fix most discovered issues.</p></li> -<li><p>PNG: Fix possible use of uninitialized 'ping_num_trans' value in ReadOnePNGImage().</p></li> +<li><p>Clang Analyzer 12: Fix most discovered issues.</p></li> +<li><p>PNG: Fix possible use of uninitialized 'ping_num_trans' value in +ReadOnePNGImage().</p></li> <li><p>MinGW: Eliminate overwrite of existing _MSC_VER value in MinGW compile.</p></li> <li><p>MNG: Fix heap-use-after-free in CloseBlob.</p></li> <li><p>MNG: Fix indirect leak in MagickMallocCleared().</p></li> @@ -146,7 +148,7 @@ written. TGA "Footers" are now read and used when logging as well as converted to Image attributes.</p></li> <li><p>WebP: Add configure.ac updates to check for libsharpyuv so that -builds with development version work again.</p></li> +builds with the development version work again.</p></li> <li><p>Visual Studio Build (VisualMagick): Fix project file generation. Improve portability of code for configure.exe.</p></li> <li><p>Fixed mixed encoding (non-UTF-8) errors in text and source files.</p></li> @@ -164,7 +166,8 @@ to replace use of IsEventLogging(). This avoids a possible performance hit if any logging is enabled at all and logging statements are executed which are filtered and produce no output.</p></li> -<li><p>FITS: Support storing multiple scenes in one file (non-standard extension).</p></li> +<li><p>FITS: Support storing multiple scenes in one file (non-standard +extension).</p></li> <li><p>JPEG: Optionally enable arithmetic coder in JPG images using '-define jpeg:arithmetic-coding=true'.</p></li> <li><p>JPEG: Add support for reading deep gray images.</p></li> @@ -191,8 +194,8 @@ better when reading from files.</p></li> <li><p>JXL: The JXL coder is updated to compile with what will likely become JXL 0.8.0. Support for 16-bit 'short' samples, 16-bit -'float' samples, and 32-bit float samples added. Suppor for reading -and writing ICC, EXIF, and XMP profiles added.</p></li> +'float' samples, and 32-bit float samples added. Support for +reading and writing ICC, EXIF, and XMP profiles added.</p></li> <li><p>MIME: GM "magick" to MIME mappings have been added for apng, avif, bmp, ico, and webp (regardless of if they are supported).</p></li> <li><p>XPM: The XPM reader performance is dramatically improved and is @@ -203,13 +206,19 @@ </ul> <p>Windows Delegate Updates/Additions:</p> <ul class="simple"> -<li><p>Update bundled libjasper to version 1.900.26.</p></li> +<li><p>Update bundled libjasper to version 1.900.26. Please note that 4.0.0 +is the latest version at this time and fixes a great many security +and stability issues which are present in 1.900.26.</p></li> <li><p>Update bundled libjpeg to version 9e.</p></li> -<li><p>Update bundled libtiff to version 4.5.0 (but still compilable using MSVC2008!).</p></li> +<li><p>Update bundled libtiff to version 4.5.0.</p></li> </ul> <p>Build Changes:</p> <ul class="simple"> -<li><p>MSVC: Added porting function to emulate C'99 snprintf for MSVC older than 2015.</p></li> +<li><p>MSVC: Added porting function to emulate C'99 snprintf for MSVC older +than 2015.</p></li> +<li><p>MSVC: Successfully compiles using Visual Studio 2008 and 2019. +Compiles successfully using Visual Studio 2022 if optimization is +disabled (otherwise there is an internal compiler error in effect.c).</p></li> </ul> <p>Behavior Changes:</p> <ul class="simple"> @@ -217,7 +226,7 @@ </ul> </div> <div class="section" id="march-26-2022"> -<h1><a class="toc-backref" href="#id4">1.3.38 (March 26, 2022)</a></h1> +<h1><a class="toc-backref" href="#id3">1.3.38 (March 26, 2022)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>The FTP site ftp.graphicsmagick.org is now shut down due to a lack @@ -318,7 +327,7 @@ </ul> </div> <div class="section" id="december-12-2021"> -<h1><a class="toc-backref" href="#id5">1.3.37 (December 12, 2021)</a></h1> +<h1><a class="toc-backref" href="#id4">1.3.37 (December 12, 2021)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>The FTP site ftp.graphicsmagick.org is now shut down due to a lack @@ -453,7 +462,7 @@ </ul> </div> <div class="section" id="december-26-2020"> -<h1><a class="toc-backref" href="#id6">1.3.36 (December 26, 2020)</a></h1> +<h1><a class="toc-backref" href="#id5">1.3.36 (December 26, 2020)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>None</p></li> @@ -614,7 +623,7 @@ </ul> </div> <div class="section" id="february-23-2020"> -<h1><a class="toc-backref" href="#id7">1.3.35 (February 23, 2020)</a></h1> +<h1><a class="toc-backref" href="#id6">1.3.35 (February 23, 2020)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>It has been discovered that the 'ICU' library (a perhaps 30MB C++ @@ -724,7 +733,7 @@ </ul> </div> <div class="section" id="december-24-2019"> -<h1><a class="toc-backref" href="#id8">1.3.34 (December 24, 2019)</a></h1> +<h1><a class="toc-backref" href="#id7">1.3.34 (December 24, 2019)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>It has been discovered that the 'ICU' library (a perhaps 30MB C++ @@ -841,7 +850,7 @@ </ul> </div> <div class="section" id="july-20-2019"> -<h1><a class="toc-backref" href="#id9">1.3.33 (July 20, 2019)</a></h1> +<h1><a class="toc-backref" href="#id8">1.3.33 (July 20, 2019)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>It has been discovered that the 'ICU' library (a perhaps 30MB C++ @@ -925,7 +934,7 @@ </ul> </div> <div class="section" id="june-15-2019"> -<h1><a class="toc-backref" href="#id10">1.3.32 (June 15, 2019)</a></h1> +<h1><a class="toc-backref" href="#id9">1.3.32 (June 15, 2019)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>It has been discovered that the 'ICU' library (a perhaps 30MB C++ @@ -1135,7 +1144,7 @@ </ul> </div> <div class="section" id="november-17-2018"> -<h1><a class="toc-backref" href="#id11">1.3.31 (November 17, 2018)</a></h1> +<h1><a class="toc-backref" href="#id10">1.3.31 (November 17, 2018)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>Firmware and operating system updates to address the Spectre @@ -1227,7 +1236,7 @@ </ul> </div> <div class="section" id="june-23-2018"> -<h1><a class="toc-backref" href="#id12">1.3.30 (June 23, 2018)</a></h1> +<h1><a class="toc-backref" href="#id11">1.3.30 (June 23, 2018)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>None</p></li> @@ -1306,7 +1315,7 @@ </ul> </div> <div class="section" id="april-29-2018"> -<h1><a class="toc-backref" href="#id13">1.3.29 (April 29, 2018)</a></h1> +<h1><a class="toc-backref" href="#id12">1.3.29 (April 29, 2018)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>None</p></li> @@ -1400,7 +1409,7 @@ </ul> </div> <div class="section" id="january-20-2018"> -<h1><a class="toc-backref" href="#id14">1.3.28 (January 20, 2018)</a></h1> +<h1><a class="toc-backref" href="#id13">1.3.28 (January 20, 2018)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>None</p></li> @@ -1479,7 +1488,7 @@ </ul> </div> <div class="section" id="december-9-2017"> -<h1><a class="toc-backref" href="#id15">1.3.27 (December 9, 2017)</a></h1> +<h1><a class="toc-backref" href="#id14">1.3.27 (December 9, 2017)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>None</p></li> @@ -1637,7 +1646,7 @@ </ul> </div> <div class="section" id="july-4-2017"> -<h1><a class="toc-backref" href="#id16">1.3.26 (July 4, 2017)</a></h1> +<h1><a class="toc-backref" href="#id15">1.3.26 (July 4, 2017)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>None</p></li> @@ -1740,7 +1749,7 @@ </ul> </div> <div class="section" id="september-5-2016"> -<h1><a class="toc-backref" href="#id17">1.3.25 (September 5, 2016)</a></h1> +<h1><a class="toc-backref" href="#id16">1.3.25 (September 5, 2016)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>None</p></li> @@ -1817,7 +1826,7 @@ </ul> </div> <div class="section" id="may-30-2016"> -<h1><a class="toc-backref" href="#id18">1.3.24 (May 30, 2016)</a></h1> +<h1><a class="toc-backref" href="#id17">1.3.24 (May 30, 2016)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>A shell exploit (CVE-2016-5118) was discovered associated with a @@ -1939,7 +1948,7 @@ </ul> </div> <div class="section" id="november-7-2015"> -<h1><a class="toc-backref" href="#id19">1.3.23 (November 7, 2015)</a></h1> +<h1><a class="toc-backref" href="#id18">1.3.23 (November 7, 2015)</a></h1> <p>Special Issues:</p> <ul class="simple"> <li><p>Due to <a class="reference external" href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53967">GCC bug 53967</a>, several key agorithms (e.g. convolution) @@ -2004,7 +2013,7 @@ </ul> </div> <div class="section" id="october-4-2015"> -<h1><a class="toc-backref" href="#id20">1.3.22 (October 4, 2015)</a></h1> +<h1><a class="toc-backref" href="#id19">1.3.22 (October 4, 2015)</a></h1> <p>Thanks:</p> <ul class="simple"> <li><p>Coverity: We thank Coverity for providing free service for free @@ -2113,7 +2122,7 @@