Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 67362a9

Browse files
committed
Merge branch 'release-v0.9.3' of github.com:matrix-org/synapse
2 parents 11374a7 + 480d720 commit 67362a9

25 files changed

+787
-481
lines changed

AUTHORS.rst

+4
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,7 @@ Brabo <brabo at riseup.net>
3838

3939
Ivan Shapovalov <intelfx100 at gmail.com>
4040
* contrib/systemd: a sample systemd unit file and a logger configuration
41+
42+
Eric Myhre <hash at exultant.us>
43+
* Fix bug where ``media_store_path`` config option was ignored by v0 content
44+
repository API.

CHANGES.rst

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
Changes in synapse v0.9.3 (2015-07-01)
2+
======================================
3+
4+
No changes from v0.9.3 Release Candidate 1.
5+
6+
Changes in synapse v0.9.3-rc1 (2015-06-23)
7+
==========================================
8+
9+
General:
10+
11+
* Fix a memory leak in the notifier. (SYN-412)
12+
* Improve performance of room initial sync. (SYN-418)
13+
* General improvements to logging.
14+
* Remove ``access_token`` query params from ``INFO`` level logging.
15+
16+
Configuration:
17+
18+
* Add support for specifying and configuring multiple listeners. (SYN-389)
19+
20+
Application services:
21+
22+
* Fix bug where synapse failed to send user queries to application services.
23+
124
Changes in synapse v0.9.2-r2 (2015-06-15)
225
=========================================
326

synapse/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
""" This is a reference implementation of a Matrix home server.
1717
"""
1818

19-
__version__ = "0.9.2-r2"
19+
__version__ = "0.9.3"

synapse/api/auth.py

+2
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,8 @@ def get_user_by_req(self, request):
370370
user_agent=user_agent
371371
)
372372

373+
request.authenticated_entity = user.to_string()
374+
373375
defer.returnValue((user, ClientInfo(device_id, token_id)))
374376
except KeyError:
375377
raise AuthError(

0 commit comments

Comments
 (0)