Skip to content

Commit 16e8871

Browse files
committed
Bump to version 1.34.0
1 parent 1912687 commit 16e8871

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

HISTORY.rst

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

8+
1.34.0 (2023-01-16)
9+
-------------------
10+
811
Table/column changes:
912

1013
* Table ``Tomogram``: Extra path and file columns
@@ -16,6 +19,7 @@ Stored procedures:
1619

1720
Grants & roles:
1821

22+
* Add ``EXECUTE`` perms on new procedures to relevant roles
1923
* Create role ispyb_web_verify_tests + grants for verifying data written by with ispyb_web
2024
* Add missing grant for ispyb_web role
2125

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','1.33.0');
13+
INSERT INTO `AdminVar` (`varId`, `name`, `value`) VALUES (4,'schemaVersion','1.34.0');
1414
/*!40000 ALTER TABLE `AdminVar` ENABLE KEYS */;
1515

1616
/*!40000 ALTER TABLE `SchemaStatus` DISABLE KEYS */;
@@ -208,7 +208,8 @@ INSERT INTO `SchemaStatus` (`schemaStatusId`, `scriptName`, `schemaStatus`, `rec
208208
(233,'2022_10_17_BLSession_drop_constraint.sql','DONE','2022-10-17 11:25:35'),
209209
(234,'2022_10_21_Shipping_extra.sql','DONE','2022-11-02 17:04:27'),
210210
(235,'2022_11_02_AdminVar_bump_version.sql','DONE','2022-11-02 17:04:27'),
211-
(236,'2023_01_16_Tomogram_new_cols.sql','DONE','2023-01-16 18:09:03');
211+
(236,'2023_01_16_Tomogram_new_cols.sql','DONE','2023-01-16 18:09:03'),
212+
(237,'2023_01_16_AdminVar_bump_version.sql','DONE','2023-01-16 18:42:40');
212213
/*!40000 ALTER TABLE `SchemaStatus` ENABLE KEYS */;
213214

214215
/*!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 ('2023_01_16_AdminVar_bump_version.sql', 'ONGOING');
2+
3+
UPDATE AdminVar SET `value` = '1.34.0' WHERE `name` = 'schemaVersion';
4+
5+
UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2023_01_16_AdminVar_bump_version.sql';

0 commit comments

Comments
 (0)