You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* add branch audit file
* fix: add missing @inlineCallbacks decorators (#2164)
Add missing @inlineCallbacks decorator to RouterWebServiceWebhook.create()
and MarketMaker.revoke_offer(). Without the decorator, these functions
silently return generator objects instead of executing the async code.
Note: This work was completed with AI assistance (Claude Code).
* chore: bump version to 26.4.1.dev1
* fix: add bump-dev recipe for auto CalVer versioning (#2166)
Add bump-dev recipe that auto-computes the next dev version from the
current date (YY.M.1.dev1) instead of requiring manual version input.
Note: This work was completed with AI assistance (Claude Code).
* fix: replace deprecated pkg_resources with importlib.resources (#2167)
Replace pkg_resources.resource_filename() calls in test_util.py with
importlib.resources.files(). pkg_resources has been removed from recent
setuptools versions, breaking CI on environments without it.
Note: This work was completed with AI assistance (Claude Code).
* fix: correct import ordering in test_util.py
Group stdlib import (importlib.resources) with other stdlib imports
to satisfy ruff import sorting rules.
Note: This work was completed with AI assistance (Claude Code).
* add release key for 26.4
* fix: handle ty version differences in check-typing recipe
Auto-detect whether ty uses "not-subscriptable" (older) or
"non-subscriptable" (newer) rule name to avoid unknown-rule warnings
across different ty versions.
Note: This work was completed with AI assistance (Claude Code).
* docs: add changelog entry for 26.4.1
Note: This work was completed with AI assistance (Claude Code).
Copy file name to clipboardExpand all lines: docs/changelog.rst
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,15 @@
5
5
Changelog
6
6
=========
7
7
8
+
26.4.1
9
+
------
10
+
11
+
* fix: add missing ``@inlineCallbacks`` decorator on ``RouterWebServiceWebhook.create()`` (`#2164 <https://github.com/crossbario/crossbar/issues/2164>`_)
12
+
* fix: add missing ``@inlineCallbacks`` decorator on ``MarketMaker.revoke_offer()`` (`#2164 <https://github.com/crossbario/crossbar/issues/2164>`_)
13
+
* fix: replace deprecated ``pkg_resources`` with ``importlib.resources`` in test code (`#2167 <https://github.com/crossbario/crossbar/issues/2167>`_)
14
+
* new: add ``bump-dev`` justfile recipe for auto CalVer versioning (`#2166 <https://github.com/crossbario/crossbar/issues/2166>`_)
15
+
* fix: handle ``ty`` rule name differences across versions in ``check-typing`` recipe
0 commit comments