Skip to content

Commit

Permalink
Update to version 1.33.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KarlLevik committed Nov 2, 2022
1 parent 3da5094 commit b56ade4
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
26 changes: 26 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,32 @@ History
Unreleased / master
-------------------

1.33.0 (2022-11-02)
-------------------

Column changes:

* Table ``Shipping``: Add column ``extra`` (JSON)
* Table ``BLSample_has_DataCollectionPlan``: Change datatype of ``planOrder`` to smallint unsigned

Data:

* Table ``ExperimentType``: Insert rows for 'em' proposalTypes 'Tomography' and 'Single Particle'
* Table ``ContainerType``: Set correct capacity for Block-4

Stored procedures:

* Procedure ``update_container_assign``: Add ``proposalCode``, ``proposalNumber`` to returned result

* Grants:

* Add ``SELECT``, ``INSERT``, ``UPDATE`` perms on ``ProcessingJob`` + ``ProcessingJobParameter`` tables for ``ispyb_processing`` role

Other:

* Scripts: Add extra mariabackup options to ``mdb_cluster_backup.sh``
* Analysis schema: Create and populate ``SummaryResults`` table

1.32.0 (2022-08-25)
-------------------

Expand Down
5 changes: 5 additions & 0 deletions schemas/ispyb/updates/2022_11_02_AdminVar_bump_version.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
INSERT IGNORE INTO SchemaStatus (scriptName, schemaStatus) VALUES ('2022_11_02_AdminVar_bump_version.sql', 'ONGOING');

UPDATE AdminVar SET `value` = '1.33.0' WHERE `name` = 'schemaVersion';

UPDATE SchemaStatus SET schemaStatus = 'DONE' WHERE scriptName = '2022_11_02_AdminVar_bump_version.sql';

0 comments on commit b56ade4

Please sign in to comment.