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
d2ca2408
Commit
d2ca2408
authored
10 years ago
by
Erik Johnston
Browse files
Options
Downloads
Patches
Plain Diff
Bump UPGRADES and CHANGES
parent
2e447142
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGES.rst
+9
-0
9 additions, 0 deletions
CHANGES.rst
UPGRADE.rst
+16
-0
16 additions, 0 deletions
UPGRADE.rst
scripts/upgrade_db_to_v0.6.0.py
+2
-0
2 additions, 0 deletions
scripts/upgrade_db_to_v0.6.0.py
with
27 additions
and
0 deletions
CHANGES.rst
+
9
−
0
View file @
d2ca2408
Changes in synapse 0.6.0 (2014-12-16)
=====================================
* Add new API for media upload and download that supports thumbnailing.
* Implement typing notifications.
* Fix bugs where we sent events with invalid signatures due to bugs where
we incorrectly persisted events.
* Improve performance of database queries involving retrieving events.
Changes in synapse 0.5.4a (2014-12-13)
Changes in synapse 0.5.4a (2014-12-13)
======================================
======================================
...
...
This diff is collapsed.
Click to expand it.
UPGRADE.rst
+
16
−
0
View file @
d2ca2408
Upgrading to v0.6.0
===================
This update includes a change to the database schema. To upgrade you first need
to upgrade the database by running::
python scripts/upgrade_db_to_v0.6.0.py <db> <server_name> <signing_key>
Where `<db>` is the location of the database, `<server_name>` is the
server name as specified in the synapse configuration, and `<signing_key>` is
the location of the signing key as specified in the synapse configuration.
This may take some time to complete. Failures of signatures and content hashes
can safely be ignored.
Upgrading to v0.5.1
Upgrading to v0.5.1
===================
===================
...
...
This diff is collapsed.
Click to expand it.
scripts/upgrade_db_to_v0.6.0.py
+
2
−
0
View file @
d2ca2408
...
@@ -284,6 +284,8 @@ def main(database, server_name, signing_key):
...
@@ -284,6 +284,8 @@ def main(database, server_name, signing_key):
reinsert_events
(
cursor
,
server_name
,
signing_key
)
reinsert_events
(
cursor
,
server_name
,
signing_key
)
conn
.
commit
()
conn
.
commit
()
print
"
Success!
"
if
__name__
==
"
__main__
"
:
if
__name__
==
"
__main__
"
:
parser
=
argparse
.
ArgumentParser
()
parser
=
argparse
.
ArgumentParser
()
...
...
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