Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:

env:
DATABASE_SCHEMA: 4.8.0
DATABASE_SCHEMA: 4.9.0

permissions:
contents: read
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ History
Unreleased / main
-------------------

11.1.0 (2025-10-02)
-------------------

* Update database schema to v4.9.0
* Use procedure insert_screening_v2 with extra param instead of insert_screening

11.0.4 (2025-07-17)
-------------------

Expand Down
3 changes: 2 additions & 1 deletion src/ispyb/sp/mxscreening.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ def __init__(self):
("program_version", None),
("short_comments", None),
("comments", None),
("auto_proc_program_id", None),
]
)
_screening_input_params = StrictOrderedDict(
Expand Down Expand Up @@ -180,7 +181,7 @@ def get_screening_strategy_sub_wedge_params(cls):

def insert_screening(self, values):
return self.get_connection().call_sp_write(
procname="insert_screening", args=(values)
procname="insert_screening_v2", args=(values)
)

def insert_screening_input(self, values):
Expand Down
Loading