1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
|
:tocdepth: 1
.. _changelog:
Changelog
=========
master (unreleased)
-------------------
17.10.1
-------
* fix: proxy support (#918)
* fix: ensure that a future is not done before rejecting it (#919)
* fix: don't try to reject cancelled futures within pending requests when closing the session
17.9.3
------
`Published 2017-09-23 <https://pypi.python.org/pypi/autobahn/17.9.3>`__
* new: user configurable backoff policy
* fix: close aio loop on exit
* fix: some component API cleanups
* fix: cryptosign on py2
* new: allow setting correlation_is_last message marker in WAMP messages from user code
17.9.2
------
`Published 2017-09-12 <https://pypi.python.org/pypi/autobahn/17.9.2>`__
* new: allow setting correlation URI and anchor flag in WAMP messages from user code
* fix: WebSocket proxy connect on Python 3 (unicode vs bytes bug)
17.9.1
------
`Published 2017-09-04 <https://pypi.python.org/pypi/autobahn/17.9.1>`__
* new: allow setting correlation ID in WAMP messages from user code
* fix: distribute LICENSE file in all distribution formats (using setup.cfg metadata)
17.8.1
------
`Published 2017-08-15 <https://pypi.python.org/pypi/autobahn/17.8.1>`__
* new: prefix= kwarg now available on ApplicationSession.register for runtime method names
* new: @wamp.register(None) will use the function-name as the URI
* new: correlation and uri attributes for WAMP message tracing
17.7.1
------
`Published 2017-07-21 <https://pypi.python.org/pypi/autobahn/17.7.1>`__
* new: lots of improvements of components API, including asyncio support
17.6.2
------
`Published 2017-06-24 <https://pypi.python.org/pypi/autobahn/17.6.2>`__
* new: force register option when joining realms
* fix: TLS options in components API
17.6.1
------
`Published 2017-06-07 <https://pypi.python.org/pypi/autobahn/17.6.1>`__
* new: allow components to pass WebSocket/RawSocket options
* fix: register/subscribe decorators support different URI syntax from what session.register and session.subscribe support
* new: allow for standard Crossbar a.c..d style pattern URIs to be used with Pattern
* new: dynamic authorizer example
* new: configurable log level in `ApplicationRunner.run` for asyncio
* fix: forward reason of hard dropping WebSocket connection in `wasNotCleanReason`
17.5.1
------
`Published 2017-05-01 <https://pypi.python.org/pypi/autobahn/17.5.1>`__
* new: switched to calendar-based release/version numbering
* new: WAMP event retention example and docs
* new: WAMP subscribe/register options on WAMP decorators
* fix: require all TLS dependencies on extra_require_encryption setuptools
* new: support for X-Forwarded-For HTTP header
* fix: ABC interface definitions where missing "self"
0.18.2
------
`Published 2017-04-14 <https://pypi.python.org/pypi/autobahn/0.18.2>`__
* new: payload codec API
* fix: make WAMP-cryptobox use new payload codec API
* fix: automatic binary conversation for JSON
* new: improvements to experimental component API
0.18.1
------
`Published 2017-03-28 <https://pypi.python.org/pypi/autobahn/0.18.1>`__
* fix: errback all user handlers for all WAMP requests still outstanding when session/transport is closed/lost
* fix: allow WebSocketServerProtocol.onConnect to return a Future/Deferred
* new: allow configuration of RawSocket serializer
* new: test all examples on both WebSocket and RawSocket
* fix: revert to default arg for Deny reason
* new: WAMP-RawSocket and WebSocket default settings for asyncio
* new: experimental component based API and new WAMP Session class
0.18.0
------
`Published 2017-03-26 <https://pypi.python.org/pypi/autobahn/0.18.0>`__
* fix: big docs cleanup and polish
* fix: docs for publisher black-/whitelisting based on authid/authrole
* fix: serialization for publisher black-/whitelisting based on authid/authrole
* new: allow to stop auto-reconnecting for Twisted ApplicationRunner
* fix: allow empty realms (router decides) for asyncio ApplicationRunner
0.17.2
------
`Published 2017-02-25 <https://pypi.python.org/pypi/autobahn/0.17.2>`__
* new: WAMP-cryptosign elliptic curve based authentication support for asyncio
* new: CI testing on Twisted 17.1
* new: controller/shared attributes on ComponentConfig
0.17.1
------
`Published 2016-12-29 <https://pypi.python.org/pypi/autobahn/0.17.1>`__
* new: demo MQTT and WAMP clients interoperating via Crossbar.io
* new: WAMP message attributes for message resumption
* new: improvements to experimental WAMP components API
* fix: Python 3.4.4+ when using asyncio
0.17.0
------
`Published 2016-11-30 <https://pypi.python.org/pypi/autobahn/0.17.0>`__
* new: WAMP PubSub event retention
* new: WAMP PubSub last will / testament
* new: WAMP PubSub acknowledged delivery
* fix: WAMP Session lifecycle - properly handle asynchronous `ApplicationSession.onConnect` for asyncio
0.16.1
------
`Published 2016-11-07 <https://pypi.python.org/pypi/autobahn/0.16.1>`__
* fix: inconsistency between `PublishOptions` and `Publish` message
* new: improve logging with dropped connections (eg due to timeouts)
* fix: various smaller asyncio fixes
* new: rewrite all examples for new Python 3.5 async/await syntax
* fix: copyrights transferred from Tavendo GmbH to Crossbar.io Technologies GmbH
0.16.0
------
`Published 2016-08-14 <https://pypi.python.org/pypi/autobahn/0.16.0>`__
* new: new `autobahn.wamp.component` API in experimental stage
* new: Ed25519 OpenSSH and OpenBSD signify key support
* fix: allow Py2 and async user code in `onConnect` callback of asyncio
0.15.0
------
`Published 2016-07-19 <https://pypi.python.org/pypi/autobahn/0.15.0>`__
* new: WAMP AP option: register with maximum concurrency
* new: automatic reconnect for WAMP clients ApplicationRunner on Twisted
* new: RawSocket support in WAMP clients using ApplicationRunner on Twisted
* new: Set WebSocket production settings on WAMP clients using ApplicationRunner on Twisted
* fix: `#715 <https://github.com/crossbario/autobahn-python/issues/715>`_ Py2/Py3 issue with WebSocket traffic logging
* new: allow WAMP factories to take classes OR instances of ApplicationSession
* fix: make WebSocketResource working on Twisted 16.3
* fix: remove some minified AutobahnJS from examples (makes distro packagers happy)
* new: WAMP-RawSocket transport for asyncio
* fix: `#691 <https://github.com/crossbario/autobahn-python/issues/691>`_ (**security**) If the `allowedOrigins` websocket option was set, the resulting matching was insufficient and would allow more origins than intended
0.14.1
------
`Published 2016-05-26 <https://pypi.python.org/pypi/autobahn/0.14.1>`__
* fix: unpinned Twisted version again
* fix: remove X-Powered-By header
* fix: removed decrecated args to ApplicationRunner
0.14.0
------
`Published 2016-05-01 <https://pypi.python.org/pypi/autobahn/0.14.0>`__
* new: use of batched/chunked timers to massively reduce CPU load with WebSocket auto-ping/pong
* new: support new UBJSON WAMP serialization format
* new: publish universal wheels
* fix: replaced `msgpack-python` with `u-msgpack-python`
* fix: some glitches with `eligible / exlude` when used with `authid / authrole`
* fix: some logging glitches
* fix: pin Twisted at 16.1.1 (for now)
0.13.1
------
`Published 2016-04-09 <https://pypi.python.org/pypi/autobahn/0.13.1>`__
* moved helper funs for WebSocket URL handling to ``autobahn.websocket.util``
* fix: marshal WAMP options only when needed
* fix: various smallish examples fixes
0.13.0
------
`Published 2016-03-15 <https://pypi.python.org/pypi/autobahn/0.13.0>`__
* fix: better traceback logging (`#613 <https://github.com/crossbario/autobahn-python/pull/613>`_)
* fix: unicode handling in debug messages (`#606 <https://github.com/crossbario/autobahn-python/pull/606>`_)
* fix: return Deferred from ``run()`` (`#603 <https://github.com/crossbario/autobahn-python/pull/603>`_).
* fix: more debug logging improvements
* fix: more `Pattern` tests, fix edge case (`#592 <https://github.com/crossbario/autobahn-python/pull/592>`_).
* fix: better logging from ``asyncio`` ApplicationRunner
* new: ``disclose`` becomes a strict router-side feature (`#586 <https://github.com/crossbario/autobahn-python/issues/586>`_).
* new: subscriber black/whitelisting using authid/authrole
* new: asyncio websocket testee
* new: refine Observable API (`#593 <https://github.com/crossbario/autobahn-python/pull/593>`_).
0.12.1
------
`Published 2016-01-30 <https://pypi.python.org/pypi/autobahn/0.12.0>`__
* new: support CBOR serialization in WAMP
* new: support WAMP payload transparency
* new: beta version of WAMP-cryptosign authentication method
* new: alpha version of WAMP-cryptobox end-to-end encryption
* new: support user provided authextra data in WAMP authentication
* new: support WAMP channel binding
* new: WAMP authentication util functions for TOTP
* fix: support skewed time leniency for TOTP
* fix: use the new logging system in WAMP implementation
* fix: some remaining Python 3 issues
* fix: allow WAMP prefix matching register/subscribe with dot at end of URI
0.11.0
------
`Published 2015-12-09 <https://pypi.python.org/pypi/autobahn/0.11.0>`__
0.10.9
------
`Published 2015-09-15 <https://pypi.python.org/pypi/autobahn/0.10.8>`__
* fixes regression #500 introduced with commit 9f68749
0.10.8
------
`Published 2015-09-13 <https://pypi.python.org/pypi/autobahn/0.10.8>`__
* maintenance release with some issues fixed
0.10.7
------
`Published 2015-09-06 <https://pypi.python.org/pypi/autobahn/0.10.7>`__
* fixes a regression in 0.10.6
0.10.6
------
`Published 2015-09-05 <https://pypi.python.org/pypi/autobahn/0.10.6>`__
* maintenance release with nearly two dozen fixes
* improved Python 3, error logging, WAMP connection mgmt, ..
0.10.5
------
`Published 2015-08-06 <https://pypi.python.org/pypi/autobahn/0.10.5>`__
* maintenance release with lots of smaller bug fixes
0.10.4
------
`Published 2015-05-08 <https://pypi.python.org/pypi/autobahn/0.10.4>`__
* maintenance release with some smaller bug fixes
0.10.3
------
`Published 2015-04-14 <https://pypi.python.org/pypi/autobahn/0.10.3>`__
* new: using txaio package
* new: revised WAMP-over-RawSocket specification implemented
* fix: ignore unknown attributes in WAMP Options/Details
0.10.2
------
`Published 2015-03-19 <https://pypi.python.org/pypi/autobahn/0.10.2>`__
* fix: Twisted 11 lacks IPv6 address class
* new: various improvements handling errors from user code
* new: add parameter to limit max connections on WebSocket servers
* new: use new-style classes everywhere
* new: moved package content to repo root
* new: implement router revocation signaling for registrations/subscriptions
* new: a whole bunch of more unit tests / coverage
* new: provide reason/message when transport is lost
* fix: send WAMP errors upon serialization errors
0.10.1
------
`Published 2015-03-01 <https://pypi.python.org/pypi/autobahn/0.10.1>`__
* support for pattern-based subscriptions and registrations
* support for shared registrations
* fix: HEARTBEAT removed
0.10.0
------
`Published 2015-02-19 <https://pypi.python.org/pypi/autobahn/0.10.0>`__
* Change license from Apache 2.0 to MIT
* fix file line endings
* add setuptools test target
* fix Python 2.6
0.9.6
-----
`Published 2015-02-13 <https://pypi.python.org/pypi/autobahn/0.9.6>`__
* PEP8 code conformance
* PyFlakes code quality
* fix: warning for xrange on Python 3
* fix: parsing of IPv6 host headers
* add WAMP/Twisted service
* fix: handle connect error in ApplicationRunner (on Twisted)
0.9.5
-----
`Published 2015-01-11 <https://pypi.python.org/pypi/autobahn/0.9.5>`__
* do not try to fire onClose on a session that never existed in the first place (fixes #316)
* various doc fixes
* fix URI decorator component handling (PR #309)
* fix "standalone" argument to ApplicationRunner
0.9.4
-----
`Published 2014-12-15 <https://pypi.python.org/pypi/autobahn/0.9.4>`__
* refactor router code to Crossbar.io
* fix: catch error when Nagle cannot be set on stream transport (UDS)
* fix: spelling in doc strings / docs
* fix: WAMP JSON serialization of Unicode for ujson
* fix: Twisted plugins issue
0.9.3-2
-------
`Published 2014-11-15 <https://pypi.python.org/pypi/autobahn/0.9.3-2>`__
* maintenance release with some smaller bug fixes
* use ujson for WAMP when available
* reduce WAMP ID space to [0, 2**31-1]
* deactivate Twisted plugin cache recaching in `setup.py`
0.9.3
------
`Published 2014-11-10 <https://pypi.python.org/pypi/autobahn/0.9.3>`__
* feature: WebSocket origin checking
* feature: allow to disclose caller transport level info
* fix: Python 2.6 compatibility
* fix: handling of WebSocket close frame in a corner-case
0.9.2
------
`Published 2014-10-17 <https://pypi.python.org/pypi/autobahn/0.9.2>`__
* fix: permessage-deflate "client_max_window_bits" parameter handling
* fix: cancel opening handshake timeouts also for WebSocket clients
* feature: add more control parameters to Flash policy file factory
* feature: update AutobahnJS in examples
* feature: allow to set WebSocket HTTP headers via dict
* fix: ayncio imports for Python 3.4.2
* feature: added reconnecting WebSocket client example
0.9.1
------
`Published 2014-09-22 <https://pypi.python.org/pypi/autobahn/0.9.1>`__
* maintenance release with some smaller bug fixes
0.9.0
------
`Published 2014-09-02 <https://pypi.python.org/pypi/autobahn/0.9.0>`__
* all WAMP v1 code removed
* migrated various WAMP examples to WAMP v2
* improved unicode/bytes handling
* lots of code quality polishment
* more unit test coverage
0.8.15
------
`Published 2014-08-23 <https://pypi.python.org/pypi/autobahn/0.8.15>`__
* docs polishing
* small fixes (unicode handling and such)
0.8.14
------
`Published 2014-08-14 <https://pypi.python.org/pypi/autobahn/0.8.14>`__
* add automatic WebSocket ping/pong (#24)
* WAMP-CRA client side (beta!)
0.8.13
--------
`Published 2014-08-05 <https://pypi.python.org/pypi/autobahn/0.8.13>`__
* fix Application class (#240)
* support WSS for Application class
* remove implicit dependency on bzip2 (#244)
0.8.12
------
`Published 2014-07-23 <https://pypi.python.org/pypi/autobahn/0.8.12>`__
* WAMP application payload validation hooks
* added Tox based testing for multiple platforms
* code quality fixes
0.8.11
------
`Published <https://pypi.python.org/pypi/autobahn/0.8.11>`__
* hooks and infrastructure for WAMP2 authorization
* new examples: Twisted Klein, Crochet, wxPython
* improved WAMP long-poll transport
* improved stats tracker
0.8.10
------
`Published <https://pypi.python.org/pypi/autobahn/0.8.10>`__
* WAMP-over-Long-poll (preliminary)
* WAMP Authentication methods CR, Ticket, TOTP (preliminary)
* WAMP App object (preliminary)
* various fixes
0.8.9
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.9>`__
* maintenance release
0.8.8
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.8>`__
* initial support for WAMP on asyncio
* new WAMP examples
* WAMP ApplicationRunner
0.8.7
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.7>`__
* maintenance release
0.8.6
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.6>`__
* started reworking docs
* allow factories to operate without WS URL
* fix behavior on second protocol violation
0.8.5
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.5>`__
* support WAMP endpoint/handler decorators
* new examples for endpoint/handler decorators
* fix excludeMe pubsub option
0.8.4
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.4>`__
* initial support for WAMP v2 authentication
* various fixes/improvements to WAMP v2 implementation
* new example: WebSocket authentication with Mozilla Persona
* polish up documentation
0.8.3
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.3>`__
* fix bug with closing router app sessions
0.8.2
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.2>`__
* compatibility with latest WAMP v2 spec ("RC-2, 2014/02/22")
* various smaller fixes
0.8.1
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.1>`__
* WAMP v2 basic router (broker + dealer) implementation
* WAMP v2 example set
* WAMP v2: decouple transports, sessions and routers
* support explicit (binary) subprotocol name for wrapping WebSocket factory
* fix dependency on MsgPack
0.8.0
-----
`Published <https://pypi.python.org/pypi/autobahn/0.8.0>`__
* new: complete WAMP v2 protocol implementation and API layer
* new: basic WAMP v2 router implementation
* existing WAMP v1 implementation renamed
0.7.4
-----
`Published <https://pypi.python.org/pypi/autobahn/0.7.4>`__
* fix WebSocket server HTML status page
* fix close reason string handling
* new "slowsquare" example
* Python 2.6 fixes
0.7.3
-----
`Published <https://pypi.python.org/pypi/autobahn/0.7.3>`__
* support asyncio on Python 2 (via "Trollius" backport)
0.7.2
-----
`Published <https://pypi.python.org/pypi/autobahn/0.7.2>`__
* really fix setup/packaging
0.7.1
-----
`Published <https://pypi.python.org/pypi/autobahn/0.7.1>`__
* setup fixes
* fixes for Python2.6
0.7.0
-----
`Published <https://pypi.python.org/pypi/autobahn/0.7.0>`__
* asyncio support
* Python 3 support
* support WebSocket (and WAMP) over Twisted stream endpoints
* support Twisted stream endpoints over WebSocket
* twistd stream endpoint forwarding plugin
* various new examples
* fix Flash policy factory
0.6.5
-----
`Published <https://pypi.python.org/pypi/autobahn/0.6.5>`__
* Twisted reactor is no longer imported on module level (but lazy)
* optimize pure Python UTF8 validator (10-20% speedup on PyPy)
* opening handshake traffic stats (per-open stats)
* add multi-core echo example
* fixes with examples of streaming mode
* fix zero payload in streaming mode
0.6.4
-----
`Published <https://pypi.python.org/pypi/autobahn/0.6.4>`__
* support latest `permessage-deflate` draft
* allow controlling memory level for `zlib` / `permessage-deflate`
* updated reference, moved docs to "Read the Docs"
* fixes #157 (a WAMP-CRA timing attack very, very unlikely to be exploitable, but anyway)
0.6.3
-----
`Published <https://pypi.python.org/pypi/autobahn/0.6.3>`__
* symmetric RPCs
* WebSocket compression: client and server, `permessage-deflate`, `permessage-bzip2` and `permessage-snappy`
* `onConnect` is allowed to return Deferreds now
* custom publication and subscription handler are allowed to return Deferreds now
* support for explicit proxies
* default protocol version now is RFC6455
* option to use salted passwords for authentication with WAMP-CRA
* automatically use `ultrajson` acceleration package for JSON processing when available
* automatically use `wsaccel` acceleration package for WebSocket masking and UTF8 validation when available
* allow setting and getting of custom HTTP headers in WebSocket opening handshake
* various new code examples
* various documentation fixes and improvements
0.5.14
------
`Published <https://pypi.python.org/pypi/autobahn/0.5.14>`__
* base version when we started to maintain a changelog
|