@@ -8,6 +8,61 @@ Release Notes
88This page provides a high-level overview of important changes in each release.
99For detailed technical changes, see the :ref: `changelog <changelog >`.
1010
11+ 25.12.2 (2025-12-15)
12+ --------------------
13+
14+ **Release Type: ** Stable release
15+
16+ **Source Build: ** `master-202512150317 <https://github.com/crossbario/autobahn-python/releases/tag/master-202512150317 >`__
17+
18+ Highlights
19+ ^^^^^^^^^^
20+
21+ This release synchronizes the CI/CD infrastructure and FlatBuffers vendoring
22+ between autobahn-python and zlmdb, ensuring consistent behavior for applications
23+ using both libraries (like Crossbar.io).
24+
25+ Key changes:
26+
27+ * **manylinux compatibility fix **: Switched from manylinux_2_34 to manylinux_2_28
28+ containers to avoid x86_64_v2 ISA requirements that caused auditwheel failures
29+ when bundling the flatc compiler.
30+
31+ * **FlatBuffers version sync **: Added ``check_zlmdb_flatbuffers_version_in_sync() ``
32+ function to verify autobahn and zlmdb use compatible FlatBuffers runtimes.
33+
34+ * **Improved release workflow **: Consolidated artifact download recipes with
35+ checksum verification for supply chain security.
36+
37+ Artifact Verification
38+ ^^^^^^^^^^^^^^^^^^^^^
39+
40+ All release artifacts include SHA256 checksums for integrity verification.
41+
42+ * `wheels-CHECKSUMS.sha256 <https://github.com/crossbario/autobahn-python/releases/download/master-202512150317/wheels-CHECKSUMS.sha256 >`__
43+ * `docker-CHECKSUMS.sha256 <https://github.com/crossbario/autobahn-python/releases/download/master-202512150317/docker-CHECKSUMS.sha256 >`__
44+ * `arm64-CHECKSUMS.sha256 <https://github.com/crossbario/autobahn-python/releases/download/master-202512150317/arm64-CHECKSUMS.sha256 >`__
45+
46+ To verify a downloaded artifact:
47+
48+ .. code-block :: bash
49+
50+ # Download checksum file
51+ curl -LO https://github.com/crossbario/autobahn-python/releases/download/master-202512150317/wheels-CHECKSUMS.sha256
52+
53+ # Verify a wheel (example)
54+ openssl sha256 autobahn-25.12.2-cp311-cp311-manylinux_2_28_x86_64.whl
55+ # Compare output with corresponding line in CHECKSUMS file
56+
57+ Release Links
58+ ^^^^^^^^^^^^^
59+
60+ * `GitHub Release <https://github.com/crossbario/autobahn-python/releases/tag/v25.12.2 >`__
61+ * `PyPI Package <https://pypi.org/project/autobahn/25.12.2/ >`__
62+ * `Documentation <https://autobahn.readthedocs.io/en/v25.12.2/ >`__
63+
64+ **Detailed Changes: ** See :ref: `changelog ` (25.12.2 section)
65+
116625.12.1 (2025-12-10)
1267--------------------
1368
0 commit comments