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

Commit d517406

Browse files
committed
Merge branch 'release-v0.8.0' of github.com:matrix-org/synapse
2 parents abbee6b + 1df3ccf commit d517406

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+2909
-925
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,4 @@ media_store/
4141
build/
4242

4343
localhost-800*/
44+
static/client/register/register_config.js

CHANGES.rst

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1+
Changes in synapse v0.8.0 (2015-03-06)
2+
======================================
3+
4+
General:
5+
6+
* Add support for registration fallback. This is a page hosted on the server
7+
which allows a user to register for an account, regardless of what client
8+
they are using (e.g. mobile devices).
9+
10+
* Added new default push rules and made them configurable by clients:
11+
12+
* Suppress all notice messages.
13+
* Notify when invited to a new room.
14+
* Notify for messages that don't match any rule.
15+
* Notify on incoming call.
16+
17+
Federation:
18+
19+
* Added per host server side rate-limiting of incoming federation requests.
20+
* Added a ``/get_missing_events/`` API to federation to reduce number of
21+
``/events/`` requests.
22+
23+
Configuration:
24+
25+
* Added configuration option to disable registration:
26+
``disable_registration``.
27+
* Added configuration option to change soft limit of number of open file
28+
descriptors: ``soft_file_limit``.
29+
* Make ``tls_private_key_path`` optional when running with ``no_tls``.
30+
31+
Application services:
32+
33+
* Application services can now poll on the CS API ``/events`` for their events,
34+
by providing their application service ``access_token``.
35+
* Added exclusive namespace support to application services API.
36+
37+
138
Changes in synapse v0.7.1 (2015-02-19)
239
======================================
340

UPGRADE.rst

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Upgrading to v0.8.0
2+
===================
3+
4+
Servers which use captchas will need to add their public key to::
5+
6+
static/client/register/register_config.js
7+
8+
window.matrixRegistrationConfig = {
9+
recaptcha_public_key: "YOUR_PUBLIC_KEY"
10+
};
11+
12+
This is required in order to support registration fallback (typically used on
13+
mobile devices).
14+
15+
116
Upgrading to v0.7.0
217
===================
318

0 commit comments

Comments
 (0)