Skip to content

Commit

Permalink
Merge pull request #800 from lsst/tickets/DM-35063-v25b
Browse files Browse the repository at this point in the history
DM-35063: Fix deprecation timeline for accessing integer ID repositories
  • Loading branch information
timj authored Mar 8, 2023
2 parents 8789b06 + 985e7db commit a7f022e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions doc/lsst.daf.butler/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Butler v25.0.0 2023-02-27
=========================

This is the last release that can access data repositories using integer dataset IDs.
Please either recreate these repositories or convert them to use UUIDs using `the butler migrate tooling <https://github.com/lsst-dm/daf_butler_migrate>`_.

New Features
------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ def schemaDigest(self) -> str | None:


@deprecated(
"Integer dataset IDs are deprecated in favor of UUIDs; support will be removed after v26. "
"Integer dataset IDs are deprecated in favor of UUIDs; support will be removed after v25. "
"Please migrate or re-create this data repository.",
version="v25.0",
category=FutureWarning,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def getDataId(self, id: DatasetId) -> DataCoordinate:


@deprecated(
"Integer dataset IDs are deprecated in favor of UUIDs; support will be removed after v26. "
"Integer dataset IDs are deprecated in favor of UUIDs; support will be removed after v25. "
"Please migrate or re-create this data repository.",
version="v25.0",
category=FutureWarning,
Expand Down

0 comments on commit a7f022e

Please sign in to comment.