From f4808c186161e6365271136141c5898a04aa2491 Mon Sep 17 00:00:00 2001 From: Johannes Hausmann Date: Fri, 5 Jan 2024 09:07:26 +0100 Subject: [PATCH] Added small SQL script to insert current news into dashboard --- scripts/sql/20231026_add_initial_news.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 scripts/sql/20231026_add_initial_news.sql diff --git a/scripts/sql/20231026_add_initial_news.sql b/scripts/sql/20231026_add_initial_news.sql new file mode 100644 index 00000000..8ece4d15 --- /dev/null +++ b/scripts/sql/20231026_add_initial_news.sql @@ -0,0 +1,4 @@ +INSERT INTO news_section_on(published_date, message_text, message_type) VALUES('2023-09-14','New Covigator package release [Release 2.2.2](https://github.com/TRON-Bioinformatics/covigator/releases/tag/v2.2.2)', 'RELEASE'); +INSERT INTO news_section_on(published_date, message_text, message_type) VALUES('2023-10-26','The Covid19Data Portal data update is currently missing lineage calls. We are running the lineage determination separately and will publish a new update soon', 'BUGS'); +INSERT INTO news_section_on(published_date, message_text, message_type) VALUES('2024-01-04','New Covigator package release [Release 2.2.3](https://github.com/TRON-Bioinformatics/covigator/releases/tag/v2.2.3)', 'RELEASE'); +INSERT INTO news_section_on(published_date, message_text, message_type) VALUES('2023-11-18','New Covigator NGS pipeline release [Release 0.18.1](https://github.com/TRON-Bioinformatics/covigator-ngs-pipeline/releases/tag/v0.18.1). In this version, minor bugs have been fixed and new pipeline modes have been added.', 'RELEASE');