Skip to content

Commit

Permalink
REL: Version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wagner-intevation committed Sep 12, 2023
1 parent 9ab8e8a commit c63619a
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 3 deletions.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,29 @@ CHANGELOG
=========


1.2.0: Single template input (2023-09-08)
-----------------------------------------

## Frontend
- Redesign to a single template input. The multi-template editor is hidden and can be activated with the parameter `mailgen_multi_templates_enabled`
- Pass assigned columns to the backend for notification preview and data submission
- Minor style enhancement in email preview
- Minor: add more spacing between the explanation text and the subject
- Target groups: add select all/none buttons
- Separate function for converting data to table

## Backend
- Allow single template input and pass to mailgen
- Do not send data to the redis queue if validation/submission with bots is active (would be a double-submit)
- Refactor format_spec creation, more checks/sanitation
- Template preview: use first line of data instead of fully relying on example data, use the first line of input data if available
- Use assigned columns as default table format: the columns assigned by the user in the frontend are used as default table format for mailgen
- Compatibility changes on deprecated pkg_resources / importlib replacement, make it compatible on both Ubuntu 20.04 and 22.04, update tests and GitHub Workflows

## Documentation
- Add section about the behaviour of the Frontend's "Submit/Validate with Bots" parameter


1.1.0: UI Enhancements (2023-08-21)
-----------------------------------

Expand Down Expand Up @@ -148,7 +171,7 @@ CHANGELOG
- Do not throw errors on badly formatted time fields (#65).
- Add optional parameter `destination_pipeline_queue_formatted` and allow formatting of `destination_pipeline_queue`.
- Log exception if sending data to the pipeline did not work.
- For type-detection do not apply sanitiation as this results in strange detections some times (#69).
- For type-detection do not apply sanitation as this results in strange detections some times (#69).
- Save `raw` field including header for each event (#66).

### Configuration
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/WebinputCSV.vue
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ export default ({
errorMessage: null,
showErrorModal: false,
mailgenTargetGroups: [],
clientVersion: "1.1.0",
clientVersion: "1.2.0",
templateDeletionModal: false,
templateToDelete: {'index': null, 'template_name': null},
mailgenTemplate: '',
Expand Down
21 changes: 21 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
intelmq-webinput-csv (1.2.0-1) stable; urgency=medium

* Frontend
* Redesign to a single template input. The multi-template editor is hidden and can be activated with the parameter `mailgen_multi_templates_enabled`
* Pass assigned columns to the backend for notification preview and data submission
* Minor style enhancement in email preview
* Minor: add more spacing between the explanation text and the subject
* Target groups: add select all/none buttons
* Separate function for converting data to table
* Backend
* Allow single template input and pass to mailgen
* Do not send data to the redis queue if validation/submission with bots is active (would be a double-submit)
* Refactor format_spec creation, more checks/sanitation
* Template preview: use first line of data instead of fully relying on example data, use the first line of input data if available
* Use assigned columns as default table format: the columns assigned by the user in the frontend are used as default table format for mailgen
* Compatibility changes on deprecated pkg_resources / importlib replacement, make it compatible on both Ubuntu 20.04 and 22.04, update tests and GitHub Workflows
* Documentation
* Add section about the behaviour of the Frontend's "Submit/Validate with Bots" parameter

-- Sebastian Wagner <[email protected]> Fri, 08 Sep 2023 12:14:35 +0200

intelmq-webinput-csv (1.1.0-1) stable; urgency=medium

* Frontend
Expand Down
2 changes: 1 addition & 1 deletion intelmq_webinput_csv/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SPDX-FileCopyrightText: 2017-2018 nic.at GmbH <[email protected]>, 2022-2023 Bundesamt für Sicherheit in der Informationstechnik
# SPDX-License-Identifier: AGPL-3.0-or-later
__version_info__ = (1, 1, 0)
__version_info__ = (1, 2, 0)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit c63619a

Please sign in to comment.