Skip to content

Commit

Permalink
release version 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
wagner-intevation committed Aug 10, 2023
1 parent b3b7201 commit c6a3d33
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
3 changes: 1 addition & 2 deletions client/src/components/WebinputCSV.vue
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ export default ({
errorMessage: null,
showErrorModal: false,
mailgenTargetGroups: [],
clientVersion: "1.0.0",
clientVersion: "1.0.1",
templateDeletionModal: false,
templateToDelete: {'index': null, 'template_name': null},
}
Expand Down Expand Up @@ -1398,7 +1398,6 @@ export default ({
}
if (template.name == templateName) {
newTemplate.state = false;
newTemplate.errorMessage = "Duplicate template name";
return
}
})
Expand Down
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
intelmq-webinput-csv (1.0.1-1) stable; urgency=medium

* template name validation on name change
* backend: verbose error message for empty template in preview
* client: improve default column field names
* client: template deletion safety question
* client+backend: live feedback template syntax check
* frontend, mailgen: optimize UI components placement
* frontend: disable classification fields in dryrun

-- Sebastian Wagner <[email protected]> Thu, 10 Aug 2023 09:07:27 +0200

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

* Design and usability updates.
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, 0, 0)
__version_info__ = (1, 0, 1)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit c6a3d33

Please sign in to comment.