Deprecation Log¶
See Deprecations
(Source code, png, hires.png, pdf)
metadata-flag¶
Use of flags head or emit_metadata to get a metadata header on some generators is no longer supported. Flags head, emit_metadata and metadata were being used for the same purpose. They have been unified, leaving only the flag metadata.
Recommendation: Use flag metadata instead
owlgen-skip-vacuous-min-zero-cardinality-default¶
The default for skip_vacuous_min_zero_cardinality_axioms in OwlSchemaGenerator will change from False to True in a future release.
Recommendation: Set skip_vacuous_min_zero_cardinality_axioms=True to suppress vacuous axioms, or set it explicitly to False to preserve current behaviour and silence this warning.
owlgen-skip-vacuous-local-range-default¶
The default for skip_vacuous_local_range_axioms in OwlSchemaGenerator will change from False to True in a future release.
Recommendation: Set skip_vacuous_local_range_axioms=True to suppress vacuous axioms, or set it explicitly to False to preserve current behaviour and silence this warning.
owlgen-consolidate-cardinality-axioms-default¶
The default for consolidate_cardinality_axioms in OwlSchemaGenerator will change from False to True in a future release.
Recommendation: Set consolidate_cardinality_axioms=True to emit consolidated axioms, or set it explicitly to False to preserve current behaviour and silence this warning.
schema-builder-import-location¶
Importing SchemaBuilder from linkml.utils.schema_builder is deprecated. SchemaBuilder now lives only in linkml_runtime.
Recommendation: Use from linkml_runtime.utils.schema_builder import SchemaBuilder instead.
lint-validate-flag¶
The –validate flag for linkml-lint is deprecated. Metamodel validation now always runs before linting.
Recommendation: Remove the –validate flag from your command. Metamodel validation is now automatic.