Skip to content

Commit 96d2288

Browse files
authored
Revert pydantic-forms 1.1.1 to 1.1.0 summary not shown (#772)
* Revert pydantic-forms 1.1.1 to 1.1.0 summary not shown * Bump version
1 parent 6230904 commit 96d2288

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.8.0rc4
2+
current_version = 2.8.0rc5
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(rc(?P<build>\d+))?

orchestrator/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
"""This is the orchestrator workflow engine."""
1515

16-
__version__ = "2.8.0rc4"
16+
__version__ = "2.8.0rc5"
1717

1818
from orchestrator.app import OrchestratorCore
1919
from orchestrator.settings import app_settings

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies = [
6464
"oauth2-lib~=2.3.0",
6565
"tabulate==0.9.0",
6666
"strawberry-graphql==0.232.2",
67-
"pydantic-forms~=1.1.1",
67+
"pydantic-forms==1.1.0",
6868
]
6969

7070
description-file = "README.md"

test/unit_tests/forms/test_display_subscription.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ class Form(FormPage):
3636
summary: Summary
3737

3838
expected = {
39-
"$defs": {"MigrationSummaryValue": {"properties": {}, "title": "MigrationSummaryValue", "type": "object"}},
4039
"additionalProperties": False,
4140
"properties": {
4241
"display_sub": {
@@ -53,7 +52,6 @@ class Form(FormPage):
5352
"type": "string",
5453
},
5554
"summary": {
56-
"allOf": [{"$ref": "#/$defs/MigrationSummaryValue"}],
5755
"format": "summary",
5856
"default": None,
5957
"type": "string",

0 commit comments

Comments
 (0)