This commit is contained in:
parent
b3c01abd37
commit
2db82eddfd
|
@ -1,11 +1,18 @@
|
||||||
|
[0.2.18]
|
||||||
|
- services: auth updated
|
||||||
|
- services: core updated
|
||||||
|
|
||||||
|
|
||||||
[0.2.17]
|
[0.2.17]
|
||||||
- httpx -> aiohttp
|
- httpx -> aiohttp
|
||||||
- sentry integrations
|
- sentry integrations
|
||||||
|
|
||||||
|
|
||||||
[0.2.16]
|
[0.2.16]
|
||||||
- resolvers: snake case queries and mutations
|
- resolvers: snake case queries and mutations
|
||||||
- resolvers: fix auth context usage with string user_id
|
- resolvers: fix auth context usage with string user_id
|
||||||
|
|
||||||
|
|
||||||
[0.2.15]
|
[0.2.15]
|
||||||
- chore: schema service removed
|
- chore: schema service removed
|
||||||
|
|
||||||
|
@ -23,34 +30,41 @@
|
||||||
- uses official redis[hiredis] async
|
- uses official redis[hiredis] async
|
||||||
- datetime scalar removed
|
- datetime scalar removed
|
||||||
|
|
||||||
|
|
||||||
[0.2.12]
|
[0.2.12]
|
||||||
- sigil is back for test
|
- sigil is back for test
|
||||||
|
|
||||||
|
|
||||||
[0.2.11]
|
[0.2.11]
|
||||||
- does not need sigil with schema stitching
|
- does not need sigil with schema stitching
|
||||||
|
|
||||||
|
|
||||||
[0.2.10]
|
[0.2.10]
|
||||||
- middlwares removed
|
- middlwares removed
|
||||||
- orm removed
|
- orm removed
|
||||||
- added core api connector
|
- added core api connector
|
||||||
- nginx.conf.sigil fixed
|
- nginx.conf.sigil fixed
|
||||||
|
|
||||||
|
|
||||||
[0.2.9]
|
[0.2.9]
|
||||||
- starlette is back
|
- starlette is back
|
||||||
- auth middleware
|
- auth middleware
|
||||||
- create first chat with member by id = 1 if empty smembers chats_by_author/author_id
|
- create first chat with member by id = 1 if empty smembers chats_by_author/author_id
|
||||||
|
|
||||||
|
|
||||||
[0.2.8]
|
[0.2.8]
|
||||||
- sse removed to presence service
|
- sse removed to presence service
|
||||||
- bugfixes
|
- bugfixes
|
||||||
- pydantic removed as not used
|
- pydantic removed as not used
|
||||||
|
|
||||||
|
|
||||||
[0.2.7]
|
[0.2.7]
|
||||||
- search messages fix
|
- search messages fix
|
||||||
- context with author_id fix
|
- context with author_id fix
|
||||||
- redis pubsub new_message event announce
|
- redis pubsub new_message event announce
|
||||||
- sse new_message events broadcast
|
- sse new_message events broadcast
|
||||||
|
|
||||||
|
|
||||||
[0.2.6]
|
[0.2.6]
|
||||||
- authors / members / users terms revision
|
- authors / members / users terms revision
|
||||||
- auth service connection
|
- auth service connection
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "discoursio-inbox"
|
name = "discoursio-inbox"
|
||||||
version = "0.2.15"
|
version = "0.2.18"
|
||||||
description = "Inbox server for discours.io"
|
description = "Inbox server for discours.io"
|
||||||
authors = ["Tony Rewin <anton.rewin@gmail.com>"]
|
authors = ["Tony Rewin <anton.rewin@gmail.com>"]
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@ async def get_my_followed() -> List[ChatMember]:
|
||||||
async def get_author(user: str = ""):
|
async def get_author(user: str = ""):
|
||||||
query_name = "get_author_id(user: $user)"
|
query_name = "get_author_id(user: $user)"
|
||||||
query_type = "query"
|
query_type = "query"
|
||||||
operation = "GetAuthor($user: String!)"
|
operation = "GetAuthorId($user: String!)"
|
||||||
query_fields = "id slug pic name"
|
query_fields = "id slug pic name"
|
||||||
|
|
||||||
gql = {
|
gql = {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user