Skip to content

Commit

Permalink
Releasing 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewgodwin committed Aug 17, 2018
1 parent 6c7b34a commit 950d795
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 1 deletion.
13 changes: 13 additions & 0 deletions CHANGELOG.txt
@@ -1,6 +1,19 @@
Full release notes, with more details and upgrade information, are available at:
https://channels.readthedocs.io/en/latest/releases

2.1.3 (2018-08-16)
------------------

* An ALLOWED_ORIGINS value of "*" will now also allow requests without a Host
header at all (especially important for tests)

* The request.path value is now correct in cases when a server has SCRIPT_NAME
set

* Errors that happen inside channel listeners inside a runworker or Worker
class are now raised rather than suppressed


2.1.2 (2018-06-13)
------------------

Expand Down
2 changes: 1 addition & 1 deletion channels/__init__.py
@@ -1,4 +1,4 @@
__version__ = "2.1.2"
__version__ = "2.1.3"

default_app_config = "channels.apps.ChannelsConfig"
DEFAULT_CHANNEL_LAYER = "default"
23 changes: 23 additions & 0 deletions docs/releases/2.1.3.rst
@@ -0,0 +1,23 @@
2.1.3 Release Notes
===================

Channels 2.1.3 is another bugfix release in the 2.1 series.


Bugfixes & Small Changes
------------------------

* An ALLOWED_ORIGINS value of "*" will now also allow requests without a Host
header at all (especially important for tests)

* The request.path value is now correct in cases when a server has SCRIPT_NAME
set.

* Errors that happen inside channel listeners inside a runworker or Worker
class are now raised rather than suppressed.


Backwards Incompatible Changes
------------------------------

None.
1 change: 1 addition & 0 deletions docs/releases/index.rst
Expand Up @@ -21,3 +21,4 @@ Release Notes
2.1.0
2.1.1
2.1.2
2.1.3

0 comments on commit 950d795

Please sign in to comment.