Skip to content

Commit 93324d5

Browse files
authored
fix(protocol-designer): require app version 8.5.1 to run (#19064)
closes RQA-4461
1 parent e2b8fbd commit 93324d5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

protocol-designer/release-notes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Use Opentrons-verified liquid classes to automatically define transfer settings
4141
- Successfully delete a defined liquid that has not been assigned to any location.
4242
- Display correct substep details for all transfer paths and pipettes.
4343

44-
Running a protocol created in Protocol Designer now requires Opentrons App version 8.5.0 or newer.
44+
Running a protocol created in Protocol Designer now requires Opentrons App version 8.5.1 or newer.
4545

4646
## Opentrons Protocol Designer Changes in 8.4.4
4747

protocol-designer/src/assets/localization/en/modal.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"body12": "If the timer of a Heater-Shaker step is toggled on and off, the timer input field no longer errors.",
6464
"body13": "Successfully delete a defined liquid that has not been assigned to any location.",
6565
"body14": "Display correct substep details for all transfer paths and pipettes.",
66-
"body15": "All protocols now require Opentrons App version 8.5.0+ to run.",
66+
"body15": "All protocols now require Opentrons App version 8.5.1+ to run.",
6767
"body16": "For more information, see the <link1>Protocol Designer Instruction Manual</link1>.",
6868
"body2": "We're excited to introduce support for liquid classes and exporting Python!",
6969
"body3": "Additionally, improvements for the following:",

protocol-designer/src/pages/ProtocolOverview/ProtocolMetadata.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
LINK_BUTTON_STYLE,
2020
} from '../../components/atoms'
2121

22-
const REQUIRED_APP_VERSION = '8.5.0'
22+
const REQUIRED_APP_VERSION = '8.5.1'
2323

2424
type MetadataInfo = Array<{
2525
author?: string

protocol-designer/src/pages/ProtocolOverview/__tests__/ProtocolMetadata.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe('ProtocolMetadata', () => {
4545
screen.getByText('Protocol Metadata')
4646
screen.getByText('Edit')
4747
screen.getByText('Required app version')
48-
screen.getByText('8.5.0 or higher')
48+
screen.getByText('8.5.1 or higher')
4949
})
5050

5151
it('should render protocol metadata', () => {

0 commit comments

Comments
 (0)