22. Deprecation Removal Tracking
Optiland’s public API is stable: a signature or attribute is never removed silently. When
something is superseded, the old path stays available, emits a DeprecationWarning pointing
at its replacement, and is tracked here until a maintainer deliberately cuts the release that
removes it. This page is the single place that tracks what is deprecated, what replaces it,
and which release is allowed to remove it — nothing gets removed just because a phase of work
happens to touch the surrounding file.
Current Optiland version: 0.6.0.
22.1. Pending Removals
Deprecated API |
Replacement |
Target removal |
Notes |
|---|---|---|---|
|
|
|
Property getter/setter both emit |
|
|
Not yet committed |
Getter/setter emit |
22.2. How to Use This Table
Adding a new deprecation: when you deprecate an API, add a row here in the same PR, with either a concrete target release or
Not yet committedif none has been agreed.Cutting a release: before tagging the release named in the “Target removal” column, grep for the deprecated symbol, remove it and its
DeprecationWarningshim, update any docs or examples still referencing it, and delete the row from this table in the same PR as the removal.Never remove opportunistically. A refactor that happens to touch a file containing a deprecated shim is not authorization to delete that shim — only the release named in this table is.