From 0082ad9a15b48696917b5155937997d8915379dd Mon Sep 17 00:00:00 2001 From: Andrei Date: Wed, 29 May 2019 13:19:03 -0700 Subject: [PATCH] Remove references to deprecated `trace` field This will not undergo a regualar deprecation cycle since the schedule provided by discord (see discordapp/discord-api-docs#967) is less than the amount of time it would take to fully deprecate this field. Instead we will just consider this a v1 breaking change. Clients on previous versions should continue to work regardless of Discord's planned changes for this field, although the data provided from the field may be invalid or empty. --- disco/gateway/events.py | 2 -- tests/gateway/events.py | 5 +---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/disco/gateway/events.py b/disco/gateway/events.py index 5bc2c05..ab45662 100644 --- a/disco/gateway/events.py +++ b/disco/gateway/events.py @@ -144,14 +144,12 @@ class Ready(GatewayEvent): user = Field(User) guilds = ListField(Guild) private_channels = ListField(Channel) - trace = ListField(str, alias='_trace') class Resumed(GatewayEvent): """ Sent after a resume completes. """ - trace = ListField(str, alias='_trace') @wraps_model(Guild) diff --git a/tests/gateway/events.py b/tests/gateway/events.py index 96e6fe2..5ff0d7b 100644 --- a/tests/gateway/events.py +++ b/tests/gateway/events.py @@ -4,16 +4,13 @@ from disco.gateway.events import GatewayEvent, Resumed def create_resumed_payload(): return GatewayEvent.from_dispatch(None, { 't': 'RESUMED', - 'd': { - '_trace': ['test', '1', '2', '3'], - } + 'd': {} }) def test_from_dispatch(): event = create_resumed_payload() assert isinstance(event, Resumed) - assert event.trace == ['test', '1', '2', '3'] def test_event_creation(benchmark):