mirror of
https://github.com/django/daphne.git
synced 2025-07-29 00:19:45 +03:00
Releasing 1.1.2
This commit is contained in:
parent
de65a41b54
commit
ba54268c19
|
@ -1,6 +1,18 @@
|
|||
Full release notes, with more details and upgrade information, are available at:
|
||||
https://channels.readthedocs.io/en/latest/releases
|
||||
|
||||
1.1.2 (2017-04-01)
|
||||
------------------
|
||||
|
||||
* Session name hash changed to SHA-1 to satisfy FIPS-140-2. Due to this,
|
||||
please force all WebSockets to reconnect after the upgrade.
|
||||
|
||||
* `scheme` key in ASGI-HTTP messages now translates into `request.is_secure()`
|
||||
correctly.
|
||||
|
||||
* WebsocketBridge now exposes the underlying WebSocket as `.socket`
|
||||
|
||||
|
||||
1.1.1 (2017-03-19)
|
||||
------------------
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
__version__ = "1.1.1"
|
||||
__version__ = "1.1.2"
|
||||
|
||||
default_app_config = 'channels.apps.ChannelsConfig'
|
||||
DEFAULT_CHANNEL_LAYER = 'default'
|
||||
|
|
29
docs/releases/1.1.2.rst
Normal file
29
docs/releases/1.1.2.rst
Normal file
|
@ -0,0 +1,29 @@
|
|||
1.1.2 Release Notes
|
||||
===================
|
||||
|
||||
Channels 1.1.2 is a bugfix release for the 1.1 series, released on
|
||||
April 1st, 2017.
|
||||
|
||||
|
||||
Major Changes
|
||||
-------------
|
||||
|
||||
None.
|
||||
|
||||
|
||||
Minor Changes & Bugfixes
|
||||
------------------------
|
||||
|
||||
* Session name hash changed to SHA-1 to satisfy FIPS-140-2.
|
||||
|
||||
* `scheme` key in ASGI-HTTP messages now translates into `request.is_secure()`
|
||||
correctly.
|
||||
|
||||
* WebsocketBridge now exposes the underlying WebSocket as `.socket`.
|
||||
|
||||
|
||||
Backwards Incompatible Changes
|
||||
------------------------------
|
||||
|
||||
* When you upgrade all current channel sessions will be invalidated; you
|
||||
should make sure you disconnect all WebSockets during upgrade.
|
|
@ -10,3 +10,4 @@ Release Notes
|
|||
1.0.3
|
||||
1.1.0
|
||||
1.1.1
|
||||
1.1.2
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "django-channels",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"description": "",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
Loading…
Reference in New Issue
Block a user