docs(profiling): add CPython version upgrade runbook and 3.15 analysis - #17295
Closed
vlad-scherbich wants to merge 3 commits into
Closed
docs(profiling): add CPython version upgrade runbook and 3.15 analysis#17295vlad-scherbich wants to merge 3 commits into
vlad-scherbich wants to merge 3 commits into
Conversation
Codeowners resolved as |
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-docs
branch
from
April 3, 2026 02:02
bf7a9f8 to
1c63f88
Compare
vlad-scherbich
changed the base branch from
main
to
vlad/ddtracepy-upgrade-py-315-feature
April 3, 2026 02:02
vlad-scherbich
marked this pull request as draft
April 3, 2026 02:05
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-feature
branch
from
April 3, 2026 20:59
dda683d to
619f17e
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-feature
branch
from
April 6, 2026 19:25
88f1d5b to
bceb1e6
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-docs
branch
from
April 6, 2026 19:36
1c63f88 to
b25ed6d
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-feature
branch
4 times, most recently
from
April 14, 2026 02:03
a29014d to
d3934e3
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-feature
branch
from
April 15, 2026 21:15
d3934e3 to
6e57d4b
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-docs
branch
from
April 15, 2026 21:16
0133198 to
3c2d6be
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-feature
branch
from
April 15, 2026 21:31
6e57d4b to
f8bf205
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-docs
branch
from
April 15, 2026 21:32
3c2d6be to
3ffa728
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-feature
branch
from
April 15, 2026 21:46
f8bf205 to
5419900
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-docs
branch
5 times, most recently
from
April 15, 2026 21:50
15bb853 to
320cdee
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-feature
branch
from
April 17, 2026 01:06
5419900 to
6421eca
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-docs
branch
from
April 17, 2026 01:06
320cdee to
c57e78b
Compare
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-feature
branch
2 times, most recently
from
April 17, 2026 12:40
4f37ced to
7513bb8
Compare
vlad-scherbich
changed the base branch from
vlad/ddtracepy-upgrade-py-315-feature
to
vlad/ddtracepy-upgrade-py-315-riot-reqs
April 17, 2026 12:49
- docs/contributing-profiling-new-cpython.rst: new maintainer runbook for adding support for a new CPython minor version across the Continuous Profiler (stack/asyncio/lock/memory/heap). References PR #17294 as the 3.15 example. - docs/cpython-diffs/analysis_314_to_315.md: reference analysis of every 3.14->3.15 ABI change relevant to echion, with echion impact notes and a completed checklist - docs/contributing.rst: link to new runbook in the contributing index - compare-cpython-versions skill: add enum-renumbering checklist item and static_assert / -Wswitch contract pattern for catching future regressions Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
vlad-scherbich
force-pushed
the
vlad/ddtracepy-upgrade-py-315-docs
branch
from
April 17, 2026 12:51
c57e78b to
9ca7a80
Compare
Contributor
|
This pull request has been automatically closed after a period of inactivity. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
< Prev PR
https://datadoghq.atlassian.net/browse/PROF-14200
Description
Documentation for v3.14 - 3.15 migration PR: feat(profiling): support Python 3.15 (#17294).
Changes
docs/contributing-profiling-new-cpython.rst: new maintainer runbook for adding support for a new CPython minor version across the full Continuous Profiler stack (Echion/stack, asyncio, lock, memory/heap). Covers preparation, discovery, implementation checklist, and validation. References PR feat(profiling): [2/n][NO_MERGE] support Python 3.15 for profiling #17294 as the canonical 3.15 example.docs/cpython-diffs/analysis_314_to_315.md: reference analysis of every 3.14→3.15 ABI change relevant to echion — per-item impact notes, completed checklist, and cross-references to the guards we added. Useful when doing the 3.16 port.docs/contributing.rst: adds a link to the new runbook in the contributing index..claude/skills/compare-cpython-versions/SKILL.md: adds explicit enum-renumbering checklist item (silent correctness bug, not a compile error) and thestatic_assert/-Wswitchcontract pattern as the recommended approach for catching future CPython regressions at build time.