Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
fcaeb10
Fix error when shutdown_agent called from harvest thread (#1552)
TimPansino Oct 23, 2025
669f51e
Add support 4 partial granularity tracing
hmstepanek Jun 6, 2025
996ee66
fix(aiomysql): avoid wrapping pooled connections multiple times (#1553)
canonrock16 Oct 24, 2025
6d7be8c
Fix structlog tests (#1556)
TimPansino Oct 27, 2025
f9ab47b
Bump the github_actions group with 4 updates (#1555)
dependabot[bot] Oct 27, 2025
d1e7b60
Add instrumentation for new kinesis method (#1557)
TimPansino Oct 27, 2025
09eaa22
Move config consolidation into global settings
hmstepanek Oct 27, 2025
b9efe7e
Fix error when shutdown_agent called from harvest thread (#1552)
TimPansino Oct 23, 2025
8a3eb42
fix(aiomysql): avoid wrapping pooled connections multiple times (#1553)
canonrock16 Oct 24, 2025
3a83b40
Fix structlog tests (#1556)
TimPansino Oct 27, 2025
7a484b3
Bump the github_actions group with 4 updates (#1555)
dependabot[bot] Oct 27, 2025
edbfd79
Add instrumentation for new kinesis method (#1557)
TimPansino Oct 27, 2025
f52e9bd
[MegaLinter] Apply linters fixes
hmstepanek Oct 27, 2025
923ad1d
Trigger tests
hmstepanek Oct 28, 2025
953f379
Add free-threaded Python to CI (#1562)
TimPansino Oct 30, 2025
e024468
Move inifinte tracing override to server side config
hmstepanek Oct 30, 2025
d16d5dc
Add free-threaded Python to CI (#1562)
TimPansino Oct 30, 2025
9c14833
Merge branch 'main' into partial-granularity-type-support
hmstepanek Oct 30, 2025
db65db3
[MegaLinter] Apply linters fixes
hmstepanek Oct 30, 2025
7fd81a6
Trigger tests
hmstepanek Oct 30, 2025
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
2 changes: 1 addition & 1 deletion .github/containers/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ RUN mv "${HOME}/.local/bin/python3.11" "${HOME}/.local/bin/pypy3.11" && \
mv "${HOME}/.local/bin/python3.10" "${HOME}/.local/bin/pypy3.10"

# Install CPython versions
RUN uv python install -f cp3.14 cp3.13 cp3.12 cp3.11 cp3.10 cp3.9 cp3.8
RUN uv python install -f cp3.14 cp3.14t cp3.13 cp3.12 cp3.11 cp3.10 cp3.9 cp3.8

# Set default Python version to CPython 3.13
RUN uv python install -f --default cp3.13
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-ci-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
touch "${{ runner.temp }}/digests/${digest#sha256:}"
- name: Upload Digest
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # 5.0.0
with:
name: digests-${{ matrix.cache_tag }}
path: ${{ runner.temp }}/digests/*
Expand All @@ -114,7 +114,7 @@ jobs:

steps:
- name: Download Digests
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # 5.0.0
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # 6.0.0
with:
path: ${{ runner.temp }}/digests
pattern: digests-*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
CIBW_TEST_SKIP: "*-win_arm64"

- name: Upload Artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # 5.0.0
with:
name: ${{ github.job }}-${{ matrix.wheel }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
openssl md5 -binary "dist/${tarball}" | xxd -p | tr -d '\n' > "dist/${md5_file}"

- name: Upload Artifacts
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # 5.0.0
with:
name: ${{ github.job }}-sdist
path: |
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
environment: ${{ matrix.pypi-instance }}

steps:
- uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # 5.0.0
- uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # 6.0.0
with:
path: ./dist/
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
# Upload MegaLinter artifacts
- name: Archive production artifacts
if: success() || failure()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # 4.6.2
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # 5.0.0
with:
name: MegaLinter reports
include-hidden-files: "true"
Expand Down
Loading
Loading