diff --git a/CHANGES.rst b/CHANGES.rst index 4ba590de336..19877342a07 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,3 +1,47 @@ +ctapipe 0.19.3 (2023-06-20) +=========================== + +This is a bugfix release fixing a number of bugs, mainly one preventing the processing of divergent pointing +prod6 data due to a bug in ``SoftwareTrigger``, see below for details. + + +Bug Fixes +--------- + +- Fix peak time units of FlashCamExtractor (See https://github.com/cta-observatory/ctapipe/issues/2336) [`#2337 `__] + +- Fix shape of mask returned by ``NullDataVolumeReducer``. [`#2340 `__] + +- Fix definition of the ``--dl2-subarray`` flag of ``ctapipe-merge``. [`#2341 `__] + +- Fix ``ctapipe-train-disp-reconstructor --help`` raising an exception. [`#2352 `__] + +- Correctly fill ``reference_location`` for ``SubarrayDescription.tel_coords``. [`#2354 `__] + +- Fix ``SoftwareTrigger`` not removing all parts of a removed telescope event + from the array event leading to invalid files produced by ``DataWriter``. [`#2357 `__] + +- Fix that the pixel picker of the matplotlib ``CameraDisplay`` triggers + also for clicks on other ``CameraDisplay`` instances in the same figure. [`#2358 `__] + + +New Features +------------ + +- Add support for Hillas parameters in ``TelescopeFrame`` to + ``CameraDisplay.overlay_moments`` and make sure that the + label text does not overlap with the ellipse. [`#2347 `__] + +- Add support for using ``ctapipe.image.toymodel`` features in ``TelescopeFrame``. [`#2349 `__] + + +Maintenance +----------- + +- Improve docstring and validation of parameters of ``CameraGeometry``. [`#2361 `__] + + + ctapipe v0.19.2 (2023-05-17) ============================ diff --git a/docs/changes/2337.bugfix.rst b/docs/changes/2337.bugfix.rst deleted file mode 100644 index df0f672f2c5..00000000000 --- a/docs/changes/2337.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix peak time units of FlashCamExtractor (See https://github.com/cta-observatory/ctapipe/issues/2336) \ No newline at end of file diff --git a/docs/changes/2340.bugfix.rst b/docs/changes/2340.bugfix.rst deleted file mode 100644 index 2b37cbba9d6..00000000000 --- a/docs/changes/2340.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix shape of mask returned by ``NullDataVolumeReducer``. diff --git a/docs/changes/2341.bugfix.rst b/docs/changes/2341.bugfix.rst deleted file mode 100644 index e84aadcdc24..00000000000 --- a/docs/changes/2341.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix definition of the ``--dl2-subarray`` flag of ``ctapipe-merge``. \ No newline at end of file diff --git a/docs/changes/2347.feature.rst b/docs/changes/2347.feature.rst deleted file mode 100644 index 7838705f765..00000000000 --- a/docs/changes/2347.feature.rst +++ /dev/null @@ -1,3 +0,0 @@ -Add support for Hillas parameters in ``TelescopeFrame`` to -``CameraDisplay.overlay_moments`` and make sure that the -label text does not overlap with the ellipse. diff --git a/docs/changes/2349.feature.rst b/docs/changes/2349.feature.rst deleted file mode 100644 index 8eb063a77fb..00000000000 --- a/docs/changes/2349.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add support for using ``ctapipe.image.toymodel`` features in ``TelescopeFrame``. diff --git a/docs/changes/2352.bugfix.rst b/docs/changes/2352.bugfix.rst deleted file mode 100644 index 20bd28d0b9c..00000000000 --- a/docs/changes/2352.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix ``ctapipe-train-disp-reconstructor --help`` raising an exception. diff --git a/docs/changes/2354.bugfix.rst b/docs/changes/2354.bugfix.rst deleted file mode 100644 index f247d205cdc..00000000000 --- a/docs/changes/2354.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Correctly fill ``reference_location`` for ``SubarrayDescription.tel_coords``. diff --git a/docs/changes/2357.bugfix.rst b/docs/changes/2357.bugfix.rst deleted file mode 100644 index 1fbf377c315..00000000000 --- a/docs/changes/2357.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix ``SoftwareTrigger`` not removing all parts of a removed telescope event -from the array event leading to invalid files produced by ``DataWriter``. diff --git a/docs/changes/2358.bugfix.rst b/docs/changes/2358.bugfix.rst deleted file mode 100644 index bd57dd6a5f1..00000000000 --- a/docs/changes/2358.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Fix that the pixel picker of the matplotlib ``CameraDisplay`` triggers -also for clicks on other ``CameraDisplay`` instances in the same figure. diff --git a/docs/changes/2361.maintenance.rst b/docs/changes/2361.maintenance.rst deleted file mode 100644 index a65d10df73d..00000000000 --- a/docs/changes/2361.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Improve docstring and validation of parameters of ``CameraGeometry``.