Skip to content

Tags: crossbario/autobahn-python

Tags

v25.10.2

Toggle v25.10.2's commit message
Release v25.10.2 

v25_10_2

Toggle v25_10_2's commit message
Add tag triggers to all workflows Enable all CI/CD workflows to run on version tags (v*) in addition to branches and PRs. This allows tag pushes to automatically trigger the full build, test, and release pipeline. Modified workflows: - wheels.yml: Added 'tags: [v*]' trigger - wheels-docker.yml: Added 'tags: [v*]' trigger - wheels-arm64.yml: Added 'tags: [v*]' trigger - wstest.yml: Added 'tags: [v*]' trigger - main.yml: Added 'tags: [v*]' trigger This fixes the issue where pushing tag v25.10.2 did not trigger any workflows, requiring manual workflow dispatch instead.

master-202510222108

Toggle master-202510222108's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Rel v25.10.2 part2 (#1741) * start new dev branch * Change NVX disable message from RuntimeWarning to info logging When users explicitly disable NVX via AUTOBAHN_USE_NVX=0 (a valid configuration choice), they were getting a noisy RuntimeWarning on every import. This is not a warning condition - it's informational feedback about their intentional configuration. Changed from warnings.warn(RuntimeWarning) to log.info() so users can still see the message if they configure logging to show info level, but it won't be noisy by default. Fixes #1737

master-202510221912

Toggle master-202510221912's commit message
Update wamp-cicd submodule for CRLF line ending fixes Update .cicd submodule to include line ending normalization fixes for both upload and download artifact verification actions. Fixes Windows wheel verification failures caused by CRLF line endings in CHECKSUMS.sha256 files.

master-202510221810

Toggle master-202510221810's commit message
Fix wheels-docker workflow: remove source dist copy The wheels-docker workflow should only build manylinux wheels, not source distributions. Source distribution is built separately in wheels.yml on Linux x86_64 only. Removed lines attempting to copy dist/*.tar.gz which doesn't exist in this workflow, causing build failures.

master-202510221134

Toggle master-202510221134's commit message
Update .cicd submodule: fix download-artifact-verified to use gh api Updates .cicd submodule to commit 7d9bbfc which fixes the critical issue where download-artifact-verified was using 'gh artifact download' command that doesn't exist in GitHub Actions runners. The fixed action now uses 'gh api' with GitHub REST API endpoints: - Lists artifacts via /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts - Filters by name using jq - Downloads zip via /repos/{owner}/{repo}/actions/artifacts/{artifact_id}/zip - Extracts to destination with full retry logic This should resolve the source distribution download failures in release workflows. AI-Disclosure: Assisted by Claude Code (Anthropic, Claude 3.7 Sonnet)

fork-de4c5238-oberstet_autobahn_python-rel_v25_10_2_part2-202510222024

Toggle fork-de4c5238-oberstet_autobahn_python-rel_v25_10_2_part2-202510222024's commit message
Update wamp-cicd submodule for CRLF line ending fixes Update .cicd submodule to include line ending normalization fixes for both upload and download artifact verification actions. Fixes Windows wheel verification failures caused by CRLF line endings in CHECKSUMS.sha256 files.

fork-de4c5238-oberstet_autobahn_python-rel_v25_10_2_part2-202510222023

Toggle fork-de4c5238-oberstet_autobahn_python-rel_v25_10_2_part2-202510222023's commit message
Update wamp-cicd submodule for CRLF line ending fixes Update .cicd submodule to include line ending normalization fixes for both upload and download artifact verification actions. Fixes Windows wheel verification failures caused by CRLF line endings in CHECKSUMS.sha256 files.

v25.10.1

Toggle v25.10.1's commit message
Release v25.10.1 

master-202510201326

Toggle master-202510201326's commit message
fix: Output Sphinx docs to RTD-required directory Read the Docs requires HTML output to be written to $READTHEDOCS_OUTPUT/html/ when using custom build commands. Changes: - Add mkdir -p $READTHEDOCS_OUTPUT/html/ before build - Change sphinx-build output from docs/_build/html to $READTHEDOCS_OUTPUT/html This fixes the "No HTML content found" error on RTD builds. Ref: https://docs.readthedocs.com/platform/stable/build-customization.html#where-to-put-files