Skip to content

Commit 332cc86

Browse files
Update changelog
1 parent b7682e0 commit 332cc86

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Ubuntu 25.04 (Plucky Puffin) will be end of life on Jan 17, 2026. Synapse will s
1010

1111
The "Updates to locked dependencies" section has been removed from the changelog due to lack of use and the maintenance burden. ([\#19254](https://github.com/element-hq/synapse/issues/19254))
1212

13+
### Famedly additions for v1.145.0_2
14+
- fix: invalidate access token cache on device deletion (FrenchGithubUser)
1315

1416
### Famedly additions for v1.145.0_1
1517
- fix: typo in changelog (FrenchGithubUser)

tests/rest/client/test_auth.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1423,7 +1423,7 @@ def test_token_invalid_after_refresh_token_issued_and_device_removed(self) -> No
14231423
# Login with device2 and request a refresh token
14241424
login_response = self.make_request(
14251425
"POST",
1426-
"/_matrix/client/r0/login",
1426+
"/_matrix/client/v3/login",
14271427
{
14281428
"type": "m.login.password",
14291429
"user": "test",
@@ -1492,7 +1492,7 @@ def test_token_invalid_after_refresh_token_issued_and_device_removed(self) -> No
14921492
access_token=device2_tok,
14931493
)
14941494
self.assertEqual(channel.code, HTTPStatus.UNAUTHORIZED, channel.result)
1495-
self.assertEqual(channel.json_body["errcode"], "M_UNKNOWN_TOKEN")
1495+
self.assertEqual(channel.json_body["errcode"], Codes.UNKNOWN_TOKEN)
14961496

14971497

14981498
def oidc_config(

0 commit comments

Comments
 (0)