Codebase list matrix-synapse / 7a2ff55
Merge branch 'debian/master' into debian/buster-backports Andrej Shadura 4 years ago
4 changed file(s) with 23 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
0 Synapse 1.9.1 (2020-01-28)
1 ==========================
2
3 Bugfixes
4 --------
5
6 - Fix bug where setting `mau_limit_reserved_threepids` config would cause Synapse to refuse to start. ([\#6793](https://github.com/matrix-org/synapse/issues/6793))
7
8
09 Synapse 1.9.0 (2020-01-23)
110 ==========================
211
0 matrix-synapse (1.9.1-1) unstable; urgency=high
1
2 * New upstream bugfix release.
3
4 -- Andrej Shadura <andrewsh@debian.org> Wed, 29 Jan 2020 14:47:02 +0100
5
06 matrix-synapse (1.9.0-1~bpo10+1) buster-backports; urgency=medium
17
28 * Rebuild for buster-backports.
3535 except ImportError:
3636 pass
3737
38 __version__ = "1.9.0"
38 __version__ = "1.9.1"
3939
4040 if bool(os.environ.get("SYNAPSE_TEST_PATCH_LOG_CONTEXTS", False)):
4141 # We import here so that we don't have to install a bunch of deps when
120120 if user_id:
121121 is_support = self.is_support_user_txn(txn, user_id)
122122 if not is_support:
123 self.upsert_monthly_active_user_txn(txn, user_id)
123 # We do this manually here to avoid hitting #6791
124 self.db.simple_upsert_txn(
125 txn,
126 table="monthly_active_users",
127 keyvalues={"user_id": user_id},
128 values={"timestamp": int(self._clock.time_msec())},
129 )
124130 else:
125131 logger.warning("mau limit reserved threepid %s not found in db" % tp)
126132