Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timo Ley
synapse
Commits
e166e29e
Commit
e166e29e
authored
10 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Bump version and changelog
parent
235f686d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGES.rst
+22
-0
22 additions, 0 deletions
CHANGES.rst
UPGRADE.rst
+26
-0
26 additions, 0 deletions
UPGRADE.rst
VERSION
+1
-1
1 addition, 1 deletion
VERSION
synapse/__init__.py
+1
-1
1 addition, 1 deletion
synapse/__init__.py
with
50 additions
and
2 deletions
CHANGES.rst
+
22
−
0
View file @
e166e29e
Changes in synapse 0.2.0 (2014-09-02)
=====================================
This update changes many configuration options, updates the
database schema and mandates SSL for server-server connections.
Homeserver:
* Require SSL for server-server connections.
* Add SSL listener for client-server connections.
* Add ability to use config files.
* Add support for kicking/banning and power levels.
* Allow setting of room names and topics on creation.
* Change presence to include last seen time of the user.
* Change url path prefix to /_matrix/...
* Bug fixes to presence.
Webclient:
* Reskin the CSS for registration and login.
* Various improvements to rooms CSS.
* Support changes in client-server API.
* Bug fixes to VOIP UI.
* Various bug fixes to handling of changes to room member list.
Changes in synapse 0.1.2 (2014-08-29)
=====================================
...
...
This diff is collapsed.
Click to expand it.
UPGRADE.rst
+
26
−
0
View file @
e166e29e
Upgrading to v0.2.0
===================
To upgrade the database schema, run::
./database-prepare-for-0.2.0.sh "<database>.db"
The home server npw requires setting up of SSL config before it can run. To
automatically generate some default config that can be edited use::
$ python synapse/app/homeserver.py \
--server-name machine.my.domain.name \
--bind-port 8448 \
--config-path homeserver.config \
--generate-config
After editing the config, you can run the home server using::
$ python synapse/app/homeserver.py --config-path homeserver.config
See the README.rst for more information.
Also note that many config options have been renamed.
Upgrading to v0.0.1
===================
...
...
This diff is collapsed.
Click to expand it.
VERSION
+
1
−
1
View file @
e166e29e
0.
1.2
0.
2.0
This diff is collapsed.
Click to expand it.
synapse/__init__.py
+
1
−
1
View file @
e166e29e
...
...
@@ -16,4 +16,4 @@
"""
This is a reference implementation of a synapse home server.
"""
__version__
=
"
0.
1.2
"
__version__
=
"
0.
2.0
"
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment