@@ -253,7 +253,7 @@ artifacts = store.get_artifacts()
253253# Plus, there are many ways to query the same Artifact
254254[stored_data_artifact] = store.get_artifacts_by_id([data_artifact_id])
255255artifacts_with_uri = store.get_artifacts_by_uri(data_artifact.uri)
256- # Note: filter_query is deprecated and will be removed in version 1.18 .0.
256+ # Note: filter_query has been removed in version 1.21 .0.
257257artifacts_with_conditions = store.get_artifacts(
258258 list_options = mlmd.ListOptions(
259259 filter_query = ' uri LIKE "%/data" AND properties.day.int_value > 0' ))
@@ -271,7 +271,7 @@ trainer_run.properties["state"].string_value = "RUNNING"
271271# Query all registered Execution
272272executions = store.get_executions_by_id([run_id])
273273# Similarly, the same execution can be queried with conditions.
274- # Note: filter_query is deprecated and will be removed in version 1.18 .0.
274+ # Note: filter_query has been removed in version 1.21 .0.
275275executions_with_conditions = store.get_executions(
276276 list_options = mlmd.ListOptions(
277277 filter_query = ' type = "Trainer" AND properties.state.string_value IS NOT NULL' ))
@@ -357,7 +357,7 @@ experiment_executions = store.get_executions_by_context(experiment_id)
357357
358358# You can also use neighborhood queries to fetch these artifacts and executions
359359# with conditions.
360- # Note: filter_query is deprecated and will be removed in version 1.18 .0.
360+ # Note: filter_query has been removed in version 1.21 .0.
361361experiment_artifacts_with_conditions = store.get_artifacts(
362362 list_options = mlmd.ListOptions(
363363 filter_query = (' contexts_a.type = "Experiment" AND contexts_a.name = "exp1"' )))
@@ -524,6 +524,7 @@ The list of `schema_version` used in MLMD releases are:
524524
525525ml-metadata (MLMD) | schema_version
526526------------------ | --------------
527+ 1.21.0 | 10
5275281.16.0 | 10
5285291.15.0 | 10
5295301.14.0 | 10
0 commit comments