Skip to content

Commit 5169309

Browse files
committed
Bump to v4.2.1, refresh schema and update HISTORY.rst
1 parent f28dc10 commit 5169309

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ History
55
Unreleased / master
66
-------------------
77

8+
4.2.1 (2024-08-19)
9+
-------------------
10+
11+
Roles and permissions: Granted ``SELECT``, ``INSERT``, ``UPDATE`` on ``ProcessedTomogram``
12+
for ``ispyb_processing``
13+
814
4.2.0 (2024-08-14)
915
-------------------
1016

schemas/ispyb/lookups.sql

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
1111

1212
/*!40000 ALTER TABLE `AdminVar` DISABLE KEYS */;
13-
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','4.2.0');
13+
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','4.2.1');
1414
/*!40000 ALTER TABLE `AdminVar` ENABLE KEYS */;
1515

1616
/*!40000 ALTER TABLE `SchemaStatus` DISABLE KEYS */;
@@ -262,7 +262,8 @@ INSERT INTO `SchemaStatus` (`schemaStatusId`, `scriptName`, `schemaStatus`, `rec
262262
(291,'2024_07_08_BLSampleGroup_ownerId.sql','DONE','2024-08-14 11:23:41'),
263263
(292,'2024_07_16_ContainerType_insert_new.sql','DONE','2024-08-14 11:23:41'),
264264
(293,'2024_08_08_ProcessedTomogram.sql','DONE','2024-08-14 11:23:41'),
265-
(294,'2024_08_14_AdminVar_bump_version.sql','DONE','2024-08-14 11:23:41');
265+
(294,'2024_08_14_AdminVar_bump_version.sql','DONE','2024-08-14 11:23:41'),
266+
(295,'2024_08_19_AdminVar_bump_version.sql','DONE','2024-08-19 12:17:10');
266267
/*!40000 ALTER TABLE `SchemaStatus` ENABLE KEYS */;
267268

268269
/*!40000 ALTER TABLE `ComponentType` DISABLE KEYS */;
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2024_08_19_AdminVar_bump_version.sql', 'ONGOING');
2+
3+
UPDATE AdminVar SET `value` = '4.2.1' WHERE `name` = 'schemaVersion';
4+
5+
UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2024_08_19_AdminVar_bump_version.sql';

0 commit comments

Comments
 (0)