Skip to content

Commit deaf3a2

Browse files
Release 1.12.13 (tracks 7d6247db9a143ffd6f22cacf2fca3be400f59250)
1 parent efc672d commit deaf3a2

6 files changed

Lines changed: 28 additions & 15 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.12.12"
1+
__version__ = "1.12.13"

dagster-cloud-examples/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919
"Operating System :: OS Independent",
2020
]
2121
dependencies = [
22-
"dagster-cloud==1.12.12",
22+
"dagster-cloud==1.12.13",
2323
]
2424

2525
[project.license]

dagster-cloud-examples/tox.ini

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,11 @@ passenv =
1212
PYTEST_PLUGINS
1313
CI_PULL_REQUEST
1414
BUILDKITE*
15-
DAGSTER_GIT_REPO_DIR
1615
deps =
17-
-e {env:DAGSTER_GIT_REPO_DIR}/python_modules/dagster[test]
18-
-e {env:DAGSTER_GIT_REPO_DIR}/python_modules/dagster-pipes
19-
-e {env:DAGSTER_GIT_REPO_DIR}/python_modules/libraries/dagster-shared
20-
-e {env:DAGSTER_GIT_REPO_DIR}/python_modules/libraries/dagster-cloud-cli
16+
-e ../../dagster-oss/python_modules/dagster[test]
17+
-e ../../dagster-oss/python_modules/dagster-pipes
18+
-e ../../dagster-oss/python_modules/libraries/dagster-shared
19+
-e ../../dagster-oss/python_modules/libraries/dagster-cloud-cli
2120
-e ../../dagster-cloud/python_modules/dagster-cloud
2221
-e .[tests]
2322
allowlist_externals =

dagster-cloud/dagster_cloud/storage/event_logs/storage.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
EventLogRecord,
1818
EventRecordsFilter,
1919
EventRecordsResult,
20+
PartitionKeyFilter,
2021
RunShardedEventsCursor,
2122
RunStatusChangeRecordsFilter,
2223
)
@@ -27,6 +28,7 @@
2728
from dagster._core.storage.asset_check_execution_record import (
2829
AssetCheckExecutionRecord,
2930
AssetCheckExecutionRecordStatus,
31+
AssetCheckPartitionInfo,
3032
)
3133
from dagster._core.storage.dagster_run import DagsterRunStatsSnapshot
3234
from dagster._core.storage.event_log.base import (
@@ -378,6 +380,7 @@ def _asset_check_execution_record_from_graphql(data: dict, key: AssetCheckKey):
378380
status=AssetCheckExecutionRecordStatus(data["status"]),
379381
event=_event_log_entry_from_graphql(data["event"]),
380382
create_timestamp=data["createTimestamp"],
383+
partition=data.get("partition"),
381384
)
382385

383386

@@ -1232,14 +1235,25 @@ def get_asset_check_execution_history(
12321235
limit: int,
12331236
cursor: Optional[int] = None,
12341237
status: Optional[AbstractSet[AssetCheckExecutionRecordStatus]] = None,
1238+
partition_filter: Optional[PartitionKeyFilter] = None,
12351239
) -> Sequence[AssetCheckExecutionRecord]:
12361240
raise NotImplementedError("Not callable from user cloud")
12371241

12381242
def get_latest_asset_check_execution_by_key(
1239-
self, check_keys: Sequence[AssetCheckKey]
1243+
self,
1244+
check_keys: Sequence[AssetCheckKey],
1245+
partition_filter: Optional[PartitionKeyFilter] = None,
12401246
) -> Mapping[AssetCheckKey, AssetCheckExecutionRecord]:
12411247
raise NotImplementedError("Not callable from user cloud")
12421248

1249+
def get_asset_check_partition_info(
1250+
self,
1251+
keys: Sequence[AssetCheckKey],
1252+
after_storage_id: Optional[int] = None,
1253+
partition_keys: Optional[Sequence[str]] = None,
1254+
) -> Sequence[AssetCheckPartitionInfo]:
1255+
raise NotImplementedError("Not callable from user cloud")
1256+
12431257
def fetch_materializations(
12441258
self,
12451259
records_filter: Union[AssetKey, AssetRecordsFilter],
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.12.12"
1+
__version__ = "1.12.13"

dagster-cloud/pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ classifiers = [
3131
"Operating System :: OS Independent",
3232
]
3333
dependencies = [
34-
"dagster==1.12.12",
35-
"dagster-shared==1.12.12",
36-
"dagster-cloud-cli==1.12.12",
34+
"dagster==1.12.13",
35+
"dagster-shared==1.12.13",
36+
"dagster-cloud-cli==1.12.13",
3737
"pex>=2.1.132,<2.60.0",
3838
"questionary",
3939
"requests",
@@ -93,14 +93,14 @@ insights = [
9393
]
9494
docker = [
9595
"docker",
96-
"dagster-docker==0.28.12",
96+
"dagster-docker==0.28.13",
9797
]
9898
kubernetes = [
9999
"kubernetes",
100-
"dagster-k8s==0.28.12",
100+
"dagster-k8s==0.28.13",
101101
]
102102
ecs = [
103-
"dagster-aws==0.28.12",
103+
"dagster-aws==0.28.13",
104104
"boto3",
105105
]
106106
sandbox = [

0 commit comments

Comments
 (0)