From 78ee92c5267c0953929d11523a5ab48d0cdb252e Mon Sep 17 00:00:00 2001 From: Matt Savoie Date: Thu, 19 Dec 2024 15:08:07 -0700 Subject: [PATCH] DAS-2280: Tweak CHANGELOG --- CHANGELOG.md | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f2c8ab..bbbab89 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,21 +9,26 @@ Changelog](http://keepachangelog.com/en/1.0.0/). ### Changed * NODATA and TRANSPARENT values are merged. [[#41](https://github.com/nasa/harmony-browse-image-generator/pull/41)] - - The user visible change is that now a paletted output PNG will have up to 254 color values and a 255th value that is transparent. - - Internally, the code change removes `TRANSPARENT_IDX` (254) and uses `NODATA_IDX` in its stead. A color of (0,0,0,0) was already set to both of the indexes in the ouput PNGs. This ensures the roundtrip from single band to RGBA to Paletted PNG is consistent. + - User visible change: paletted PNG outupt images will have up to 254 color + values and a 255th value that is transparent. + - Internal code changes: removes `TRANSPARENT_IDX` (254) and uses + `NODATA_IDX` (255) in its stead. A color of (0,0,0,0) was previosly set to + both the indexes (254 and 255) in the ouput PNGs and now only 255 will have + this value. This change ensures the roundtrip from single band to RGBA to + Paletted PNG is consistent. ## [v2.1.0] - 2024-12-13 ### Changed -* Input GeoTIFF RGB[A] images are **no longer palettized** when converted to a PNG. The new resulting output browse images are now 3 or 4 band PNG retaining the color information of the input image.[#39](https://github.com/nasa/harmony-browse-image-generator/pull/39) -* Changed pre-commit configuration to remove `black-jupyter` dependency [#38](https://github.com/nasa/harmony-browse-image-generator/pull/38) -* Updates service image's python to 3.12 [#38](https://github.com/nasa/harmony-browse-image-generator/pull/38) -* Simplifies test scripts to run with pytest and pytest plugins [#38](https://github.com/nasa/harmony-browse-image-generator/pull/38) +* Input GeoTIFF RGB[A] images are **no longer palettized** when converted to a PNG. The new resulting output browse images are now 3 or 4 band PNG retaining the color information of the input image.[[#39](https://github.com/nasa/harmony-browse-image-generator/pull/39)] +* Changed pre-commit configuration to remove `black-jupyter` dependency [[#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)] +* Updates service image's python to 3.12 [[#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)] +* Simplifies test scripts to run with pytest and pytest plugins [[#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)] ### Removed -* Removes `test_code_format.py` in favor of `ruff` pre-commit configuration [#38](https://github.com/nasa/harmony-browse-image-generator/pull/38) +* Removes `test_code_format.py` in favor of `ruff` pre-commit configuration [[#38](https://github.com/nasa/harmony-browse-image-generator/pull/38)] ## [v2.0.2] - 2024-10-15