Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
97525a2
feat(tracing): support Python 3.15 coroutine and generator wrapping
vlad-scherbich Apr 10, 2026
8bfb2db
chore: add release note for Python 3.15 wrapping support
vlad-scherbich Apr 10, 2026
42a24da
fix(tracing): extend bytecode injection support to Python 3.15
vlad-scherbich Apr 10, 2026
9906e71
fix(tracing): skip context wrapping gracefully when bytecode library …
vlad-scherbich Apr 11, 2026
c5c5631
fix(wrapping): handle CLEANUP_THROW on Python 3.15 in async-generator…
vlad-scherbich Apr 14, 2026
b20ff75
feat(iast): enable IAST on Python 3.15 — taint tracking and AST patch…
vlad-scherbich Apr 14, 2026
87218bc
Pin 3.15 version to 3.15.0a7 in .python_version
vlad-scherbich Apr 6, 2026
6a88745
shortened release note
vlad-scherbich Apr 16, 2026
4d5a9de
update comments
vlad-scherbich Apr 16, 2026
d379be4
updated PY version gates
vlad-scherbich Apr 17, 2026
fae5ff2
feat(profiling): support Python 3.15
vlad-scherbich Apr 3, 2026
80c13e5
ci: remove detect-global-locks.yml (superseded by riotfile.py after #…
vlad-scherbich Apr 3, 2026
f24dc86
fix(profiling): guard asyncio private APIs against future removal
vlad-scherbich Apr 4, 2026
6aaf60a
fix(profiling): raise on known versions, warn on unknown for missing …
vlad-scherbich Apr 4, 2026
b5f6f07
fix(profiling): guard asyncio task WeakSet internals against future r…
vlad-scherbich Apr 4, 2026
a79cc52
fix(profiling): include Python.h before system headers in sample.cpp
vlad-scherbich Apr 10, 2026
b6c596e
fix(profiling): set PYO3_USE_ABI3_FORWARD_COMPATIBILITY=1 for Python …
vlad-scherbich Apr 10, 2026
bd53ccd
fix(profiling): isolate test_before_flush_failure from global tracer
vlad-scherbich Apr 10, 2026
fb18bad
fix(profiling): isolate test_before_flush_failure from ddup.upload
vlad-scherbich Apr 10, 2026
3fb51fc
test(profiling): xfail uwsgi lazy-apps wall-time test on Python 3.15
vlad-scherbich Apr 11, 2026
4ced5f2
test(profiling): xfail asyncio run frames test on Python 3.15
vlad-scherbich Apr 11, 2026
8281f60
fix(profiling): remove usages of INVALID_FRAME from frame.cc
vlad-scherbich Apr 12, 2026
7513bb8
fix(profiling): guard asyncio task-link wrappers against RuntimeError…
vlad-scherbich Apr 13, 2026
62a438f
add pinned riot reqs for v3.15
vlad-scherbich Apr 11, 2026
60039f4
updated riot requirements
vlad-scherbich Apr 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/generate-package-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ jobs:
with:
python-version: "3.14"

- name: Setup Python 3.15
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.15"

- name: Set up QEMU
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/generate-supported-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ jobs:
with:
python-version: "3.14"

- name: Setup Python 3.15
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: "3.15"

- name: Set up QEMU
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0

Expand Down
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -593,17 +593,17 @@ profiling_native:
- pyproject.toml
parallel:
matrix:
- PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
- PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
MEMCPY_MODE: ["default"]
SANITIZER: ["safety", "thread", ""]
# Valgrind on subset only: ASAN/LSAN (in "safety") already cover leaks, buffer overflows,
# and use-after-free. Valgrind's main added value is detecting uninitialized memory usage,
# which is worth checking on a few versions without the slowdown on all runs.
# If needed, please add more versions to the list.
- PYTHON_VERSION: ["3.12", "3.14"]
- PYTHON_VERSION: ["3.12", "3.14", "3.15"]
MEMCPY_MODE: ["default"]
SANITIZER: ["valgrind"]
- PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
- PYTHON_VERSION: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
MEMCPY_MODE: ["fast"]
SANITIZER: ["safety", "thread"]

Expand Down
11 changes: 7 additions & 4 deletions .gitlab/multi-os-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ os tests ubuntu:
tags: ["arch:amd64"]
parallel:
matrix:
- PYTHON_VERSION: ["3.10", "3.12", "3.14"]
- PYTHON_VERSION: ["3.10", "3.12", "3.14", "3.15"]
needs:
- job: "build linux"
parallel:
Expand All @@ -27,6 +27,9 @@ os tests ubuntu:
- ARCH_TAG: "amd64"
PYTHON_TAG: "cp314-cp314"
IMAGE_TAG: "v85383392-751efc0-manylinux2014_x86_64"
- ARCH_TAG: "amd64"
PYTHON_TAG: "cp315-cp315"
IMAGE_TAG: "v85383392-751efc0-manylinux2014_x86_64"
variables:
WHEEL_PATTERN: "manylinux2014*x86_64.whl"
PLATFORM: "Ubuntu"
Expand All @@ -43,7 +46,7 @@ os tests macos:
PLATFORM: "macOS"
script:
- |
for PYTHON_VERSION in 3.10 3.12 3.14; do
for PYTHON_VERSION in 3.10 3.12 3.14 3.15; do
export PYTHON_VERSION
bash .gitlab/scripts/multi-os-tests.sh
done
Expand All @@ -56,10 +59,10 @@ os tests windows:
artifacts: true
parallel:
matrix:
- PYTHON_VERSION: ["3.10", "3.12", "3.14"]
- PYTHON_VERSION: ["3.10", "3.12", "3.14", "3.15"]
WINDOWS_ARCH: "amd64"
parallel:
matrix:
- PYTHON_VERSION: ["3.10", "3.12", "3.14"]
- PYTHON_VERSION: ["3.10", "3.12", "3.14", "3.15"]
script:
- powershell -File .gitlab/scripts/multi-os-tests.ps1
6 changes: 4 additions & 2 deletions .gitlab/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ variables:
- "3.12"
- "3.13"
- "3.14"
- "3.15"

.PYTHON_TAGS: &PYTHON_TAGS
- "cp39-cp39"
Expand All @@ -18,6 +19,7 @@ variables:
- "cp312-cp312"
- "cp313-cp313"
- "cp314-cp314"
- "cp315-cp315"

.AARCH64_IMAGES: &AARCH64_IMAGES
- "v85383414-751efc0-manylinux2014_aarch64"
Expand Down Expand Up @@ -139,9 +141,9 @@ variables:
- ARCH_TAG: "amd64"
PYTHON_VERSIONS:
- "3.9 3.10 3.11"
- "3.12 3.13 3.14"
- "3.12 3.13 3.14 3.15"
- ARCH_TAG: "arm64"
PYTHON_VERSIONS: "3.9 3.10 3.11 3.12 3.13 3.14"
PYTHON_VERSIONS: "3.9 3.10 3.11 3.12 3.13 3.14 3.15"
variables:
SYSTEM_VERSION_COMPAT: "0"
DD_USE_SCCACHE: "1"
Expand Down
2 changes: 1 addition & 1 deletion .gitlab/testrunner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variables:
before_script:
- ulimit -c unlimited
- git config --global --add safe.directory ${CI_PROJECT_DIR}
- pyenv global 3.12 3.9 3.10 3.11 3.13 3.14
- pyenv global 3.12 3.9 3.10 3.11 3.13 3.14 3.15
- export _CI_DD_AGENT_URL=http://${HOST_IP}:8126/
after_script:
- bash .gitlab/scripts/generate-core-backtraces.sh
Expand Down
22 changes: 22 additions & 0 deletions .riot/requirements/10005a7.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/10005a7.in
#
attrs==26.1.0
coverage[toml]==7.13.5
elasticsearch6==6.8.2
hypothesis==6.45.0
iniconfig==2.3.0
mock==5.2.0
opentracing==2.4.0
packaging==26.1
pluggy==1.6.0
pygments==2.20.0
pytest==9.0.3
pytest-cov==7.1.0
pytest-mock==3.15.1
pytest-randomly==4.0.1
sortedcontainers==2.4.0
urllib3==2.6.3
21 changes: 21 additions & 0 deletions .riot/requirements/10213a9.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/10213a9.in
#
attrs==26.1.0
coverage[toml]==7.13.5
hypothesis==6.45.0
iniconfig==2.3.0
mock==5.2.0
msgpack==1.1.2
opentracing==2.4.0
packaging==26.1
pluggy==1.6.0
pygments==2.20.0
pytest==9.0.3
pytest-cov==7.1.0
pytest-mock==3.15.1
pytest-randomly==4.0.1
sortedcontainers==2.4.0
21 changes: 21 additions & 0 deletions .riot/requirements/102af7f.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/102af7f.in
#
attrs==26.1.0
coverage[toml]==7.13.5
hypothesis==6.45.0
iniconfig==2.3.0
mock==5.2.0
openfeature-sdk==0.8.4
opentracing==2.4.0
packaging==26.1
pluggy==1.6.0
pygments==2.20.0
pytest==9.0.3
pytest-cov==7.1.0
pytest-mock==3.15.1
pytest-randomly==4.0.1
sortedcontainers==2.4.0
25 changes: 25 additions & 0 deletions .riot/requirements/104722a.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/104722a.in
#
aiopg==1.4.0
async-timeout==4.0.3
attrs==26.1.0
coverage[toml]==7.13.5
hypothesis==6.45.0
iniconfig==2.3.0
mock==5.2.0
opentracing==2.4.0
packaging==26.1
pluggy==1.6.0
psycopg2-binary==2.9.11
pygments==2.20.0
pytest==9.0.3
pytest-cov==7.1.0
pytest-mock==3.15.1
pytest-randomly==4.0.1
sortedcontainers==2.4.0
sqlalchemy==2.0.49
typing-extensions==4.15.0
59 changes: 59 additions & 0 deletions .riot/requirements/104eddc.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/104eddc.in
#
annotated-types==0.7.0
anyio==4.13.0
attrs==26.1.0
certifi==2026.2.25
charset-normalizer==3.4.7
coverage[toml]==7.13.5
distro==1.9.0
h11==0.16.0
httpcore==1.0.9
httpx==0.28.1
hypothesis==6.45.0
idna==3.11
iniconfig==2.3.0
jiter==0.14.0
jsonpatch==1.33
jsonpointer==3.1.1
langchain==1.2.15
langchain-core==1.2.31
langchain-openai==1.1.14
langgraph==1.1.6
langgraph-checkpoint==4.0.2
langgraph-prebuilt==1.0.9
langgraph-sdk==0.3.13
langsmith==0.7.32
mock==5.2.0
openai==2.32.0
opentracing==2.4.0
orjson==3.11.8
ormsgpack==1.12.2
packaging==26.1
pluggy==1.6.0
pydantic==2.13.1
pydantic-core==2.46.1
pygments==2.20.0
pytest==9.0.3
pytest-asyncio==1.3.0
pytest-cov==7.1.0
pytest-mock==3.15.1
pyyaml==6.0.3
regex==2026.4.4
requests==2.33.1
requests-toolbelt==1.0.0
sniffio==1.3.1
sortedcontainers==2.4.0
tenacity==9.1.4
tiktoken==0.12.0
tqdm==4.67.3
typing-extensions==4.15.0
typing-inspection==0.4.2
urllib3==2.6.3
uuid-utils==0.14.1
xxhash==3.6.0
zstandard==0.25.0
24 changes: 24 additions & 0 deletions .riot/requirements/106d369.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/106d369.in
#
attrs==26.1.0
certifi==2026.2.25
coverage[toml]==7.13.5
elastic-transport==8.17.1
elasticsearch8==8.0.1
hypothesis==6.45.0
iniconfig==2.3.0
mock==5.2.0
opentracing==2.4.0
packaging==26.1
pluggy==1.6.0
pygments==2.20.0
pytest==9.0.3
pytest-cov==7.1.0
pytest-mock==3.15.1
pytest-randomly==4.0.1
sortedcontainers==2.4.0
urllib3==2.6.3
39 changes: 39 additions & 0 deletions .riot/requirements/10b28b2.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/10b28b2.in
#
annotated-types==0.7.0
anthropic==0.96.0
anyio==4.13.0
attrs==26.1.0
certifi==2026.2.25
coverage[toml]==7.13.5
distro==1.9.0
docstring-parser==0.18.0
h11==0.16.0
httpcore==1.0.9
httpx==0.27.2
hypothesis==6.45.0
idna==3.11
iniconfig==2.3.0
jiter==0.14.0
mock==5.2.0
opentracing==2.4.0
packaging==26.1
pluggy==1.6.0
pydantic==2.13.1
pydantic-core==2.46.1
pygments==2.20.0
pytest==9.0.3
pytest-asyncio==1.3.0
pytest-cov==7.1.0
pytest-mock==3.15.1
pyyaml==6.0.3
sniffio==1.3.1
sortedcontainers==2.4.0
typing-extensions==4.15.0
typing-inspection==0.4.2
vcrpy==8.1.1
wrapt==2.1.2
20 changes: 20 additions & 0 deletions .riot/requirements/10db676.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/10db676.in
#
attrs==26.1.0
coverage[toml]==7.13.5
hypothesis==6.45.0
iniconfig==2.3.0
mock==5.2.0
opentracing==2.4.0
packaging==26.1
pluggy==1.6.0
pygments==2.20.0
pytest==9.0.3
pytest-cov==7.1.0
pytest-mock==3.15.1
pytest-randomly==4.0.1
sortedcontainers==2.4.0
26 changes: 26 additions & 0 deletions .riot/requirements/10e66c4.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#
# This file is autogenerated by pip-compile with Python 3.15
# by the following command:
#
# pip-compile --allow-unsafe --no-annotate .riot/requirements/10e66c4.in
#
attrs==26.1.0
certifi==2026.2.25
charset-normalizer==3.4.7
coverage[toml]==7.13.5
hypothesis==6.45.0
idna==3.11
iniconfig==2.3.0
mock==5.2.0
opensearch-py[requests]==1.1.0
opentracing==2.4.0
packaging==26.1
pluggy==1.6.0
pygments==2.20.0
pytest==9.0.3
pytest-cov==7.1.0
pytest-mock==3.15.1
pytest-randomly==4.0.1
requests==2.33.1
sortedcontainers==2.4.0
urllib3==1.26.20
Loading
Loading