J. Ryan Stinnett
0808c0edf1
Clean Yarn cache during release
...
Always run `yarn cache clean` during the `dist` step to workaround a Yarn bug
with Git commit package dependencies.
2019-09-26 11:18:20 +01:00
J. Ryan Stinnett
8d667f9367
Remove id_server from creds for interactive auth
...
For HSes that do not require an IS, we can remove `id_server` from the auth
params.
Fixes https://github.com/vector-im/riot-web/issues/10959
2019-09-25 14:59:32 +01:00
J. Ryan Stinnett
8b3b181a48
Merge pull request #1041 from matrix-org/jryans/rm-id-params-request-token
...
Remove IS details from requestToken to HS
2019-09-23 14:43:03 +01:00
J. Ryan Stinnett
c952768542
Remove IS details from requestToken to HS
...
This removes the IS details (server and access token) from `requestToken` calls
to the HS, as long as the HS supports the new separate add and bind mode. In
this mode, all of the 3PID validation is handled by the HS, so the IS details
are not used.
Fixes https://github.com/vector-im/riot-web/issues/10933
2019-09-23 13:36:07 +01:00
J. Ryan Stinnett
1a368aa996
Merge pull request #1040 from matrix-org/jryans/msisdn-submit-url
...
Add support for sending MSISDN tokens to alternate URLs
2019-09-23 13:21:28 +01:00
J. Ryan Stinnett
61449458cf
Add support for sending MSISDN tokens to alternate URLs
...
Part of https://github.com/vector-im/riot-web/issues/10923
2019-09-23 12:20:28 +01:00
J. Ryan Stinnett
4eb547e535
Merge pull request #1038 from matrix-org/jryans/msc2290
...
Add separate 3PID add and bind APIs
2019-09-20 14:37:00 +01:00
J. Ryan Stinnett
b54acffaef
Tweak unbind 3PID params
2019-09-19 17:28:50 +01:00
J. Ryan Stinnett
65a1833e1f
Add 3PID unbind API
2019-09-19 15:28:58 +01:00
J. Ryan Stinnett
1ce4f25811
Use unstable prefix for add and bind
2019-09-19 15:28:35 +01:00
J. Ryan Stinnett
3127105516
Merge pull request #1037 from matrix-org/dependabot/npm_and_yarn/eslint-utils-1.4.2
...
Bump eslint-utils from 1.4.0 to 1.4.2
2019-09-18 12:52:28 +01:00
dependabot[bot]
d59ea4be78
Bump eslint-utils from 1.4.0 to 1.4.2
...
Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils ) from 1.4.0 to 1.4.2.
- [Release notes](https://github.com/mysticatea/eslint-utils/releases )
- [Commits](https://github.com/mysticatea/eslint-utils/compare/v1.4.0...v1.4.2 )
Signed-off-by: dependabot[bot] <support@github.com >
2019-09-18 11:48:29 +00:00
J. Ryan Stinnett
f256f04440
Add MSISDN validation API on the IS
...
This API has existed for quite a while, but historically we've instead proxied
this request via the homeserver. As part of MSC2290 work, we are changing
approaches such that we will request tokens directly from the IS when binding
for discovery.
Part of https://github.com/vector-im/riot-web/issues/10839
2019-09-18 11:47:37 +01:00
J. Ryan Stinnett
b444aaa67e
Add separate add and bind HS APIs
...
Part of https://github.com/vector-im/riot-web/issues/10839
2019-09-18 11:16:23 +01:00
J. Ryan Stinnett
745185e689
Fix function doc syntax
2019-09-18 10:38:52 +01:00
J. Ryan Stinnett
2bfa891f0a
Add function to check for separate 3PID add and bind
...
This adds a way to test for MSC2290 support on the homeserver with separate add
and bind functions. It checks the unstable feature flag as well as the upcoming
r0.6.0 spec version.
Part of https://github.com/vector-im/riot-web/issues/10839
2019-09-18 10:36:41 +01:00
Travis Ralston
147167bed3
Merge pull request #1036 from matrix-org/travis/wrap-ff
...
Handle WebRTC security errors as non-fatal
2019-09-17 13:52:19 -06:00
Travis Ralston
565e18e8a3
Handle WebRTC security errors as non-fatal
...
Fixes https://github.com/vector-im/riot-web/issues/10898
In some restricted modes of Firefox, the WebRTC classes aren't super available: accessing them can cause SecurityErrors to be raised. In these conditions, we should just disable WebRTC support instead of falling apart.
2019-09-17 13:49:50 -06:00
Travis Ralston
55b4595bbf
Merge pull request #1035 from matrix-org/travis/r0.6
...
Check for r0.6.0 support in addition to unstable feature flags
2019-09-16 14:43:00 -06:00
Travis Ralston
eeb2c463dc
Check for r0.6.0 support in addition to unstable feature flags
...
To avoid the same problem that happened with lazy-loading (see https://github.com/matrix-org/synapse/issues/5528 ).
Note that as of writing r0.6.0 is not yet released, however it is the next scheduled release of the client-server API.
2019-09-16 14:30:18 -06:00
RiotRobot
d9bb0e9a52
Merge branch 'master' into develop
2019-09-16 17:43:01 +01:00
RiotRobot
7d07ab7c7e
v2.3.2
v2.3.2
2019-09-16 17:40:19 +01:00
RiotRobot
f8ff3aac58
Prepare changelog for v2.3.2
2019-09-16 17:40:19 +01:00
David Baker
299a7728d1
Merge pull request #1034 from matrix-org/travis/t2
...
[Release] Fix addPendingEvent with pending event order == chronological
2019-09-16 17:02:32 +01:00
David Baker
39dc6a1742
Fix addPendingEvent with pending event order == chronological
...
When the pending event order setting was set to 'chronological'
(the default) `addPendingEvent` would NPE because Room no longer
has a `this._filter` property. It should get the filter from the
event timeline set instead, as it does in the previous line when
checking or the presence of a filter.
We should strongly consider changing the default pending event order
to 'detached' and probably removing 'chronological' or comitting to
support it properly: it's not really tested and is prone to breakage
like this.
Applies flumpt's fix from https://github.com/matrix-org/matrix-js-sdk/issues/599
Fixes https://github.com/matrix-org/matrix-js-sdk/issues/599
2019-09-16 09:36:14 -06:00
RiotRobot
f21c5aa7f2
v2.3.2-rc.1
v2.3.2-rc.1
2019-09-13 16:13:27 +01:00
RiotRobot
e9bc3f26a5
Prepare changelog for v2.3.2-rc.1
2019-09-13 16:13:27 +01:00
David Baker
23eaddd6ea
Merge pull request #1033 from matrix-org/travis/t1
...
Synapse admin functions to release
2019-09-13 16:07:58 +01:00
Travis Ralston
8143ce8450
Update src/client.js
...
Co-Authored-By: J. Ryan Stinnett <jryans@gmail.com >
2019-09-13 09:01:16 -06:00
Travis Ralston
0a487ec43e
Add Synapse admin functions for deactivating a user
...
For https://github.com/matrix-org/matrix-react-sdk/pull/3371
2019-09-13 09:01:05 -06:00
Travis Ralston
0edb483802
Merge pull request #1032 from matrix-org/travis/t1
...
[To Release] Add matrix base API to report an event
2019-09-13 08:27:31 -06:00
Michael Telatynski
06a32ce0a1
Add matrix base API to report an event
...
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com >
2019-09-13 08:24:49 -06:00
RiotRobot
8cae00407a
Merge branch 'master' into develop
2019-09-12 12:51:29 +01:00
RiotRobot
a57ec87c67
v2.3.1
v2.3.1
2019-09-12 12:48:36 +01:00
RiotRobot
4e62491ea4
Prepare changelog for v2.3.1
2019-09-12 12:48:36 +01:00
RiotRobot
5758029c1e
v2.3.1-rc.1
v2.3.1-rc.1
2019-09-11 18:38:22 +01:00
RiotRobot
8f08710c58
Prepare changelog for v2.3.1-rc.1
2019-09-11 18:38:21 +01:00
David Baker
90f98105f0
Merge pull request #1031 from matrix-org/dbkr/update_profile_on_redact_2
...
Update room members on member event redaction
2019-09-11 18:12:46 +01:00
David Baker
90354aa330
Update room members on member event redaction
...
If a member event was redacted, we weren't updating the current
state.
2019-09-11 18:09:54 +01:00
David Baker
aaabebe7f5
Merge pull request #1030 from matrix-org/dbkr/update_profile_on_redact
...
Update room members on member event redaction
2019-09-11 18:07:49 +01:00
David Baker
80a92dcdc2
Update room members on member event redaction
...
If a member event was redacted, we weren't updating the current
state.
2019-09-11 16:07:34 +01:00
Travis Ralston
dc9081e9d4
Merge pull request #1028 from matrix-org/travis/hidden_rr
...
Support hidden read receipts
2019-09-10 10:55:58 -06:00
Travis Ralston
3c299637b6
Merge pull request #1029 from matrix-org/travis/lowercase-lookups
...
Do 3pid lookups in lowercase
2019-09-09 15:19:48 -06:00
Travis Ralston
07af333943
clarify comment
2019-09-09 14:44:51 -06:00
Travis Ralston
0bbc781d0c
Do 3pid lookups in lowercase
...
Fixes https://github.com/vector-im/riot-web/issues/10754
2019-09-07 14:04:30 -06:00
Travis Ralston
79bf64f079
Appease the linter
2019-09-05 20:40:16 -06:00
Travis Ralston
ed67d39456
Support hidden read receipts
2019-09-05 19:38:49 -06:00
Travis Ralston
2f8cc75432
Merge pull request #1027 from matrix-org/travis/synapse_admin
...
Add Synapse admin functions for deactivating a user
2019-09-02 11:08:39 -06:00
Travis Ralston
03cccef805
Update src/client.js
...
Co-Authored-By: J. Ryan Stinnett <jryans@gmail.com >
2019-09-02 11:06:54 -06:00
Travis Ralston
6d5a0c2718
Add Synapse admin functions for deactivating a user
...
For https://github.com/matrix-org/matrix-react-sdk/pull/3371
2019-09-01 18:05:12 -06:00