You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Please correct me if I'm being very dumb but in version 4.3.0, the return type of IDatabasesClient's QueryAsync has changed which causes a breaking compilation error in my codebase.
This is unexpected to me in a minor version bump/no note in release notes.
To Reproduce
In version 4.2.0, call IDatabasesClient.QueryAsync and assign the Results field of the response to a variable of type List<Page>. Should compile fine
Update to 4.3.0
Compilation fails
Expected behavior
No breaking changes in minor version bump
Additional context
Change can be seen here by searching for Src/Notion.Client/Api/Databases/IDatabasesClient.cs edited file.
The text was updated successfully, but these errors were encountered:
Describe the bug
Please correct me if I'm being very dumb but in version 4.3.0, the return type of
IDatabasesClient
'sQueryAsync
has changed which causes a breaking compilation error in my codebase.This is unexpected to me in a minor version bump/no note in release notes.
To Reproduce
IDatabasesClient.QueryAsync
and assign theResults
field of the response to a variable of typeList<Page>
. Should compile fineExpected behavior
No breaking changes in minor version bump
Additional context
Change can be seen here by searching for
Src/Notion.Client/Api/Databases/IDatabasesClient.cs
edited file.The text was updated successfully, but these errors were encountered: