Skip to content

Commit bb74dfa

Browse files
REL: Field name drop down improvements and more
## Backend * New API endpoint to check the validity of a field name with IntelMQ. ## Frontend * Updated dependencies: babel/traverse, browserify-sign * Mail parser: handle multi-line subject/to * yarn.lock: re-resolve all packages * Field name drop downs: * prevent overflows * add wrapping and reduce paddings * improve visibility of action buttons * check the validity of an entered field name with IntelMQ * validate checkbox: show reason if no bots available * other minor improvements ## Documentation * minor changes
1 parent 55b1b71 commit bb74dfa

File tree

4 files changed

+42
-4
lines changed

4 files changed

+42
-4
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@ CHANGELOG
22
=========
33

44

5+
1.2.4: Field name selector improvements
6+
---------------------------------------
7+
8+
## Backend
9+
* New API endpoint to check the validity of a field name with IntelMQ.
10+
11+
## Frontend
12+
* Updated dependencies: babel/traverse, browserify-sign
13+
* Mail parser: handle multi-line subject/to
14+
* yarn.lock: re-resolve all packages
15+
* Field name drop downs:
16+
* prevent overflows
17+
* add wrapping and reduce paddings
18+
* improve visibility of action buttons
19+
* check the validity of an entered field name with IntelMQ
20+
* validate checkbox: show reason if no bots available
21+
* other minor improvements
22+
23+
## Documentation
24+
* minor changes
25+
526
1.2.3: CSV special case corrections, extra data in notifications, documentation (2023-10-13)
627
--------------------------------------------------------------------------------------------
728

client/src/components/WebinputCSV.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ export default ({
826826
errorMessage: null,
827827
showErrorModal: false,
828828
mailgenTargetGroups: [],
829-
clientVersion: "1.2.3",
829+
clientVersion: "1.2.4",
830830
templateDeletionModal: false,
831831
templateToDelete: {'index': null, 'template_name': null},
832832
mailgenTemplate: '',

debian/changelog

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
intelmq-webinput-csv (1.2.3-1) UNRELEASED; urgency=medium
1+
intelmq-webinput-csv (1.2.4-1) stable; urgency=medium
2+
3+
* Backend: New API endpoint to check the validity of a field name with IntelMQ.
4+
* Frontend: Updated dependencies: babel/traverse, browserify-sign
5+
* Frontend: Mail parser: handle multi-line subject/to
6+
* Frontend: yarn.lock: re-resolve all packages
7+
* Frontend: Field name drop downs:
8+
* prevent overflows
9+
* add wrapping and reduce paddings
10+
* improve visibility of action buttons
11+
* check the validity of an entered field name with IntelMQ
12+
* Frontend: validate checkbox: show reason if no bots available
13+
* Frontend: other minor improvements
14+
* Documentation: minor changes
15+
16+
-- Sebastian Wagner <swagner@intevation.de> Thu, 27 Jun 2024 11:49:50 +0200
17+
18+
intelmq-webinput-csv (1.2.3-1) stable; urgency=medium
219

320
* backend: convert example data to Event to handle extra data in database insert:
421
for the mailgen preview, convert the example data to an IntelMQ event

intelmq_webinput_csv/version.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: 2017-2018 nic.at GmbH <wagner@cert.at>, 2022-2023 Bundesamt für Sicherheit in der Informationstechnik
1+
# SPDX-FileCopyrightText: 2017-2018 nic.at GmbH <wagner@cert.at>, 2022-2024 Bundesamt für Sicherheit in der Informationstechnik
22
# SPDX-License-Identifier: AGPL-3.0-or-later
3-
__version_info__ = (1, 2, 3)
3+
__version_info__ = (1, 2, 4)
44
__version__ = '.'.join(map(str, __version_info__))

0 commit comments

Comments
 (0)